pub struct DescribeFleetError {
pub error_code: Option<String>,
pub error_message: Option<String>,
pub launch_template_and_overrides: Option<LaunchTemplateAndOverridesResponse>,
pub lifecycle: Option<String>,
}Expand description
Describes the instances that could not be launched by the fleet.
Fields§
§error_code: Option<String>The error code that indicates why the instance could not be launched. For more information about error codes, see Error Codes.
error_message: Option<String>The error message that describes why the instance could not be launched. For more information about error messages, see Error Codes.
launch_template_and_overrides: Option<LaunchTemplateAndOverridesResponse>The launch templates and overrides that were used for launching the instances. The values that you specify in the Overrides replace the values in the launch template.
lifecycle: Option<String>Indicates if the instance that could not be launched was a Spot Instance or On-Demand Instance.
Trait Implementations§
Source§impl Clone for DescribeFleetError
impl Clone for DescribeFleetError
Source§fn clone(&self) -> DescribeFleetError
fn clone(&self) -> DescribeFleetError
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 Debug for DescribeFleetError
impl Debug for DescribeFleetError
Source§impl Default for DescribeFleetError
impl Default for DescribeFleetError
Source§fn default() -> DescribeFleetError
fn default() -> DescribeFleetError
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeFleetError
impl PartialEq for DescribeFleetError
impl StructuralPartialEq for DescribeFleetError
Auto Trait Implementations§
impl Freeze for DescribeFleetError
impl RefUnwindSafe for DescribeFleetError
impl Send for DescribeFleetError
impl Sync for DescribeFleetError
impl Unpin for DescribeFleetError
impl UnwindSafe for DescribeFleetError
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