Interface ExistingVpcIdArgs

interface ExistingVpcIdArgs {
    internetGatewayId?: any;
    isolatedSubnetIds?: Input<string>[];
    natGatewayIds?: Input<string>[];
    privateSubnetIds?: Input<string>[];
    publicSubnetIds?: Input<string>[];
    vpcId: Input<string>;
}

Properties

internetGatewayId?: any

The id of the internet gateway for this VPC

isolatedSubnetIds?: Input<string>[]

The isolated subnets for the vpc.

natGatewayIds?: Input<string>[]

The ids of the nat gateways for this VPC

privateSubnetIds?: Input<string>[]

The private subnets for the vpc.

publicSubnetIds?: Input<string>[]

The public subnets for the vpc.

vpcId: Input<string>

The id of the VPC.

Generated using TypeDoc