Class: Aws::EC2::Types::GetHostReservationPurchasePreviewRequest

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

{
  host_id_set: ["String"], # required
  offering_id: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#host_id_setArray<String>

The ID/s of the Dedicated Host/s that the reservation will be associated with.

Returns:

  • (Array<String>)


13058
13059
13060
13061
13062
# File 'lib/aws-sdk-ec2/types.rb', line 13058

class GetHostReservationPurchasePreviewRequest < Struct.new(
  :host_id_set,
  :offering_id)
  include Aws::Structure
end

#offering_idString

The offering ID of the reservation.

Returns:

  • (String)


13058
13059
13060
13061
13062
# File 'lib/aws-sdk-ec2/types.rb', line 13058

class GetHostReservationPurchasePreviewRequest < Struct.new(
  :host_id_set,
  :offering_id)
  include Aws::Structure
end