pub struct LaunchTemplateConfig {
pub launch_template_specification: Option<FleetLaunchTemplateSpecification>,
pub overrides: Option<Vec<LaunchTemplateOverrides>>,
}Expand description
Describes a launch template and overrides.
Fields§
§launch_template_specification: Option<FleetLaunchTemplateSpecification>The launch template.
overrides: Option<Vec<LaunchTemplateOverrides>>Any parameters that you specify override the same parameters in the launch template.
Trait Implementations§
Source§impl Clone for LaunchTemplateConfig
impl Clone for LaunchTemplateConfig
Source§fn clone(&self) -> LaunchTemplateConfig
fn clone(&self) -> LaunchTemplateConfig
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 LaunchTemplateConfig
impl Debug for LaunchTemplateConfig
Source§impl Default for LaunchTemplateConfig
impl Default for LaunchTemplateConfig
Source§fn default() -> LaunchTemplateConfig
fn default() -> LaunchTemplateConfig
Returns the “default value” for a type. Read more
Source§impl PartialEq for LaunchTemplateConfig
impl PartialEq for LaunchTemplateConfig
impl StructuralPartialEq for LaunchTemplateConfig
Auto Trait Implementations§
impl Freeze for LaunchTemplateConfig
impl RefUnwindSafe for LaunchTemplateConfig
impl Send for LaunchTemplateConfig
impl Sync for LaunchTemplateConfig
impl Unpin for LaunchTemplateConfig
impl UnwindSafe for LaunchTemplateConfig
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