You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EC2::Types::InstanceMarketOptionsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing InstanceMarketOptionsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  market_type: "spot", # accepts spot
  spot_options: {
    max_price: "String",
    spot_instance_type: "one-time", # accepts one-time, persistent
    block_duration_minutes: 1,
    valid_until: Time.now,
    instance_interruption_behavior: "hibernate", # accepts hibernate, stop, terminate
  },
}

Describes the market (purchasing) option for the instances.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#market_typeString

The market type.

Possible values:

  • spot

Returns:

  • (String)

    The market type.

#spot_optionsTypes::SpotMarketOptions

The options for Spot Instances.

Returns: