Class: Aws::EC2::Types::DescribeReservedInstancesListingsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass DescribeReservedInstancesListingsRequest data as a hash:

{
  filters: [
    {
      name: "String",
      values: ["String"],
    },
  ],
  reserved_instances_id: "String",
  reserved_instances_listing_id: "String",
}

Contains the parameters for DescribeReservedInstancesListings.

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::Filter>

One or more filters.

  • ‘reserved-instances-id` - The ID of the Reserved Instances.

  • ‘reserved-instances-listing-id` - The ID of the Reserved Instances listing.

  • ‘status` - The status of the Reserved Instance listing (`pending` | `active` | `cancelled` | `closed`).

  • ‘status-message` - The reason for the status.

Returns:



13544
13545
13546
13547
13548
13549
# File 'lib/aws-sdk-ec2/types.rb', line 13544

class DescribeReservedInstancesListingsRequest < Struct.new(
  :filters,
  :reserved_instances_id,
  :reserved_instances_listing_id)
  include Aws::Structure
end

#reserved_instances_idString

One or more Reserved Instance IDs.

Returns:

  • (String)


13544
13545
13546
13547
13548
13549
# File 'lib/aws-sdk-ec2/types.rb', line 13544

class DescribeReservedInstancesListingsRequest < Struct.new(
  :filters,
  :reserved_instances_id,
  :reserved_instances_listing_id)
  include Aws::Structure
end

#reserved_instances_listing_idString

One or more Reserved Instance listing IDs.

Returns:

  • (String)


13544
13545
13546
13547
13548
13549
# File 'lib/aws-sdk-ec2/types.rb', line 13544

class DescribeReservedInstancesListingsRequest < Struct.new(
  :filters,
  :reserved_instances_id,
  :reserved_instances_listing_id)
  include Aws::Structure
end