pub struct CreateFleetInstance {
pub instance_ids: Option<Vec<String>>,
pub instance_type: Option<String>,
pub launch_template_and_overrides: Option<LaunchTemplateAndOverridesResponse>,
pub lifecycle: Option<String>,
pub platform: Option<String>,
}Expand description
Describes the instances that were launched by the fleet.
Fields§
§instance_ids: Option<Vec<String>>The IDs of the instances.
instance_type: Option<String>The instance type.
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 was launched is a Spot Instance or On-Demand Instance.
platform: Option<String>The value is Windows for Windows instances. Otherwise, the value is blank.
Trait Implementations§
Source§impl Clone for CreateFleetInstance
impl Clone for CreateFleetInstance
Source§fn clone(&self) -> CreateFleetInstance
fn clone(&self) -> CreateFleetInstance
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 CreateFleetInstance
impl Debug for CreateFleetInstance
Source§impl Default for CreateFleetInstance
impl Default for CreateFleetInstance
Source§fn default() -> CreateFleetInstance
fn default() -> CreateFleetInstance
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateFleetInstance
impl PartialEq for CreateFleetInstance
impl StructuralPartialEq for CreateFleetInstance
Auto Trait Implementations§
impl Freeze for CreateFleetInstance
impl RefUnwindSafe for CreateFleetInstance
impl Send for CreateFleetInstance
impl Sync for CreateFleetInstance
impl Unpin for CreateFleetInstance
impl UnwindSafe for CreateFleetInstance
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