Class: Aws::EC2::Types::DescribeHostReservationsRequest

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 DescribeHostReservationsRequest data as a hash:

{
  filter: [
    {
      name: "String",
      values: ["String"],
    },
  ],
  host_reservation_id_set: ["String"],
  max_results: 1,
  next_token: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#filterArray<Types::Filter>

One or more filters.

  • ‘instance-family` - The instance family (for example, `m4`).

  • ‘payment-option` - The payment option (`NoUpfront` | `PartialUpfront` | `AllUpfront`).

  • ‘state` - The state of the reservation (`payment-pending` | `payment-failed` | `active` | `retired`).

Returns:



11087
11088
11089
11090
11091
11092
11093
# File 'lib/aws-sdk-ec2/types.rb', line 11087

class DescribeHostReservationsRequest < Struct.new(
  :filter,
  :host_reservation_id_set,
  :max_results,
  :next_token)
  include Aws::Structure
end

#host_reservation_id_setArray<String>

One or more host reservation IDs.

Returns:

  • (Array<String>)


11087
11088
11089
11090
11091
11092
11093
# File 'lib/aws-sdk-ec2/types.rb', line 11087

class DescribeHostReservationsRequest < Struct.new(
  :filter,
  :host_reservation_id_set,
  :max_results,
  :next_token)
  include Aws::Structure
end

#max_resultsInteger

The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned ‘nextToken` value. This value can be between 5 and

  1. If ‘maxResults` is given a larger value than 500, you receive

an error.

Returns:

  • (Integer)


11087
11088
11089
11090
11091
11092
11093
# File 'lib/aws-sdk-ec2/types.rb', line 11087

class DescribeHostReservationsRequest < Struct.new(
  :filter,
  :host_reservation_id_set,
  :max_results,
  :next_token)
  include Aws::Structure
end

#next_tokenString

The token to use to retrieve the next page of results.

Returns:

  • (String)


11087
11088
11089
11090
11091
11092
11093
# File 'lib/aws-sdk-ec2/types.rb', line 11087

class DescribeHostReservationsRequest < Struct.new(
  :filter,
  :host_reservation_id_set,
  :max_results,
  :next_token)
  include Aws::Structure
end