Struct rusoto_ec2::LaunchTemplateSpotMarketOptions [] [src]

pub struct LaunchTemplateSpotMarketOptions {
    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 maximum hourly price you're willing to pay for the Spot Instances.

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.

Trait Implementations

impl Default for LaunchTemplateSpotMarketOptions
[src]

[src]

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

impl Debug for LaunchTemplateSpotMarketOptions
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LaunchTemplateSpotMarketOptions
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations