Module: AWSCDK::EC2::VPCEndpointIPAddressType

Defined in:
ec2/vpc_endpoint_ip_address_type.rb

Overview

IP address type for the endpoint.

Constant Summary collapse

IPV4 =
Deprecated.
Note:

Default:

Assign IPv4 addresses to the endpoint network interfaces.

This option is supported only if all selected subnets have IPv4 address ranges and the endpoint service accepts IPv4 requests.

Jsii::Enum.new("aws-cdk-lib.aws_ec2.VpcEndpointIpAddressType", "IPV4")
IPV6 =
Deprecated.
Note:

Default:

Assign IPv6 addresses to the endpoint network interfaces.

This option is supported only if all selected subnets are IPv6 only subnets and the endpoint service accepts IPv6 requests.

Jsii::Enum.new("aws-cdk-lib.aws_ec2.VpcEndpointIpAddressType", "IPV6")
DUALSTACK =
Deprecated.
Note:

Default:

Assign both IPv4 and IPv6 addresses to the endpoint network interfaces.

This option is supported only if all selected subnets have both IPv4 and IPv6 address ranges and the endpoint service accepts both IPv4 and IPv6 requests.

Jsii::Enum.new("aws-cdk-lib.aws_ec2.VpcEndpointIpAddressType", "DUALSTACK")