Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterReference ¶
type ClusterReference struct {
// The ARN of the Cluster resource.
ClusterArn *string `field:"required" json:"clusterArn" yaml:"clusterArn"`
// The Id of the Cluster resource.
ClusterId *string `field:"required" json:"clusterId" yaml:"clusterId"`
}
A reference to a Cluster 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"
clusterReference := &ClusterReference{
ClusterArn: jsii.String("clusterArn"),
ClusterId: jsii.String("clusterId"),
}
type IClusterRef ¶
type IClusterRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Cluster resource.
// Experimental.
ClusterRef() *ClusterReference
}
Indicates that this resource can be referenced as a Cluster. Experimental.
type IParameterGroupRef ¶
type IParameterGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ParameterGroup resource.
// Experimental.
ParameterGroupRef() *ParameterGroupReference
}
Indicates that this resource can be referenced as a ParameterGroup. Experimental.
type ISubnetGroupRef ¶
type ISubnetGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a SubnetGroup resource.
// Experimental.
SubnetGroupRef() *SubnetGroupReference
}
Indicates that this resource can be referenced as a SubnetGroup. Experimental.
type ParameterGroupReference ¶
type ParameterGroupReference struct {
// The Id of the ParameterGroup resource.
ParameterGroupId *string `field:"required" json:"parameterGroupId" yaml:"parameterGroupId"`
}
A reference to a ParameterGroup 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"
parameterGroupReference := &ParameterGroupReference{
ParameterGroupId: jsii.String("parameterGroupId"),
}
type SubnetGroupReference ¶
type SubnetGroupReference struct {
// The Id of the SubnetGroup resource.
SubnetGroupId *string `field:"required" json:"subnetGroupId" yaml:"subnetGroupId"`
}
A reference to a SubnetGroup 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"
subnetGroupReference := &SubnetGroupReference{
SubnetGroupId: jsii.String("subnetGroupId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.