pub struct ActiveInstance {
pub instance_health: Option<String>,
pub instance_id: Option<String>,
pub instance_type: Option<String>,
pub spot_instance_request_id: Option<String>,
}Expand description
Describes a running instance in a Spot Fleet.
Fields§
§instance_health: Option<String>The health status of the instance. If the status of either the instance status check or the system status check is impaired, the health status of the instance is unhealthy. Otherwise, the health status is healthy.
instance_id: Option<String>The ID of the instance.
instance_type: Option<String>The instance type.
spot_instance_request_id: Option<String>The ID of the Spot Instance request.
Trait Implementations§
Source§impl Clone for ActiveInstance
impl Clone for ActiveInstance
Source§fn clone(&self) -> ActiveInstance
fn clone(&self) -> ActiveInstance
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActiveInstance
impl Debug for ActiveInstance
Source§impl Default for ActiveInstance
impl Default for ActiveInstance
Source§fn default() -> ActiveInstance
fn default() -> ActiveInstance
Returns the “default value” for a type. Read more
Source§impl PartialEq for ActiveInstance
impl PartialEq for ActiveInstance
impl StructuralPartialEq for ActiveInstance
Auto Trait Implementations§
impl Freeze for ActiveInstance
impl RefUnwindSafe for ActiveInstance
impl Send for ActiveInstance
impl Sync for ActiveInstance
impl Unpin for ActiveInstance
impl UnsafeUnpin for ActiveInstance
impl UnwindSafe for ActiveInstance
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