Class: Aws::EC2::Types::DescribeHostReservationOfferingsRequest

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

{
  filter: [
    {
      name: "String",
      values: ["String"],
    },
  ],
  max_duration: 1,
  max_results: 1,
  min_duration: 1,
  next_token: "String",
  offering_id: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#filterArray<Types::Filter>

One or more filters.

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

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

Returns:



11062
11063
11064
11065
11066
11067
11068
11069
11070
# File 'lib/aws-sdk-ec2/types.rb', line 11062

class DescribeHostReservationOfferingsRequest < Struct.new(
  :filter,
  :max_duration,
  :max_results,
  :min_duration,
  :next_token,
  :offering_id)
  include Aws::Structure
end

#max_durationInteger

This is the maximum duration of the reservation to purchase, specified in seconds. Reservations are available in one-year and three-year terms. The number of seconds specified must be the number of seconds in a year (365x24x60x60) times one of the supported durations (1 or 3). For example, specify 94608000 for three years.

Returns:

  • (Integer)


11062
11063
11064
11065
11066
11067
11068
11069
11070
# File 'lib/aws-sdk-ec2/types.rb', line 11062

class DescribeHostReservationOfferingsRequest < Struct.new(
  :filter,
  :max_duration,
  :max_results,
  :min_duration,
  :next_token,
  :offering_id)
  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)


11062
11063
11064
11065
11066
11067
11068
11069
11070
# File 'lib/aws-sdk-ec2/types.rb', line 11062

class DescribeHostReservationOfferingsRequest < Struct.new(
  :filter,
  :max_duration,
  :max_results,
  :min_duration,
  :next_token,
  :offering_id)
  include Aws::Structure
end

#min_durationInteger

This is the minimum duration of the reservation you’d like to purchase, specified in seconds. Reservations are available in one-year and three-year terms. The number of seconds specified must be the number of seconds in a year (365x24x60x60) times one of the supported durations (1 or 3). For example, specify 31536000 for one year.

Returns:

  • (Integer)


11062
11063
11064
11065
11066
11067
11068
11069
11070
# File 'lib/aws-sdk-ec2/types.rb', line 11062

class DescribeHostReservationOfferingsRequest < Struct.new(
  :filter,
  :max_duration,
  :max_results,
  :min_duration,
  :next_token,
  :offering_id)
  include Aws::Structure
end

#next_tokenString

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

Returns:

  • (String)


11062
11063
11064
11065
11066
11067
11068
11069
11070
# File 'lib/aws-sdk-ec2/types.rb', line 11062

class DescribeHostReservationOfferingsRequest < Struct.new(
  :filter,
  :max_duration,
  :max_results,
  :min_duration,
  :next_token,
  :offering_id)
  include Aws::Structure
end

#offering_idString

The ID of the reservation offering.

Returns:

  • (String)


11062
11063
11064
11065
11066
11067
11068
11069
11070
# File 'lib/aws-sdk-ec2/types.rb', line 11062

class DescribeHostReservationOfferingsRequest < Struct.new(
  :filter,
  :max_duration,
  :max_results,
  :min_duration,
  :next_token,
  :offering_id)
  include Aws::Structure
end