Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GraphReference ¶
type GraphReference struct {
// The Arn of the Graph resource.
GraphArn *string `field:"required" json:"graphArn" yaml:"graphArn"`
}
A reference to a Graph 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"
graphReference := &GraphReference{
GraphArn: jsii.String("graphArn"),
}
type IGraphRef ¶
type IGraphRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Graph resource.
// Experimental.
GraphRef() *GraphReference
}
Indicates that this resource can be referenced as a Graph. Experimental.
type IMemberInvitationRef ¶
type IMemberInvitationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a MemberInvitation resource.
// Experimental.
MemberInvitationRef() *MemberInvitationReference
}
Indicates that this resource can be referenced as a MemberInvitation. Experimental.
type IOrganizationAdminRef ¶
type IOrganizationAdminRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a OrganizationAdmin resource.
// Experimental.
OrganizationAdminRef() *OrganizationAdminReference
}
Indicates that this resource can be referenced as a OrganizationAdmin. Experimental.
type MemberInvitationReference ¶
type MemberInvitationReference struct {
// The GraphArn of the MemberInvitation resource.
GraphArn *string `field:"required" json:"graphArn" yaml:"graphArn"`
// The MemberId of the MemberInvitation resource.
MemberId *string `field:"required" json:"memberId" yaml:"memberId"`
}
A reference to a MemberInvitation 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"
memberInvitationReference := &MemberInvitationReference{
GraphArn: jsii.String("graphArn"),
MemberId: jsii.String("memberId"),
}
type OrganizationAdminReference ¶
type OrganizationAdminReference struct {
// The AccountId of the OrganizationAdmin resource.
AccountId *string `field:"required" json:"accountId" yaml:"accountId"`
}
A reference to a OrganizationAdmin 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"
organizationAdminReference := &OrganizationAdminReference{
AccountId: jsii.String("accountId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.