#[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§
source§impl 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.
source§impl FastLaunchLaunchTemplateSpecification
impl FastLaunchLaunchTemplateSpecification
sourcepub fn builder() -> FastLaunchLaunchTemplateSpecificationBuilder
pub fn builder() -> FastLaunchLaunchTemplateSpecificationBuilder
Creates a new builder-style object to manufacture FastLaunchLaunchTemplateSpecification.
Trait Implementations§
source§impl Clone for FastLaunchLaunchTemplateSpecification
impl Clone for FastLaunchLaunchTemplateSpecification
source§fn clone(&self) -> FastLaunchLaunchTemplateSpecification
fn clone(&self) -> FastLaunchLaunchTemplateSpecification
Returns a copy 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 PartialEq<FastLaunchLaunchTemplateSpecification> for FastLaunchLaunchTemplateSpecification
impl PartialEq<FastLaunchLaunchTemplateSpecification> for FastLaunchLaunchTemplateSpecification
source§fn eq(&self, other: &FastLaunchLaunchTemplateSpecification) -> bool
fn eq(&self, other: &FastLaunchLaunchTemplateSpecification) -> bool
This method tests for
self and other values to be equal, and is used
by ==.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§
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