Class: Aws::EC2::Types::SubnetConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::SubnetConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Describes the configuration of a subnet for a VPC endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ipv_4 ⇒ String
The IPv4 address to assign to the endpoint network interface in the subnet.
-
#ipv_6 ⇒ String
The IPv6 address to assign to the endpoint network interface in the subnet.
-
#subnet_id ⇒ String
The ID of the subnet.
Instance Attribute Details
#ipv_4 ⇒ String
The IPv4 address to assign to the endpoint network interface in the subnet. You must provide an IPv4 address if the VPC endpoint supports IPv4.
If you specify an IPv4 address when modifying a VPC endpoint, we replace the existing endpoint network interface with a new endpoint network interface with this IP address. This process temporarily disconnects the subnet and the VPC endpoint.
68793 68794 68795 68796 68797 68798 68799 |
# File 'lib/aws-sdk-ec2/types.rb', line 68793 class SubnetConfiguration < Struct.new( :subnet_id, :ipv_4, :ipv_6) SENSITIVE = [] include Aws::Structure end |
#ipv_6 ⇒ String
The IPv6 address to assign to the endpoint network interface in the subnet. You must provide an IPv6 address if the VPC endpoint supports IPv6.
If you specify an IPv6 address when modifying a VPC endpoint, we replace the existing endpoint network interface with a new endpoint network interface with this IP address. This process temporarily disconnects the subnet and the VPC endpoint.
68793 68794 68795 68796 68797 68798 68799 |
# File 'lib/aws-sdk-ec2/types.rb', line 68793 class SubnetConfiguration < Struct.new( :subnet_id, :ipv_4, :ipv_6) SENSITIVE = [] include Aws::Structure end |
#subnet_id ⇒ String
The ID of the subnet.
68793 68794 68795 68796 68797 68798 68799 |
# File 'lib/aws-sdk-ec2/types.rb', line 68793 class SubnetConfiguration < Struct.new( :subnet_id, :ipv_4, :ipv_6) SENSITIVE = [] include Aws::Structure end |