Documentation
¶
Index ¶
- type DBClusterParameterGroupReference
- type DBClusterReference
- type DBInstanceReference
- type DBSubnetGroupReference
- type EventSubscriptionReference
- type GlobalClusterReference
- type IDBClusterParameterGroupRef
- type IDBClusterRef
- type IDBInstanceRef
- type IDBSubnetGroupRef
- type IEventSubscriptionRef
- type IGlobalClusterRef
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DBClusterParameterGroupReference ¶
type DBClusterParameterGroupReference struct {
// The Id of the DBClusterParameterGroup resource.
DbClusterParameterGroupId *string `field:"required" json:"dbClusterParameterGroupId" yaml:"dbClusterParameterGroupId"`
}
A reference to a DBClusterParameterGroup 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"
dBClusterParameterGroupReference := &DBClusterParameterGroupReference{
DbClusterParameterGroupId: jsii.String("dbClusterParameterGroupId"),
}
type DBClusterReference ¶
type DBClusterReference struct {
// The Id of the DBCluster resource.
DbClusterId *string `field:"required" json:"dbClusterId" yaml:"dbClusterId"`
}
A reference to a DBCluster 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"
dBClusterReference := &DBClusterReference{
DbClusterId: jsii.String("dbClusterId"),
}
type DBInstanceReference ¶
type DBInstanceReference struct {
// The Id of the DBInstance resource.
DbInstanceId *string `field:"required" json:"dbInstanceId" yaml:"dbInstanceId"`
}
A reference to a DBInstance 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"
dBInstanceReference := &DBInstanceReference{
DbInstanceId: jsii.String("dbInstanceId"),
}
type DBSubnetGroupReference ¶
type DBSubnetGroupReference struct {
// The Id of the DBSubnetGroup resource.
DbSubnetGroupId *string `field:"required" json:"dbSubnetGroupId" yaml:"dbSubnetGroupId"`
}
A reference to a DBSubnetGroup 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"
dBSubnetGroupReference := &DBSubnetGroupReference{
DbSubnetGroupId: jsii.String("dbSubnetGroupId"),
}
type EventSubscriptionReference ¶
type EventSubscriptionReference struct {
// The Id of the EventSubscription resource.
EventSubscriptionId *string `field:"required" json:"eventSubscriptionId" yaml:"eventSubscriptionId"`
}
A reference to a EventSubscription 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"
eventSubscriptionReference := &EventSubscriptionReference{
EventSubscriptionId: jsii.String("eventSubscriptionId"),
}
type GlobalClusterReference ¶ added in v2.235.0
type GlobalClusterReference struct {
// The ARN of the GlobalCluster resource.
GlobalClusterArn *string `field:"required" json:"globalClusterArn" yaml:"globalClusterArn"`
// The GlobalClusterIdentifier of the GlobalCluster resource.
GlobalClusterIdentifier *string `field:"required" json:"globalClusterIdentifier" yaml:"globalClusterIdentifier"`
}
A reference to a GlobalCluster 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"
globalClusterReference := &GlobalClusterReference{
GlobalClusterArn: jsii.String("globalClusterArn"),
GlobalClusterIdentifier: jsii.String("globalClusterIdentifier"),
}
type IDBClusterParameterGroupRef ¶
type IDBClusterParameterGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DBClusterParameterGroup resource.
// Experimental.
DbClusterParameterGroupRef() *DBClusterParameterGroupReference
}
Indicates that this resource can be referenced as a DBClusterParameterGroup. Experimental.
type IDBClusterRef ¶
type IDBClusterRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DBCluster resource.
// Experimental.
DbClusterRef() *DBClusterReference
}
Indicates that this resource can be referenced as a DBCluster. Experimental.
type IDBInstanceRef ¶
type IDBInstanceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DBInstance resource.
// Experimental.
DbInstanceRef() *DBInstanceReference
}
Indicates that this resource can be referenced as a DBInstance. Experimental.
type IDBSubnetGroupRef ¶
type IDBSubnetGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DBSubnetGroup resource.
// Experimental.
DbSubnetGroupRef() *DBSubnetGroupReference
}
Indicates that this resource can be referenced as a DBSubnetGroup. Experimental.
type IEventSubscriptionRef ¶
type IEventSubscriptionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a EventSubscription resource.
// Experimental.
EventSubscriptionRef() *EventSubscriptionReference
}
Indicates that this resource can be referenced as a EventSubscription. Experimental.
type IGlobalClusterRef ¶ added in v2.235.0
type IGlobalClusterRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a GlobalCluster resource.
// Experimental.
GlobalClusterRef() *GlobalClusterReference
}
Indicates that this resource can be referenced as a GlobalCluster. Experimental.