Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GroupMembershipReference ¶
type GroupMembershipReference struct {
// The IdentityStoreId of the GroupMembership resource.
IdentityStoreId *string `field:"required" json:"identityStoreId" yaml:"identityStoreId"`
// The MembershipId of the GroupMembership resource.
MembershipId *string `field:"required" json:"membershipId" yaml:"membershipId"`
}
A reference to a GroupMembership 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"
groupMembershipReference := &GroupMembershipReference{
IdentityStoreId: jsii.String("identityStoreId"),
MembershipId: jsii.String("membershipId"),
}
type GroupReference ¶
type GroupReference struct {
// The GroupId of the Group resource.
GroupId *string `field:"required" json:"groupId" yaml:"groupId"`
// The IdentityStoreId of the Group resource.
IdentityStoreId *string `field:"required" json:"identityStoreId" yaml:"identityStoreId"`
}
A reference to a Group 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"
groupReference := &GroupReference{
GroupId: jsii.String("groupId"),
IdentityStoreId: jsii.String("identityStoreId"),
}
type IGroupMembershipRef ¶
type IGroupMembershipRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a GroupMembership resource.
// Experimental.
GroupMembershipRef() *GroupMembershipReference
}
Indicates that this resource can be referenced as a GroupMembership. Experimental.
type IGroupRef ¶
type IGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Group resource.
// Experimental.
GroupRef() *GroupReference
}
Indicates that this resource can be referenced as a Group. Experimental.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.