interface ReplicationSubnetGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DMS.ReplicationSubnetGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdms#ReplicationSubnetGroupReference |
Java | software.amazon.awscdk.interfaces.dms.ReplicationSubnetGroupReference |
Python | aws_cdk.interfaces.aws_dms.ReplicationSubnetGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_dms » ReplicationSubnetGroupReference |
A reference to a ReplicationSubnetGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dms as interfaces_dms } from 'aws-cdk-lib/interfaces';
const replicationSubnetGroupReference: interfaces_dms.ReplicationSubnetGroupReference = {
replicationSubnetGroupId: 'replicationSubnetGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| replication | string | The Id of the ReplicationSubnetGroup resource. |
replicationSubnetGroupId
Type:
string
The Id of the ReplicationSubnetGroup resource.

.NET
Go
Java
Python
TypeScript