Class: Aws::EC2::Types::GetIpamAddressHistoryResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::GetIpamAddressHistoryResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#history_records ⇒ Array<Types::IpamAddressHistoryRecord>
A historical record for a CIDR within an IPAM scope.
-
#next_token ⇒ String
The token to use to retrieve the next page of results.
Instance Attribute Details
#history_records ⇒ Array<Types::IpamAddressHistoryRecord>
A historical record for a CIDR within an IPAM scope. If the CIDR is associated with an EC2 instance, you will see an object in the response for the instance and one for the network interface.
34421 34422 34423 34424 34425 34426 |
# File 'lib/aws-sdk-ec2/types.rb', line 34421 class GetIpamAddressHistoryResult < Struct.new( :history_records, :next_token) 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.
34421 34422 34423 34424 34425 34426 |
# File 'lib/aws-sdk-ec2/types.rb', line 34421 class GetIpamAddressHistoryResult < Struct.new( :history_records, :next_token) SENSITIVE = [] include Aws::Structure end |