#[non_exhaustive]pub struct LaunchTemplateSpotMarketOptionsRequest { /* private fields */ }
Expand description
The options for Spot Instances.
Implementations§
source§impl 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
.
source§impl LaunchTemplateSpotMarketOptionsRequest
impl LaunchTemplateSpotMarketOptionsRequest
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LaunchTemplateSpotMarketOptionsRequest
.
Trait Implementations§
source§impl Clone for LaunchTemplateSpotMarketOptionsRequest
impl Clone for LaunchTemplateSpotMarketOptionsRequest
source§fn clone(&self) -> LaunchTemplateSpotMarketOptionsRequest
fn clone(&self) -> LaunchTemplateSpotMarketOptionsRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<LaunchTemplateSpotMarketOptionsRequest> for LaunchTemplateSpotMarketOptionsRequest
impl PartialEq<LaunchTemplateSpotMarketOptionsRequest> for LaunchTemplateSpotMarketOptionsRequest
source§fn eq(&self, other: &LaunchTemplateSpotMarketOptionsRequest) -> bool
fn eq(&self, other: &LaunchTemplateSpotMarketOptionsRequest) -> bool
self
and other
values to be equal, and is used
by ==
.