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
- Struct
- Aws::EC2::Types::LaunchTemplateSpotMarketOptionsRequest
- Defined in:
- (unknown)
Overview
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
-
#block_duration_minutes ⇒ Integer
The required duration for the Spot Instances (also known as Spot blocks), in minutes.
-
#instance_interruption_behavior ⇒ String
The behavior when a Spot Instance is interrupted.
-
#max_price ⇒ String
The maximum hourly price you\'re willing to pay for the Spot Instances.
-
#spot_instance_type ⇒ String
The Spot Instance request type.
-
#valid_until ⇒ Time
The end date of the request.
Instance Attribute Details
#block_duration_minutes ⇒ Integer
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).
#instance_interruption_behavior ⇒ String
The behavior when a Spot Instance is interrupted. The default is
terminate
.
Possible values:
- hibernate
- stop
- terminate
#max_price ⇒ String
The maximum hourly price you\'re willing to pay for the Spot Instances.
#spot_instance_type ⇒ String
The Spot Instance request type.
Possible values:
- one-time
- persistent
#valid_until ⇒ Time
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.