Class: Aws::EC2::Types::DescribeIpamPoliciesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::DescribeIpamPoliciesResult
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ipam_policies ⇒ Array<Types::IpamPolicy>
Information about the IPAM policies.
-
#next_token ⇒ String
The token to use to retrieve the next page of results.
Instance Attribute Details
#ipam_policies ⇒ Array<Types::IpamPolicy>
Information about the IPAM policies.
An IPAM policy is a set of rules that define how public IPv4 addresses from IPAM pools are allocated to Amazon Web Services resources. Each rule maps an Amazon Web Services service to IPAM pools that the service will use to get IP addresses. A single policy can have multiple rules and be applied to multiple Amazon Web Services Regions. If the IPAM pool run out of addresses then the services fallback to Amazon-provided IP addresses. A policy can be applied to an individual Amazon Web Services account or an entity within Amazon Web Services Organizations.
27280 27281 27282 27283 27284 27285 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 27280 class DescribeIpamPoliciesResult < Struct.new( :next_token, :ipam_policies) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to use to retrieve the next page of results. This value is
null when there are no more results to return.
27280 27281 27282 27283 27284 27285 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 27280 class DescribeIpamPoliciesResult < Struct.new( :next_token, :ipam_policies) SENSITIVE = [] include Aws::Structure end |