#[non_exhaustive]pub struct LaunchTemplateSpotMarketOptions { /* private fields */ }
Expand description
The options for Spot Instances.
Implementations§
source§impl LaunchTemplateSpotMarketOptions
impl LaunchTemplateSpotMarketOptions
sourcepub fn max_price(&self) -> Option<&str>
pub fn max_price(&self) -> Option<&str>
The maximum hourly price you're willing to pay for the Spot Instances. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.
If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.
sourcepub fn spot_instance_type(&self) -> Option<&SpotInstanceType>
pub fn spot_instance_type(&self) -> Option<&SpotInstanceType>
The Spot Instance request type.
sourcepub fn block_duration_minutes(&self) -> Option<i32>
pub fn block_duration_minutes(&self) -> Option<i32>
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).
sourcepub fn valid_until(&self) -> Option<&DateTime>
pub fn valid_until(&self) -> Option<&DateTime>
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.
sourcepub fn instance_interruption_behavior(
&self
) -> Option<&InstanceInterruptionBehavior>
pub fn instance_interruption_behavior(
&self
) -> Option<&InstanceInterruptionBehavior>
The behavior when a Spot Instance is interrupted.
source§impl LaunchTemplateSpotMarketOptions
impl LaunchTemplateSpotMarketOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LaunchTemplateSpotMarketOptions
.
Trait Implementations§
source§impl Clone for LaunchTemplateSpotMarketOptions
impl Clone for LaunchTemplateSpotMarketOptions
source§fn clone(&self) -> LaunchTemplateSpotMarketOptions
fn clone(&self) -> LaunchTemplateSpotMarketOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<LaunchTemplateSpotMarketOptions> for LaunchTemplateSpotMarketOptions
impl PartialEq<LaunchTemplateSpotMarketOptions> for LaunchTemplateSpotMarketOptions
source§fn eq(&self, other: &LaunchTemplateSpotMarketOptions) -> bool
fn eq(&self, other: &LaunchTemplateSpotMarketOptions) -> bool
self
and other
values to be equal, and is used
by ==
.