Documentation
¶
Index ¶
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 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.