Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IProfileAssociationRef ¶
type IProfileAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ProfileAssociation resource.
// Experimental.
ProfileAssociationRef() *ProfileAssociationReference
}
Indicates that this resource can be referenced as a ProfileAssociation. Experimental.
type IProfileRef ¶
type IProfileRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Profile resource.
// Experimental.
ProfileRef() *ProfileReference
}
Indicates that this resource can be referenced as a Profile. Experimental.
type IProfileResourceAssociationRef ¶
type IProfileResourceAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ProfileResourceAssociation resource.
// Experimental.
ProfileResourceAssociationRef() *ProfileResourceAssociationReference
}
Indicates that this resource can be referenced as a ProfileResourceAssociation. Experimental.
type ProfileAssociationReference ¶
type ProfileAssociationReference struct {
// The Id of the ProfileAssociation resource.
ProfileAssociationId *string `field:"required" json:"profileAssociationId" yaml:"profileAssociationId"`
}
A reference to a ProfileAssociation 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"
profileAssociationReference := &ProfileAssociationReference{
ProfileAssociationId: jsii.String("profileAssociationId"),
}
type ProfileReference ¶
type ProfileReference struct {
// The ARN of the Profile resource.
ProfileArn *string `field:"required" json:"profileArn" yaml:"profileArn"`
// The Id of the Profile resource.
ProfileId *string `field:"required" json:"profileId" yaml:"profileId"`
}
A reference to a Profile 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"
profileReference := &ProfileReference{
ProfileArn: jsii.String("profileArn"),
ProfileId: jsii.String("profileId"),
}
type ProfileResourceAssociationReference ¶
type ProfileResourceAssociationReference struct {
// The Id of the ProfileResourceAssociation resource.
ProfileResourceAssociationId *string `field:"required" json:"profileResourceAssociationId" yaml:"profileResourceAssociationId"`
}
A reference to a ProfileResourceAssociation 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"
profileResourceAssociationReference := &ProfileResourceAssociationReference{
ProfileResourceAssociationId: jsii.String("profileResourceAssociationId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.