Struct aws_sdk_ec2::model::LaunchTemplateSpecification
source · [−]#[non_exhaustive]pub struct LaunchTemplateSpecification { /* private fields */ }
Expand description
The launch template to use. You must specify either the launch template ID or launch template name in the request, but not both.
Implementations
sourceimpl LaunchTemplateSpecification
impl LaunchTemplateSpecification
sourcepub fn launch_template_id(&self) -> Option<&str>
pub fn launch_template_id(&self) -> Option<&str>
The ID of the launch template.
You must specify the LaunchTemplateId
or the LaunchTemplateName
, but not both.
sourcepub fn launch_template_name(&self) -> Option<&str>
pub fn launch_template_name(&self) -> Option<&str>
The name of the launch template.
You must specify the LaunchTemplateName
or the LaunchTemplateId
, but not both.
sourcepub fn version(&self) -> Option<&str>
pub fn version(&self) -> Option<&str>
The launch template version number, $Latest
, or $Default
.
If the value is $Latest
, Amazon EC2 uses the latest version of the launch template.
If the value is $Default
, Amazon EC2 uses the default version of the launch template.
Default: The default version of the launch template.
sourceimpl LaunchTemplateSpecification
impl LaunchTemplateSpecification
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LaunchTemplateSpecification
.
Trait Implementations
sourceimpl Clone for LaunchTemplateSpecification
impl Clone for LaunchTemplateSpecification
sourcefn clone(&self) -> LaunchTemplateSpecification
fn clone(&self) -> LaunchTemplateSpecification
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 Debug for LaunchTemplateSpecification
impl Debug for LaunchTemplateSpecification
sourceimpl PartialEq<LaunchTemplateSpecification> for LaunchTemplateSpecification
impl PartialEq<LaunchTemplateSpecification> for LaunchTemplateSpecification
sourcefn eq(&self, other: &LaunchTemplateSpecification) -> bool
fn eq(&self, other: &LaunchTemplateSpecification) -> bool
impl StructuralPartialEq for LaunchTemplateSpecification
Auto Trait Implementations
impl RefUnwindSafe for LaunchTemplateSpecification
impl Send for LaunchTemplateSpecification
impl Sync for LaunchTemplateSpecification
impl Unpin for LaunchTemplateSpecification
impl UnwindSafe for LaunchTemplateSpecification
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