Interface CfnReplicationConfigProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReplicationConfigProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:05.413Z") @Stability(Stable) public interface CfnReplicationConfigProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnReplicationConfig.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.dms.*;
 Object replicationSettings;
 Object supplementalSettings;
 Object tableMappings;
 CfnReplicationConfigProps cfnReplicationConfigProps = CfnReplicationConfigProps.builder()
         .computeConfig(ComputeConfigProperty.builder()
                 .maxCapacityUnits(123)
                 // the properties below are optional
                 .availabilityZone("availabilityZone")
                 .dnsNameServers("dnsNameServers")
                 .kmsKeyId("kmsKeyId")
                 .minCapacityUnits(123)
                 .multiAz(false)
                 .preferredMaintenanceWindow("preferredMaintenanceWindow")
                 .replicationSubnetGroupId("replicationSubnetGroupId")
                 .vpcSecurityGroupIds(List.of("vpcSecurityGroupIds"))
                 .build())
         .replicationConfigIdentifier("replicationConfigIdentifier")
         .replicationSettings(replicationSettings)
         .replicationType("replicationType")
         .resourceIdentifier("resourceIdentifier")
         .sourceEndpointArn("sourceEndpointArn")
         .supplementalSettings(supplementalSettings)
         .tableMappings(tableMappings)
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .targetEndpointArn("targetEndpointArn")
         .build();
 

See Also: