Interface CfnReplicationConfigProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicationConfigProps.Jsii$Proxy
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") .replicationType("replicationType") .sourceEndpointArn("sourceEndpointArn") .tableMappings(tableMappings) .targetEndpointArn("targetEndpointArn") // the properties below are optional .replicationSettings(replicationSettings) .resourceIdentifier("resourceIdentifier") .supplementalSettings(supplementalSettings) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnReplicationConfigProps
static final class
An implementation forCfnReplicationConfigProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Configuration parameters for provisioning an AWS DMS Serverless replication.A unique identifier that you want to use to create aReplicationConfigArn
that is returned as part of the output from this action.default Object
Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration.The type of AWS DMS Serverless replication to provision using this replication configuration.default String
Optional unique value or name that you set for a given resource that can be used to construct an Amazon Resource Name (ARN) for that resource.The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration.default Object
Optional JSON settings for specifying supplemental data.JSON table mappings for AWS DMS Serverless replications that are provisioned using this replication configuration.getTags()
One or more optional tags associated with resources used by the AWS DMS Serverless replication.The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComputeConfig
Configuration parameters for provisioning an AWS DMS Serverless replication.- See Also:
-
getReplicationConfigIdentifier
A unique identifier that you want to use to create aReplicationConfigArn
that is returned as part of the output from this action.You can then pass this output
ReplicationConfigArn
as the value of theReplicationConfigArn
option for other actions to identify both AWS DMS Serverless replications and replication configurations that you want those actions to operate on. For some actions, you can also use either this unique identifier or a corresponding ARN in action filters to identify the specific replication and replication configuration to operate on.- See Also:
-
getReplicationType
The type of AWS DMS Serverless replication to provision using this replication configuration.Possible values:
"full-load"
"cdc"
"full-load-and-cdc"
- See Also:
-
getSourceEndpointArn
The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration.- See Also:
-
getTableMappings
JSON table mappings for AWS DMS Serverless replications that are provisioned using this replication configuration.For more information, see Specifying table selection and transformations rules using JSON .
- See Also:
-
getTargetEndpointArn
The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration.- See Also:
-
getReplicationSettings
Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration.For example, see Change processing tuning settings .
- See Also:
-
getResourceIdentifier
Optional unique value or name that you set for a given resource that can be used to construct an Amazon Resource Name (ARN) for that resource.For more information, see Fine-grained access control using resource names and tags .
- See Also:
-
getSupplementalSettings
Optional JSON settings for specifying supplemental data.For more information, see Specifying supplemental data for task settings .
- See Also:
-
getTags
One or more optional tags associated with resources used by the AWS DMS Serverless replication.For more information, see Tagging resources in AWS Database Migration Service .
- See Also:
-
builder
- Returns:
- a
CfnReplicationConfigProps.Builder
ofCfnReplicationConfigProps
-