AWS Fundamentals Logo
AWS Fundamentals
AWS::DMS::ReplicationConfig

DMS ReplicationConfig

A replication configuration that you later provide to configure and start a AWS DMS Serverless replication

Properties

10 configurable properties. 6 required. Click a row to see details.

Filter:
PropertyTypeFlags
ComputeConfig
ComputeConfig
Required
ReplicationConfigIdentifier
string
Required
ReplicationType
string
Required
SourceEndpointArn
string
Required
TableMappings
object
Required
TargetEndpointArn
string
Required
ReplicationSettings
object
ResourceIdentifier
string
Create-onlyWrite-only
SupplementalSettings
object
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ReplicationConfigArnstringThe Amazon Resource Name (ARN) of the Replication Config

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::DMS::ReplicationConfig

Resources:
  MyResource:
    Type: AWS::DMS::ReplicationConfig
    Properties:
      ReplicationConfigIdentifier: "my-replicationconfigidentifier"
      SourceEndpointArn: "arn:aws:service:region:account:resource"
      TargetEndpointArn: "arn:aws:service:region:account:resource"
      ReplicationType: "full-load"
      ComputeConfig: "value"
      TableMappings: {}
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

dms:CreateReplicationConfigdms:AddTagsToResourcedms:ListTagsForResourceiam:CreateServiceLinkedRoleiam:AttachRolePolicyiam:PutRolePolicyiam:UpdateRoleDescription

read

dms:DescribeReplicationConfigsdms:ListTagsForResource

update

dms:ModifyReplicationConfigdms:AddTagsToResourcedms:RemoveTagsFromResourcedms:ListTagsForResourceiam:CreateServiceLinkedRoleiam:AttachRolePolicyiam:PutRolePolicyiam:UpdateRoleDescription

list

dms:DescribeReplicationConfigsdms:ListTagsForResource

delete

dms:DescribeReplicationConfigsdms:DeleteReplicationConfigdms:ListTagsForResourceiam:DeleteServiceLinkedRoleiam:GetServiceLinkedRoleDeletionStatus

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceDMS
Properties11
Required6
TaggingSupported
Primary IDReplicationConfigArn

Supported Operations

CreateReadUpdateListDelete

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

ResourceIdentifier

External Links