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

Class: Aws::EC2::Types::LaunchTemplateSpotMarketOptionsRequest

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

Overview

Note:

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

{
  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
}

The options for Spot Instances.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#block_duration_minutesInteger

The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a multiple of 60 (60, 120, 180, 240, 300, or 360).

Returns:

  • (Integer)

    The required duration for the Spot Instances (also known as Spot blocks), in minutes.

#instance_interruption_behaviorString

The behavior when a Spot Instance is interrupted. The default is terminate.

Possible values:

  • hibernate
  • stop
  • terminate

Returns:

  • (String)

    The behavior when a Spot Instance is interrupted.

#max_priceString

The maximum hourly price you\'re willing to pay for the Spot Instances.

Returns:

  • (String)

    The maximum hourly price you\'re willing to pay for the Spot Instances.

#spot_instance_typeString

The Spot Instance request type.

Possible values:

  • one-time
  • persistent

Returns:

  • (String)

    The Spot Instance request type.

#valid_untilTime

The end date of the request. For a one-time request, the request remains active until all instances launch, the request is canceled, or this date is reached. If the request is persistent, it remains active until it is canceled or this date and time is reached. The default end date is 7 days from the current date.

Returns:

  • (Time)

    The end date of the request.