Variable NatGatewayStrategyConst

NatGatewayStrategy: {
    None: "None";
    OnePerAz: "OnePerAz";
    Single: "Single";
} = ...

Type declaration

  • Readonly None: "None"

    Do not create any NAT Gateways. Resources in private subnets will not be able to access the internet.

  • Readonly OnePerAz: "OnePerAz"

    Create a NAT Gateway in each availability zone. This is the recommended configuration for production infrastructure.

  • Readonly Single: "Single"

    Create a single NAT Gateway for the entire VPC. This configuration is not recommended for production infrastructure as it creates a single point of failure.

Generated using TypeDoc