#[non_exhaustive]pub struct LaunchTemplateSpotMarketOptionsRequest { /* private fields */ }
Expand description
The options for Spot Instances.
Implementations
sourceimpl LaunchTemplateSpotMarketOptionsRequest
impl LaunchTemplateSpotMarketOptionsRequest
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>
Deprecated.
sourcepub fn valid_until(&self) -> Option<&DateTime>
pub fn valid_until(&self) -> Option<&DateTime>
The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ). Supported only for persistent requests.
-
For a persistent request, the request remains active until the
ValidUntil
date and time is reached. Otherwise, the request remains active until you cancel it. -
For a one-time request,
ValidUntil
is not supported. The request remains active until all instances launch or you cancel the request.
Default: 7 days from the current date
sourcepub fn instance_interruption_behavior(
&self
) -> Option<&InstanceInterruptionBehavior>
pub fn instance_interruption_behavior(
&self
) -> Option<&InstanceInterruptionBehavior>
The behavior when a Spot Instance is interrupted. The default is terminate
.
sourceimpl LaunchTemplateSpotMarketOptionsRequest
impl LaunchTemplateSpotMarketOptionsRequest
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LaunchTemplateSpotMarketOptionsRequest
.
Trait Implementations
sourceimpl Clone for LaunchTemplateSpotMarketOptionsRequest
impl Clone for LaunchTemplateSpotMarketOptionsRequest
sourcefn clone(&self) -> LaunchTemplateSpotMarketOptionsRequest
fn clone(&self) -> LaunchTemplateSpotMarketOptionsRequest
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more