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
The IP address type.
-
#load_balancer_arn ⇒ String
The Amazon Resource Name (ARN) of the load balancer.
Instance Attribute Details
#ip_address_type ⇒ String
The IP address type. Internal load balancers must use ‘ipv4`.
[Application Load Balancers] The possible values are ‘ipv4` (IPv4 addresses), `dualstack` (IPv4 and IPv6 addresses), and `dualstack-without-public-ipv4` (public IPv6 addresses and private IPv4 and IPv6 addresses).
Application Load Balancer authentication supports IPv4 addresses only when connecting to an Identity Provider (IdP) or Amazon Cognito endpoint. Without a public IPv4 address the load balancer can’t complete the authentication process, resulting in HTTP 500 errors.
[Network Load Balancers and Gateway Load Balancers] The possible values are ‘ipv4` (IPv4 addresses) and `dualstack` (IPv4 and IPv6 addresses).
3583 3584 3585 3586 3587 3588 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3583 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.
3583 3584 3585 3586 3587 3588 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3583 class SetIpAddressTypeInput < Struct.new( :load_balancer_arn, :ip_address_type) SENSITIVE = [] include Aws::Structure end |