#[non_exhaustive]pub struct FastLaunchLaunchTemplateSpecification { /* private fields */ }
Expand description
Identifies the launch template that the associated Windows AMI uses for launching an instance when faster launching is enabled.
You can specify either the launchTemplateName
or the launchTemplateId
, but not both.
Implementations
sourceimpl FastLaunchLaunchTemplateSpecification
impl FastLaunchLaunchTemplateSpecification
sourcepub fn launch_template_id(&self) -> Option<&str>
pub fn launch_template_id(&self) -> Option<&str>
The ID of the launch template to use for faster launching for a Windows AMI.
sourcepub fn launch_template_name(&self) -> Option<&str>
pub fn launch_template_name(&self) -> Option<&str>
The name of the launch template to use for faster launching for a Windows AMI.
sourcepub fn launch_template_version(&self) -> Option<&str>
pub fn launch_template_version(&self) -> Option<&str>
The version of the launch template to use for faster launching for a Windows AMI.
sourceimpl FastLaunchLaunchTemplateSpecification
impl FastLaunchLaunchTemplateSpecification
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FastLaunchLaunchTemplateSpecification
.
Trait Implementations
sourceimpl Clone for FastLaunchLaunchTemplateSpecification
impl Clone for FastLaunchLaunchTemplateSpecification
sourcefn clone(&self) -> FastLaunchLaunchTemplateSpecification
fn clone(&self) -> FastLaunchLaunchTemplateSpecification
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<FastLaunchLaunchTemplateSpecification> for FastLaunchLaunchTemplateSpecification
impl PartialEq<FastLaunchLaunchTemplateSpecification> for FastLaunchLaunchTemplateSpecification
sourcefn eq(&self, other: &FastLaunchLaunchTemplateSpecification) -> bool
fn eq(&self, other: &FastLaunchLaunchTemplateSpecification) -> bool
impl StructuralPartialEq for FastLaunchLaunchTemplateSpecification
Auto Trait Implementations
impl RefUnwindSafe for FastLaunchLaunchTemplateSpecification
impl Send for FastLaunchLaunchTemplateSpecification
impl Sync for FastLaunchLaunchTemplateSpecification
impl Unpin for FastLaunchLaunchTemplateSpecification
impl UnwindSafe for FastLaunchLaunchTemplateSpecification
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more