@pulumi/awsx
Version:
[](https://github.com/pulumi/pulumi-awsx/actions) [](https://slack.pulumi.com) [: VpcTopologyDescription;
export interface VpcTopologyDescription {
subnets: SubnetDescription[];
natGateways: NatGatewayDescription[];
natRoutes: NatRouteDescription[];
}
export interface SubnetDescription {
type: VpcSubnetType;
subnetName: string;
args: SubnetArgs;
ignoreChanges?: string[];
}
export interface NatGatewayDescription {
name: string;
/** index of the public subnet that this nat gateway should live in. */
publicSubnet: string;
}
export interface NatRouteDescription {
name: string;
/** The name of the private subnet that is getting the route */
privateSubnet: string;
/** The name of the nat gateway this private subnet is getting a route to. */
natGateway: string;
}
//# sourceMappingURL=vpcTopology.d.ts.map