AwsTransitGatewayAttachmentNameLookupNetworkArgs

interface AwsTransitGatewayAttachmentNameLookupNetworkArgs { subnetIds?: undefined; subnetNames: Input<string>[]; vpc?: undefined; vpcName: Input<string>; }

Existing VPC and subnet Name tags for migration-oriented attachment lookup.

Example

CODE
const network = { vpcName: 'legacy-vpc', subnetNames: ['legacy-tgw-a', 'legacy-tgw-b'] };

Properties

subnetIds: undefined

Unavailable when resolving the VPC and subnets by their Name tags.

subnetNames: Input<string>[]

Existing, VPC-scoped subnet Name tags. Each name must resolve to exactly one subnet.

vpc: undefined

Unavailable when resolving the VPC and subnets by their Name tags.

vpcName: Input<string>

Existing VPC Name tag. Mutually exclusive with direct vpc and subnetIds references.