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