CfnReplicationConfigProps
- class aws_cdk.aws_dms.CfnReplicationConfigProps(*, compute_config, replication_config_identifier, replication_type, source_endpoint_arn, table_mappings, target_endpoint_arn, replication_settings=None, resource_identifier=None, supplemental_settings=None, tags=None)
Bases:
object
Properties for defining a
CfnReplicationConfig
.- Parameters:
compute_config (
Union
[IResolvable
,ComputeConfigProperty
,Dict
[str
,Any
]]) – Configuration parameters for provisioning an AWS DMS Serverless replication.replication_config_identifier (
str
) – 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 outputReplicationConfigArn
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.replication_type (
str
) – The type of AWS DMS Serverless replication to provision using this replication configuration. Possible values: -"full-load"
-"cdc"
-"full-load-and-cdc"
source_endpoint_arn (
str
) – The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration.table_mappings (
Any
) – 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 .target_endpoint_arn (
str
) – The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration.replication_settings (
Any
) – Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration. For example, see Change processing tuning settings .resource_identifier (
Optional
[str
]) – 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 .supplemental_settings (
Any
) – Optional JSON settings for specifying supplemental data. For more information, see Specifying supplemental data for task settings .tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – 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:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_dms as dms # replication_settings: Any # supplemental_settings: Any # table_mappings: Any cfn_replication_config_props = dms.CfnReplicationConfigProps( compute_config=dms.CfnReplicationConfig.ComputeConfigProperty( max_capacity_units=123, # the properties below are optional availability_zone="availabilityZone", dns_name_servers="dnsNameServers", kms_key_id="kmsKeyId", min_capacity_units=123, multi_az=False, preferred_maintenance_window="preferredMaintenanceWindow", replication_subnet_group_id="replicationSubnetGroupId", vpc_security_group_ids=["vpcSecurityGroupIds"] ), replication_config_identifier="replicationConfigIdentifier", replication_type="replicationType", source_endpoint_arn="sourceEndpointArn", table_mappings=table_mappings, target_endpoint_arn="targetEndpointArn", # the properties below are optional replication_settings=replication_settings, resource_identifier="resourceIdentifier", supplemental_settings=supplemental_settings, tags=[CfnTag( key="key", value="value" )] )
Attributes
- compute_config
Configuration parameters for provisioning an AWS DMS Serverless replication.
- replication_config_identifier
A unique identifier that you want to use to create a
ReplicationConfigArn
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.
- replication_settings
Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration.
For example, see Change processing tuning settings .
- replication_type
The type of AWS DMS Serverless replication to provision using this replication configuration.
Possible values:
"full-load"
"cdc"
"full-load-and-cdc"
- resource_identifier
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 .
- source_endpoint_arn
The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration.
- supplemental_settings
Optional JSON settings for specifying supplemental data.
For more information, see Specifying supplemental data for task settings .
- table_mappings
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 .
- tags
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 .
- target_endpoint_arn
The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration.