Struct aws_sdk_ec2::model::SpotFleetRequestConfig
source · #[non_exhaustive]pub struct SpotFleetRequestConfig { /* private fields */ }
Expand description
Describes a Spot Fleet request.
Implementations§
source§impl SpotFleetRequestConfig
impl SpotFleetRequestConfig
sourcepub fn activity_status(&self) -> Option<&ActivityStatus>
pub fn activity_status(&self) -> Option<&ActivityStatus>
The progress of the Spot Fleet request. If there is an error, the status is error
. After all requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased, the status is pending_termination
while Spot Instances are terminating.
sourcepub fn create_time(&self) -> Option<&DateTime>
pub fn create_time(&self) -> Option<&DateTime>
The creation date and time of the request.
sourcepub fn spot_fleet_request_config(&self) -> Option<&SpotFleetRequestConfigData>
pub fn spot_fleet_request_config(&self) -> Option<&SpotFleetRequestConfigData>
The configuration of the Spot Fleet request.
sourcepub fn spot_fleet_request_id(&self) -> Option<&str>
pub fn spot_fleet_request_id(&self) -> Option<&str>
The ID of the Spot Fleet request.
sourcepub fn spot_fleet_request_state(&self) -> Option<&BatchState>
pub fn spot_fleet_request_state(&self) -> Option<&BatchState>
The state of the Spot Fleet request.
The tags for a Spot Fleet resource.
source§impl SpotFleetRequestConfig
impl SpotFleetRequestConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SpotFleetRequestConfig
.
Trait Implementations§
source§impl Clone for SpotFleetRequestConfig
impl Clone for SpotFleetRequestConfig
source§fn clone(&self) -> SpotFleetRequestConfig
fn clone(&self) -> SpotFleetRequestConfig
Returns a copy 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 Debug for SpotFleetRequestConfig
impl Debug for SpotFleetRequestConfig
source§impl PartialEq<SpotFleetRequestConfig> for SpotFleetRequestConfig
impl PartialEq<SpotFleetRequestConfig> for SpotFleetRequestConfig
source§fn eq(&self, other: &SpotFleetRequestConfig) -> bool
fn eq(&self, other: &SpotFleetRequestConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.