CfnReplicationConfigProps

class aws_cdk.aws_dms.CfnReplicationConfigProps(*, compute_config=None, replication_config_identifier=None, replication_settings=None, replication_type=None, resource_identifier=None, source_endpoint_arn=None, supplemental_settings=None, table_mappings=None, tags=None, target_endpoint_arn=None)

Bases: object

Properties for defining a CfnReplicationConfig.

Parameters:
  • compute_config (Union[IResolvable, ComputeConfigProperty, Dict[str, Any], None]) – Configuration parameters for provisioning an AWS DMS Serverless replication.

  • replication_config_identifier (Optional[str]) – 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 the ReplicationConfigArn 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 (Any) – Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration. For example, see Change processing tuning settings .

  • replication_type (Optional[str]) – 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[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 .

  • source_endpoint_arn (Optional[str]) – The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration.

  • supplemental_settings (Any) – Optional JSON settings for specifying supplemental data. For more information, see Specifying supplemental data for task settings .

  • 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 .

  • 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 .

  • target_endpoint_arn (Optional[str]) – The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html

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_settings=replication_settings,
    replication_type="replicationType",
    resource_identifier="resourceIdentifier",
    source_endpoint_arn="sourceEndpointArn",
    supplemental_settings=supplemental_settings,
    table_mappings=table_mappings,
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    target_endpoint_arn="targetEndpointArn"
)

Attributes

compute_config

Configuration parameters for provisioning an AWS DMS Serverless replication.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html#cfn-dms-replicationconfig-computeconfig

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 the ReplicationConfigArn 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html#cfn-dms-replicationconfig-replicationconfigidentifier

replication_settings

Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration.

For example, see Change processing tuning settings .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html#cfn-dms-replicationconfig-replicationsettings

replication_type

The type of AWS DMS Serverless replication to provision using this replication configuration.

Possible values:

  • "full-load"

  • "cdc"

  • "full-load-and-cdc"

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html#cfn-dms-replicationconfig-replicationtype

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html#cfn-dms-replicationconfig-resourceidentifier

source_endpoint_arn

The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html#cfn-dms-replicationconfig-sourceendpointarn

supplemental_settings

Optional JSON settings for specifying supplemental data.

For more information, see Specifying supplemental data for task settings .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html#cfn-dms-replicationconfig-supplementalsettings

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html#cfn-dms-replicationconfig-tablemappings

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html#cfn-dms-replicationconfig-tags

target_endpoint_arn

The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html#cfn-dms-replicationconfig-targetendpointarn