Struct aws_sdk_ec2::types::LaunchTemplateSpecification
source · #[non_exhaustive]pub struct LaunchTemplateSpecification {
pub launch_template_id: Option<String>,
pub launch_template_name: Option<String>,
pub version: Option<String>,
}
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.launch_template_id: Option<String>
The ID of the launch template.
You must specify the LaunchTemplateId
or the LaunchTemplateName
, but not both.
launch_template_name: Option<String>
The name of the launch template.
You must specify the LaunchTemplateName
or the LaunchTemplateId
, but not both.
version: Option<String>
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.
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() -> LaunchTemplateSpecificationBuilder
pub fn builder() -> LaunchTemplateSpecificationBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self
and other
values to be equal, and is used
by ==
.