MDAA TS Docs
    Preparing search index...

    VPC configuration for DataSync deployment enabling private agent-to-service communication. MDAA uses these values to create a VPC endpoint for the DataSync service and a security group with ingress rules for agent control traffic (TCP 1024-1064) and data transfer (TCP 443).

    Use cases: Private network data transfers; VPC endpoint creation for DataSync; Agent network isolation

    AWS: VPC, VPC endpoints, security groups for DataSync service

    Validation: Both properties required; vpcId must be existing VPC; vpcCidrBlock must be valid CIDR matching the VPC

    interface VpcProps {
        vpcCidrBlock: string;
        vpcId: string;
    }
    Index

    Properties

    Properties

    vpcCidrBlock: string

    CIDR block of the VPC, used for security group rule creation. MDAA configures ingress rules on the DataSync VPC endpoint security group based on this CIDR range.

    Use cases: Security group rule configuration; Network access control for DataSync agents

    AWS: VPC CIDR block for security group ingress rules

    Validation: Required; must be valid CIDR notation matching the actual VPC (e.g. 10.0.0.0/8)

    vpcId: string

    The ID of the VPC for DataSync deployment. MDAA creates a VPC endpoint for the DataSync service in this VPC, enabling private communication between agents and tasks without internet gateway dependency.

    Use cases: VPC endpoint creation; Private agent connectivity; Network isolation for data transfers

    AWS: VPC ID used to create an InterfaceVpcEndpoint for the DataSync service

    Validation: Required; must be an existing VPC ID (e.g. vpc-009ce5ec1cff75fx6)