Documentation
¶
Index ¶
- type DBClusterParameterGroupReference
- type DBClusterReference
- type DBInstanceReference
- type DBParameterGroupReference
- type DBSubnetGroupReference
- type EventSubscriptionReference
- type IDBClusterParameterGroupRef
- type IDBClusterRef
- type IDBInstanceRef
- type IDBParameterGroupRef
- type IDBSubnetGroupRef
- type IEventSubscriptionRef
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DBClusterParameterGroupReference ¶
type DBClusterParameterGroupReference struct {
// The Name of the DBClusterParameterGroup resource.
DbClusterParameterGroupName *string `field:"required" json:"dbClusterParameterGroupName" yaml:"dbClusterParameterGroupName"`
}
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{
DbClusterParameterGroupName: jsii.String("dbClusterParameterGroupName"),
}
type DBClusterReference ¶
type DBClusterReference struct {
// The DBClusterIdentifier of the DBCluster resource.
DbClusterIdentifier *string `field:"required" json:"dbClusterIdentifier" yaml:"dbClusterIdentifier"`
}
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{
DbClusterIdentifier: jsii.String("dbClusterIdentifier"),
}
type DBInstanceReference ¶
type DBInstanceReference struct {
// The DBInstanceIdentifier of the DBInstance resource.
DbInstanceIdentifier *string `field:"required" json:"dbInstanceIdentifier" yaml:"dbInstanceIdentifier"`
}
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{
DbInstanceIdentifier: jsii.String("dbInstanceIdentifier"),
}
type DBParameterGroupReference ¶
type DBParameterGroupReference struct {
// The Name of the DBParameterGroup resource.
DbParameterGroupName *string `field:"required" json:"dbParameterGroupName" yaml:"dbParameterGroupName"`
}
A reference to a DBParameterGroup 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"
dBParameterGroupReference := &DBParameterGroupReference{
DbParameterGroupName: jsii.String("dbParameterGroupName"),
}
type DBSubnetGroupReference ¶
type DBSubnetGroupReference struct {
// The DBSubnetGroupName of the DBSubnetGroup resource.
DbSubnetGroupName *string `field:"required" json:"dbSubnetGroupName" yaml:"dbSubnetGroupName"`
}
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{
DbSubnetGroupName: jsii.String("dbSubnetGroupName"),
}
type EventSubscriptionReference ¶
type EventSubscriptionReference struct {
// The SubscriptionName of the EventSubscription resource.
SubscriptionName *string `field:"required" json:"subscriptionName" yaml:"subscriptionName"`
}
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{
SubscriptionName: jsii.String("subscriptionName"),
}
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 IDBParameterGroupRef ¶
type IDBParameterGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DBParameterGroup resource.
// Experimental.
DbParameterGroupRef() *DBParameterGroupReference
}
Indicates that this resource can be referenced as a DBParameterGroup. 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.