Class: Aws::ElasticLoadBalancingV2::Types::SetIpAddressTypeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::SetIpAddressTypeInput
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/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. The possible values are ipv4
(for 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.
3214 3215 3216 3217 3218 3219 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3214 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.
3214 3215 3216 3217 3218 3219 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3214 class SetIpAddressTypeInput < Struct.new( :load_balancer_arn, :ip_address_type) SENSITIVE = [] include Aws::Structure end |