Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CapabilityReference ¶
type CapabilityReference struct {
// The ARN of the Capability resource.
CapabilityArn *string `field:"required" json:"capabilityArn" yaml:"capabilityArn"`
// The CapabilityId of the Capability resource.
CapabilityId *string `field:"required" json:"capabilityId" yaml:"capabilityId"`
}
A reference to a Capability 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"
capabilityReference := &CapabilityReference{
CapabilityArn: jsii.String("capabilityArn"),
CapabilityId: jsii.String("capabilityId"),
}
type ICapabilityRef ¶
type ICapabilityRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Capability resource.
// Experimental.
CapabilityRef() *CapabilityReference
}
Indicates that this resource can be referenced as a Capability. Experimental.
type IPartnershipRef ¶
type IPartnershipRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Partnership resource.
// Experimental.
PartnershipRef() *PartnershipReference
}
Indicates that this resource can be referenced as a Partnership. 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 ITransformerRef ¶
type ITransformerRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Transformer resource.
// Experimental.
TransformerRef() *TransformerReference
}
Indicates that this resource can be referenced as a Transformer. Experimental.
type PartnershipReference ¶
type PartnershipReference struct {
// The ARN of the Partnership resource.
PartnershipArn *string `field:"required" json:"partnershipArn" yaml:"partnershipArn"`
// The PartnershipId of the Partnership resource.
PartnershipId *string `field:"required" json:"partnershipId" yaml:"partnershipId"`
}
A reference to a Partnership 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"
partnershipReference := &PartnershipReference{
PartnershipArn: jsii.String("partnershipArn"),
PartnershipId: jsii.String("partnershipId"),
}
type ProfileReference ¶
type ProfileReference struct {
// The ARN of the Profile resource.
ProfileArn *string `field:"required" json:"profileArn" yaml:"profileArn"`
// The ProfileId 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 TransformerReference ¶
type TransformerReference struct {
// The ARN of the Transformer resource.
TransformerArn *string `field:"required" json:"transformerArn" yaml:"transformerArn"`
// The TransformerId of the Transformer resource.
TransformerId *string `field:"required" json:"transformerId" yaml:"transformerId"`
}
A reference to a Transformer 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"
transformerReference := &TransformerReference{
TransformerArn: jsii.String("transformerArn"),
TransformerId: jsii.String("transformerId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.