Struct rusoto_ec2::SpotMarketOptions[][src]

pub struct SpotMarketOptions {
    pub block_duration_minutes: Option<i64>,
    pub instance_interruption_behavior: Option<String>,
    pub max_price: Option<String>,
    pub spot_instance_type: Option<String>,
    pub valid_until: Option<String>,
}

The options for Spot Instances.

Fields

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).

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

The maximum hourly price you're willing to pay for the Spot Instances. The default is the On-Demand price.

The Spot Instance request type.

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.

Trait Implementations

impl Default for SpotMarketOptions
[src]

Returns the "default value" for a type. Read more

impl Debug for SpotMarketOptions
[src]

Formats the value using the given formatter. Read more

impl Clone for SpotMarketOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SpotMarketOptions
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations