Class: Aws::EC2::Types::SubnetConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::SubnetConfiguration
- Defined in:
- gems/aws-sdk-ec2/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.
68238 68239 68240 68241 68242 68243 68244 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 68238 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.
68238 68239 68240 68241 68242 68243 68244 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 68238 class SubnetConfiguration < Struct.new( :subnet_id, :ipv_4, :ipv_6) SENSITIVE = [] include Aws::Structure end |
#subnet_id ⇒ String
The ID of the subnet.
68238 68239 68240 68241 68242 68243 68244 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 68238 class SubnetConfiguration < Struct.new( :subnet_id, :ipv_4, :ipv_6) SENSITIVE = [] include Aws::Structure end |