MDAA TS Docs
    Preparing search index...

    Configuration for a DMS replication instance with compute, networking, and security settings.

    Use cases: Database migration; Database replication; Data migration workflows; Database connectivity

    AWS: AWS Database Migration Service configuration for database migration and replication

    Validation: Configuration must be valid for deployment; properties must conform to AWS DMS and MDAA requirements

    interface ReplicationInstanceProps {
        addSelfReferenceRule?: boolean;
        egressRules?: MdaaSecurityGroupRuleProps;
        ingressRules?: MdaaSecurityGroupRuleProps;
        instanceClass: string;
        subnetIds: string[];
        vpcId: string;
    }
    Index

    Properties

    addSelfReferenceRule?: boolean

    If true, the SG will allow traffic to and from itself

    List of egress rules to be added to the function SG

    List of ingress rules to be added to the function SG

    instanceClass: string

    DMS replication instance class (e.g., 'dms.r5.large').

    subnetIds: string[]

    Subnet IDs for replication instance deployment, spanning at least two AZs.

    vpcId: string

    VPC ID for replication instance deployment.