Class: Aws::EC2::Types::PurchaseReservedInstancesOfferingRequest

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

{
  instance_count: 1, # required
  reserved_instances_offering_id: "String", # required
  dry_run: false,
  limit_price: {
    amount: 1.0,
    currency_code: "USD", # accepts USD
  },
}

Contains the parameters for PurchaseReservedInstancesOffering.

Instance Attribute Summary collapse

Instance Attribute Details

#dry_runBoolean

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.

Returns:

  • (Boolean)


28405
28406
28407
28408
28409
28410
28411
# File 'lib/aws-sdk-ec2/types.rb', line 28405

class PurchaseReservedInstancesOfferingRequest < Struct.new(
  :instance_count,
  :reserved_instances_offering_id,
  :dry_run,
  :limit_price)
  include Aws::Structure
end

#instance_countInteger

The number of Reserved Instances to purchase.

Returns:

  • (Integer)


28405
28406
28407
28408
28409
28410
28411
# File 'lib/aws-sdk-ec2/types.rb', line 28405

class PurchaseReservedInstancesOfferingRequest < Struct.new(
  :instance_count,
  :reserved_instances_offering_id,
  :dry_run,
  :limit_price)
  include Aws::Structure
end

#limit_priceTypes::ReservedInstanceLimitPrice

Specified for Reserved Instance Marketplace offerings to limit the total order and ensure that the Reserved Instances are not purchased at unexpected prices.



28405
28406
28407
28408
28409
28410
28411
# File 'lib/aws-sdk-ec2/types.rb', line 28405

class PurchaseReservedInstancesOfferingRequest < Struct.new(
  :instance_count,
  :reserved_instances_offering_id,
  :dry_run,
  :limit_price)
  include Aws::Structure
end

#reserved_instances_offering_idString

The ID of the Reserved Instance offering to purchase.

Returns:

  • (String)


28405
28406
28407
28408
28409
28410
28411
# File 'lib/aws-sdk-ec2/types.rb', line 28405

class PurchaseReservedInstancesOfferingRequest < Struct.new(
  :instance_count,
  :reserved_instances_offering_id,
  :dry_run,
  :limit_price)
  include Aws::Structure
end