pub struct LaunchTemplateSpotMarketOptionsRequest {
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>,
}Expand description
The options for Spot Instances.
Fields§
§block_duration_minutes: Option<i64>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).
instance_interruption_behavior: Option<String>The behavior when a Spot Instance is interrupted. The default is terminate.
max_price: Option<String>The maximum hourly price you're willing to pay for the Spot Instances.
spot_instance_type: Option<String>The Spot Instance request type.
valid_until: Option<String>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. The default end date is 7 days from the current date.
Trait Implementations§
Source§impl Clone for LaunchTemplateSpotMarketOptionsRequest
impl Clone for LaunchTemplateSpotMarketOptionsRequest
Source§fn clone(&self) -> LaunchTemplateSpotMarketOptionsRequest
fn clone(&self) -> LaunchTemplateSpotMarketOptionsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for LaunchTemplateSpotMarketOptionsRequest
impl Default for LaunchTemplateSpotMarketOptionsRequest
Source§fn default() -> LaunchTemplateSpotMarketOptionsRequest
fn default() -> LaunchTemplateSpotMarketOptionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for LaunchTemplateSpotMarketOptionsRequest
impl PartialEq for LaunchTemplateSpotMarketOptionsRequest
Source§fn eq(&self, other: &LaunchTemplateSpotMarketOptionsRequest) -> bool
fn eq(&self, other: &LaunchTemplateSpotMarketOptionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LaunchTemplateSpotMarketOptionsRequest
Auto Trait Implementations§
impl Freeze for LaunchTemplateSpotMarketOptionsRequest
impl RefUnwindSafe for LaunchTemplateSpotMarketOptionsRequest
impl Send for LaunchTemplateSpotMarketOptionsRequest
impl Sync for LaunchTemplateSpotMarketOptionsRequest
impl Unpin for LaunchTemplateSpotMarketOptionsRequest
impl UnwindSafe for LaunchTemplateSpotMarketOptionsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more