Class: Aws::ElasticLoadBalancingV2::Types::SetIpAddressTypeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::SetIpAddressTypeInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ip_address_type ⇒ String
Note: Internal load balancers must use the ‘ipv4` IP address type.
-
#load_balancer_arn ⇒ String
The Amazon Resource Name (ARN) of the load balancer.
Instance Attribute Details
#ip_address_type ⇒ String
Note: Internal load balancers must use the ‘ipv4` IP address type.
[Application Load Balancers] The IP address type. The possible values are ‘ipv4` (for only IPv4 addresses), `dualstack` (for IPv4 and IPv6 addresses), and `dualstack-without-public-ipv4` (for IPv6 only public addresses, with private IPv4 and IPv6 addresses).
Note: Application Load Balancer authentication only supports IPv4 addresses when connecting to an Identity Provider (IdP) or Amazon Cognito endpoint. Without a public IPv4 address the load balancer cannot complete the authentication process, resulting in HTTP 500 errors.
[Network Load Balancers] The IP address type. The possible values are ‘ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses). You can’t specify `dualstack` for a load balancer with a UDP or TCP_UDP listener.
[Gateway Load Balancers] The IP address type. The possible values are ‘ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses).
3398 3399 3400 3401 3402 3403 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3398 class SetIpAddressTypeInput < Struct.new( :load_balancer_arn, :ip_address_type) SENSITIVE = [] include Aws::Structure end |
#load_balancer_arn ⇒ String
The Amazon Resource Name (ARN) of the load balancer.
3398 3399 3400 3401 3402 3403 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3398 class SetIpAddressTypeInput < Struct.new( :load_balancer_arn, :ip_address_type) SENSITIVE = [] include Aws::Structure end |