pub struct EC2CreateFleetError {
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 EC2CreateFleetError
impl Clone for EC2CreateFleetError
Source§fn clone(&self) -> EC2CreateFleetError
fn clone(&self) -> EC2CreateFleetError
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 EC2CreateFleetError
impl Debug for EC2CreateFleetError
Source§impl Default for EC2CreateFleetError
impl Default for EC2CreateFleetError
Source§fn default() -> EC2CreateFleetError
fn default() -> EC2CreateFleetError
Returns the “default value” for a type. Read more
Source§impl PartialEq for EC2CreateFleetError
impl PartialEq for EC2CreateFleetError
impl StructuralPartialEq for EC2CreateFleetError
Auto Trait Implementations§
impl Freeze for EC2CreateFleetError
impl RefUnwindSafe for EC2CreateFleetError
impl Send for EC2CreateFleetError
impl Sync for EC2CreateFleetError
impl Unpin for EC2CreateFleetError
impl UnwindSafe for EC2CreateFleetError
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