Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ActivityReference ¶
type ActivityReference struct {
// The Arn of the Activity resource.
ActivityArn *string `field:"required" json:"activityArn" yaml:"activityArn"`
}
A reference to a Activity resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
activityReference := &ActivityReference{
ActivityArn: jsii.String("activityArn"),
}
type IActivityRef ¶
type IActivityRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Activity resource.
// Experimental.
ActivityRef() *ActivityReference
}
Indicates that this resource can be referenced as a Activity. Experimental.
type IStateMachineAliasRef ¶
type IStateMachineAliasRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a StateMachineAlias resource.
// Experimental.
StateMachineAliasRef() *StateMachineAliasReference
}
Indicates that this resource can be referenced as a StateMachineAlias. Experimental.
type IStateMachineRef ¶
type IStateMachineRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a StateMachine resource.
// Experimental.
StateMachineRef() *StateMachineReference
}
Indicates that this resource can be referenced as a StateMachine. Experimental.
type IStateMachineVersionRef ¶
type IStateMachineVersionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a StateMachineVersion resource.
// Experimental.
StateMachineVersionRef() *StateMachineVersionReference
}
Indicates that this resource can be referenced as a StateMachineVersion. Experimental.
type StateMachineAliasReference ¶
type StateMachineAliasReference struct {
// The Arn of the StateMachineAlias resource.
StateMachineAliasArn *string `field:"required" json:"stateMachineAliasArn" yaml:"stateMachineAliasArn"`
}
A reference to a StateMachineAlias resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
stateMachineAliasReference := &StateMachineAliasReference{
StateMachineAliasArn: jsii.String("stateMachineAliasArn"),
}
type StateMachineReference ¶
type StateMachineReference struct {
// The Arn of the StateMachine resource.
StateMachineArn *string `field:"required" json:"stateMachineArn" yaml:"stateMachineArn"`
}
A reference to a StateMachine resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
stateMachineReference := &StateMachineReference{
StateMachineArn: jsii.String("stateMachineArn"),
}
type StateMachineVersionReference ¶
type StateMachineVersionReference struct {
// The Arn of the StateMachineVersion resource.
StateMachineVersionArn *string `field:"required" json:"stateMachineVersionArn" yaml:"stateMachineVersionArn"`
}
A reference to a StateMachineVersion resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
stateMachineVersionReference := &StateMachineVersionReference{
StateMachineVersionArn: jsii.String("stateMachineVersionArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.