Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterReference ¶
type ClusterReference struct {
// The Arn of the Cluster resource.
ClusterArn *string `field:"required" json:"clusterArn" yaml:"clusterArn"`
}
A reference to a Cluster 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"
clusterReference := &ClusterReference{
ClusterArn: jsii.String("clusterArn"),
}
type ComputeNodeGroupReference ¶
type ComputeNodeGroupReference struct {
// The Arn of the ComputeNodeGroup resource.
ComputeNodeGroupArn *string `field:"required" json:"computeNodeGroupArn" yaml:"computeNodeGroupArn"`
}
A reference to a ComputeNodeGroup 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"
computeNodeGroupReference := &ComputeNodeGroupReference{
ComputeNodeGroupArn: jsii.String("computeNodeGroupArn"),
}
type IClusterRef ¶
type IClusterRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Cluster resource.
// Experimental.
ClusterRef() *ClusterReference
}
Indicates that this resource can be referenced as a Cluster. Experimental.
type IComputeNodeGroupRef ¶
type IComputeNodeGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ComputeNodeGroup resource.
// Experimental.
ComputeNodeGroupRef() *ComputeNodeGroupReference
}
Indicates that this resource can be referenced as a ComputeNodeGroup. Experimental.
type IQueueRef ¶
type IQueueRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Queue resource.
// Experimental.
QueueRef() *QueueReference
}
Indicates that this resource can be referenced as a Queue. Experimental.
type QueueReference ¶
type QueueReference struct {
// The Arn of the Queue resource.
QueueArn *string `field:"required" json:"queueArn" yaml:"queueArn"`
}
A reference to a Queue 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"
queueReference := &QueueReference{
QueueArn: jsii.String("queueArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.