Class: Aws::GlobalAccelerator::Types::IpSet
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlobalAccelerator::Types::IpSet
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-globalaccelerator/types.rb
Overview
A complex type for the set of IP addresses for an accelerator.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ip_address_family ⇒ String
The types of IP addresses included in this IP set.
-
#ip_addresses ⇒ Array<String>
The array of IP addresses in the IP address set.
-
#ip_family ⇒ String
IpFamily is deprecated and has been replaced by IpAddressFamily.
Instance Attribute Details
#ip_address_family ⇒ String
The types of IP addresses included in this IP set.
2337 2338 2339 2340 2341 2342 2343 |
# File 'lib/aws-sdk-globalaccelerator/types.rb', line 2337 class IpSet < Struct.new( :ip_family, :ip_addresses, :ip_address_family) SENSITIVE = [] include Aws::Structure end |
#ip_addresses ⇒ Array<String>
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
2337 2338 2339 2340 2341 2342 2343 |
# File 'lib/aws-sdk-globalaccelerator/types.rb', line 2337 class IpSet < Struct.new( :ip_family, :ip_addresses, :ip_address_family) SENSITIVE = [] include Aws::Structure end |