Interface VpcArgs

The set of arguments for constructing a Vpc resource.

interface VpcArgs {
    assignGeneratedIpv6CidrBlock?: any;
    availabilityZoneCidrMask?: number;
    availabilityZoneNames?: string[];
    cidrBlock?: string;
    enableDnsHostnames?: any;
    enableDnsSupport?: any;
    enableNetworkAddressUsageMetrics?: any;
    instanceTenancy?: any;
    ipv4IpamPoolId?: any;
    ipv4NetmaskLength?: any;
    ipv6CidrBlock?: any;
    ipv6CidrBlockNetworkBorderGroup?: any;
    ipv6IpamPoolId?: any;
    ipv6NetmaskLength?: any;
    natGateways?: NatGatewayConfigurationArgs;
    numberOfAvailabilityZones?: number;
    subnetSpecs?: SubnetSpecArgs[];
    subnetStrategy?: ec2.SubnetAllocationStrategy;
    tags?: any;
    vpcEndpointSpecs?: VpcEndpointSpecArgs[];
}

Properties

assignGeneratedIpv6CidrBlock?: any

Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IP addresses, or the size of the CIDR block. Default is false. Conflicts with ipv6_ipam_pool_id

availabilityZoneCidrMask?: number

The netmask for each available zone to be aligned to. This is optional, the default value is inferred based on an even distribution of available space from the VPC's CIDR block after being divided evenly by the number of availability zones.

availabilityZoneNames?: string[]

A list of availability zone names to which the subnets defined in subnetSpecs will be deployed. Optional, defaults to the first 3 AZs in the current region.

cidrBlock?: string

The CIDR block for the VPC. Optional. Defaults to 10.0.0.0/16.

enableDnsHostnames?: any

A boolean flag to enable/disable DNS hostnames in the VPC. Defaults false.

enableDnsSupport?: any

A boolean flag to enable/disable DNS support in the VPC. Defaults to true.

enableNetworkAddressUsageMetrics?: any

Indicates whether Network Address Usage metrics are enabled for your VPC. Defaults to false.

instanceTenancy?: any

A tenancy option for instances launched into the VPC. Default is default, which ensures that EC2 instances launched in this VPC use the EC2 instance tenancy attribute specified when the EC2 instance is launched. The only other option is dedicated, which ensures that EC2 instances launched in this VPC are run on dedicated tenancy instances regardless of the tenancy attribute specified at launch. This has a dedicated per region fee of $2 per hour, plus an hourly per instance usage fee.

ipv4IpamPoolId?: any

The ID of an IPv4 IPAM pool you want to use for allocating this VPC's CIDR. IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across AWS Regions and accounts. Using IPAM you can monitor IP address usage throughout your AWS Organization.

ipv4NetmaskLength?: any

The netmask length of the IPv4 CIDR you want to allocate to this VPC. Requires specifying a ipv4_ipam_pool_id.

ipv6CidrBlock?: any

IPv6 CIDR block to request from an IPAM Pool. Can be set explicitly or derived from IPAM using ipv6_netmask_length.

ipv6CidrBlockNetworkBorderGroup?: any

By default when an IPv6 CIDR is assigned to a VPC a default ipv6_cidr_block_network_border_group will be set to the region of the VPC. This can be changed to restrict advertisement of public addresses to specific Network Border Groups such as LocalZones.

ipv6IpamPoolId?: any

IPAM Pool ID for a IPv6 pool. Conflicts with assign_generated_ipv6_cidr_block.

ipv6NetmaskLength?: any

Netmask length to request from IPAM Pool. Conflicts with ipv6_cidr_block. This can be omitted if IPAM pool as a allocation_default_netmask_length set. Valid values: 56.

Configuration for NAT Gateways. Optional. If private and public subnets are both specified, defaults to one gateway per availability zone. Otherwise, no gateways will be created.

numberOfAvailabilityZones?: number

A number of availability zones to which the subnets defined in subnetSpecs will be deployed. Optional, defaults to the first 3 AZs in the current region.

subnetSpecs?: SubnetSpecArgs[]

A list of subnet specs that should be deployed to each AZ specified in availabilityZoneNames. Optional. Defaults to a (smaller) public subnet and a (larger) private subnet based on the size of the CIDR block for the VPC. Private subnets are allocated CIDR block ranges first, followed by Private subnets, and Isolated subnets are allocated last.

subnetStrategy?: ec2.SubnetAllocationStrategy

The strategy to use when allocating subnets for the VPC. Optional. Defaults to Legacy.

tags?: any

A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

vpcEndpointSpecs?: VpcEndpointSpecArgs[]

A list of VPC Endpoints specs to be deployed as part of the VPC

Generated using TypeDoc