Struct aws_sdk_ec2::model::SpotMarketOptions
source · [−]#[non_exhaustive]pub struct SpotMarketOptions { /* private fields */ }
Expand description
The options for Spot Instances.
Implementations
sourceimpl SpotMarketOptions
impl SpotMarketOptions
sourcepub fn max_price(&self) -> Option<&str>
pub fn max_price(&self) -> Option<&str>
The maximum hourly price that you're willing to pay for a Spot Instance. 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. For RunInstances, persistent Spot Instance requests are only supported when the instance interruption behavior is either hibernate
or stop
.
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.
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 SpotMarketOptions
impl SpotMarketOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SpotMarketOptions
.
Trait Implementations
sourceimpl Clone for SpotMarketOptions
impl Clone for SpotMarketOptions
sourcefn clone(&self) -> SpotMarketOptions
fn clone(&self) -> SpotMarketOptions
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more