Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CellReference ¶
type CellReference struct {
// The ARN of the Cell resource.
CellArn *string `field:"required" json:"cellArn" yaml:"cellArn"`
// The CellName of the Cell resource.
CellName *string `field:"required" json:"cellName" yaml:"cellName"`
}
A reference to a Cell 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"
cellReference := &CellReference{
CellArn: jsii.String("cellArn"),
CellName: jsii.String("cellName"),
}
type ICellRef ¶
type ICellRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Cell resource.
// Experimental.
CellRef() *CellReference
}
Indicates that this resource can be referenced as a Cell. Experimental.
type IReadinessCheckRef ¶
type IReadinessCheckRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ReadinessCheck resource.
// Experimental.
ReadinessCheckRef() *ReadinessCheckReference
}
Indicates that this resource can be referenced as a ReadinessCheck. Experimental.
type IRecoveryGroupRef ¶
type IRecoveryGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a RecoveryGroup resource.
// Experimental.
RecoveryGroupRef() *RecoveryGroupReference
}
Indicates that this resource can be referenced as a RecoveryGroup. Experimental.
type IResourceSetRef ¶
type IResourceSetRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ResourceSet resource.
// Experimental.
ResourceSetRef() *ResourceSetReference
}
Indicates that this resource can be referenced as a ResourceSet. Experimental.
type ReadinessCheckReference ¶
type ReadinessCheckReference struct {
// The ARN of the ReadinessCheck resource.
ReadinessCheckArn *string `field:"required" json:"readinessCheckArn" yaml:"readinessCheckArn"`
// The ReadinessCheckName of the ReadinessCheck resource.
ReadinessCheckName *string `field:"required" json:"readinessCheckName" yaml:"readinessCheckName"`
}
A reference to a ReadinessCheck 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"
readinessCheckReference := &ReadinessCheckReference{
ReadinessCheckArn: jsii.String("readinessCheckArn"),
ReadinessCheckName: jsii.String("readinessCheckName"),
}
type RecoveryGroupReference ¶
type RecoveryGroupReference struct {
// The ARN of the RecoveryGroup resource.
RecoveryGroupArn *string `field:"required" json:"recoveryGroupArn" yaml:"recoveryGroupArn"`
// The RecoveryGroupName of the RecoveryGroup resource.
RecoveryGroupName *string `field:"required" json:"recoveryGroupName" yaml:"recoveryGroupName"`
}
A reference to a RecoveryGroup 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"
recoveryGroupReference := &RecoveryGroupReference{
RecoveryGroupArn: jsii.String("recoveryGroupArn"),
RecoveryGroupName: jsii.String("recoveryGroupName"),
}
type ResourceSetReference ¶
type ResourceSetReference struct {
// The ARN of the ResourceSet resource.
ResourceSetArn *string `field:"required" json:"resourceSetArn" yaml:"resourceSetArn"`
// The ResourceSetName of the ResourceSet resource.
ResourceSetName *string `field:"required" json:"resourceSetName" yaml:"resourceSetName"`
}
A reference to a ResourceSet 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"
resourceSetReference := &ResourceSetReference{
ResourceSetArn: jsii.String("resourceSetArn"),
ResourceSetName: jsii.String("resourceSetName"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.