interface ReplicationInstanceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DMS.ReplicationInstanceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdms#ReplicationInstanceReference |
Java | software.amazon.awscdk.services.dms.ReplicationInstanceReference |
Python | aws_cdk.aws_dms.ReplicationInstanceReference |
TypeScript | aws-cdk-lib » aws_dms » ReplicationInstanceReference |
A reference to a ReplicationInstance 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 dms } from 'aws-cdk-lib';
const replicationInstanceReference: dms.ReplicationInstanceReference = {
replicationInstanceId: 'replicationInstanceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| replication | string | The Id of the ReplicationInstance resource. |
replicationInstanceId
Type:
string
The Id of the ReplicationInstance resource.

.NET
Go
Java
Python
TypeScript