Struct aws_sdk_batch::model::LaunchTemplateSpecification [−][src]
#[non_exhaustive]pub struct LaunchTemplateSpecification {
pub launch_template_id: Option<String>,
pub launch_template_name: Option<String>,
pub version: Option<String>,
}
Expand description
An object representing a launch template associated with a compute resource. You must specify either the launch template ID or launch template name in the request, but not both.
If security groups are specified using both the securityGroupIds
parameter of
CreateComputeEnvironment
and the launch template, the values in the securityGroupIds
parameter of CreateComputeEnvironment
will be used.
This object isn't applicable to jobs that are running on Fargate resources.
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.
launch_template_name: Option<String>
The name of the launch template.
version: Option<String>
The version number of the launch template, $Latest
, or $Default
.
If the value is $Latest
, the latest version of the launch template is used. If the value is
$Default
, the default version of the launch template is used.
After the compute environment is created, the launch template version that's used isn't changed, even if the
$Default
or $Latest
version for the launch template is updated. To use a new launch
template version, create a new compute environment, add the new compute environment to the existing job queue,
remove the old compute environment from the job queue, and delete the old compute environment.
Default: $Default
.
Implementations
Creates a new builder-style object to manufacture LaunchTemplateSpecification
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more