Interface CfnReplicationConfig.ComputeConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReplicationConfig.ComputeConfigProperty.Jsii$Proxy
Enclosing class:
CfnReplicationConfig

@Stability(Stable) public static interface CfnReplicationConfig.ComputeConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration parameters for provisioning an AWS DMS Serverless replication.

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.*;
 ComputeConfigProperty computeConfigProperty = 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();
 

See Also: