Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ContactChannelReference ¶
type ContactChannelReference struct {
// The Arn of the ContactChannel resource.
ContactChannelArn *string `field:"required" json:"contactChannelArn" yaml:"contactChannelArn"`
}
A reference to a ContactChannel 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"
contactChannelReference := &ContactChannelReference{
ContactChannelArn: jsii.String("contactChannelArn"),
}
type ContactReference ¶
type ContactReference struct {
// The Arn of the Contact resource.
ContactArn *string `field:"required" json:"contactArn" yaml:"contactArn"`
}
A reference to a Contact 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"
contactReference := &ContactReference{
ContactArn: jsii.String("contactArn"),
}
type IContactChannelRef ¶
type IContactChannelRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ContactChannel resource.
// Experimental.
ContactChannelRef() *ContactChannelReference
}
Indicates that this resource can be referenced as a ContactChannel. Experimental.
type IContactRef ¶
type IContactRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Contact resource.
// Experimental.
ContactRef() *ContactReference
}
Indicates that this resource can be referenced as a Contact. Experimental.
type IPlanRef ¶
type IPlanRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Plan resource.
// Experimental.
PlanRef() *PlanReference
}
Indicates that this resource can be referenced as a Plan. Experimental.
type IRotationRef ¶
type IRotationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Rotation resource.
// Experimental.
RotationRef() *RotationReference
}
Indicates that this resource can be referenced as a Rotation. Experimental.
type PlanReference ¶
type PlanReference struct {
// The Arn of the Plan resource.
PlanArn *string `field:"required" json:"planArn" yaml:"planArn"`
}
A reference to a Plan 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"
planReference := &PlanReference{
PlanArn: jsii.String("planArn"),
}
type RotationReference ¶
type RotationReference struct {
// The Arn of the Rotation resource.
RotationArn *string `field:"required" json:"rotationArn" yaml:"rotationArn"`
}
A reference to a Rotation 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"
rotationReference := &RotationReference{
RotationArn: jsii.String("rotationArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.