Class: Aws::ElasticLoadBalancingV2::Types::SubnetMapping
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::SubnetMapping
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Note:
When making an API call, you may pass SubnetMapping data as a hash:
{
subnet_id: "SubnetId",
allocation_id: "AllocationId",
private_i_pv_4_address: "PrivateIPv4Address",
i_pv_6_address: "IPv6Address",
}
Information about a subnet mapping.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allocation_id ⇒ String
[Network Load Balancers] The allocation ID of the Elastic IP address for an internet-facing load balancer.
-
#i_pv_6_address ⇒ String
[Network Load Balancers] The IPv6 address.
-
#private_i_pv_4_address ⇒ String
[Network Load Balancers] The private IPv4 address for an internal load balancer.
-
#subnet_id ⇒ String
The ID of the subnet.
Instance Attribute Details
#allocation_id ⇒ String
[Network Load Balancers] The allocation ID of the Elastic IP address for an internet-facing load balancer.
3852 3853 3854 3855 3856 3857 3858 3859 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3852 class SubnetMapping < Struct.new( :subnet_id, :allocation_id, :private_i_pv_4_address, :i_pv_6_address) SENSITIVE = [] include Aws::Structure end |
#i_pv_6_address ⇒ String
[Network Load Balancers] The IPv6 address.
3852 3853 3854 3855 3856 3857 3858 3859 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3852 class SubnetMapping < Struct.new( :subnet_id, :allocation_id, :private_i_pv_4_address, :i_pv_6_address) SENSITIVE = [] include Aws::Structure end |
#private_i_pv_4_address ⇒ String
[Network Load Balancers] The private IPv4 address for an internal load balancer.
3852 3853 3854 3855 3856 3857 3858 3859 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3852 class SubnetMapping < Struct.new( :subnet_id, :allocation_id, :private_i_pv_4_address, :i_pv_6_address) SENSITIVE = [] include Aws::Structure end |
#subnet_id ⇒ String
The ID of the subnet.
3852 3853 3854 3855 3856 3857 3858 3859 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3852 class SubnetMapping < Struct.new( :subnet_id, :allocation_id, :private_i_pv_4_address, :i_pv_6_address) SENSITIVE = [] include Aws::Structure end |