Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccessorReference ¶
type AccessorReference struct {
// The ARN of the Accessor resource.
AccessorArn *string `field:"required" json:"accessorArn" yaml:"accessorArn"`
// The Id of the Accessor resource.
AccessorId *string `field:"required" json:"accessorId" yaml:"accessorId"`
}
A reference to a Accessor 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"
accessorReference := &AccessorReference{
AccessorArn: jsii.String("accessorArn"),
AccessorId: jsii.String("accessorId"),
}
type IAccessorRef ¶
type IAccessorRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Accessor resource.
// Experimental.
AccessorRef() *AccessorReference
}
Indicates that this resource can be referenced as a Accessor. Experimental.
type IMemberRef ¶
type IMemberRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Member resource.
// Experimental.
MemberRef() *MemberReference
}
Indicates that this resource can be referenced as a Member. Experimental.
type INodeRef ¶
type INodeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Node resource.
// Experimental.
NodeRef() *NodeReference
}
Indicates that this resource can be referenced as a Node. Experimental.
type MemberReference ¶
type MemberReference struct {
// The MemberId of the Member resource.
MemberId *string `field:"required" json:"memberId" yaml:"memberId"`
}
A reference to a Member 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"
memberReference := &MemberReference{
MemberId: jsii.String("memberId"),
}
type NodeReference ¶
type NodeReference struct {
// The ARN of the Node resource.
NodeArn *string `field:"required" json:"nodeArn" yaml:"nodeArn"`
// The NodeId of the Node resource.
NodeId *string `field:"required" json:"nodeId" yaml:"nodeId"`
}
A reference to a Node 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"
nodeReference := &NodeReference{
NodeArn: jsii.String("nodeArn"),
NodeId: jsii.String("nodeId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.