Class: Aws::AutoScaling::Types::LaunchTemplateSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::LaunchTemplateSpecification
- Defined in:
- gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb
Overview
When making an API call, you may pass LaunchTemplateSpecification data as a hash:
{
launch_template_id: "XmlStringMaxLen255",
launch_template_name: "LaunchTemplateName",
version: "XmlStringMaxLen255",
}
Describes the launch template and the version of the launch template that Amazon EC2 Auto Scaling uses to launch Amazon EC2 instances. For more information about launch templates, see Launch templates in the Amazon EC2 Auto Scaling User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#launch_template_id ⇒ String
The ID of the launch template.
-
#launch_template_name ⇒ String
The name of the launch template.
-
#version ⇒ String
The version number,
$Latest
, or$Default
.
Instance Attribute Details
#launch_template_id ⇒ String
The ID of the launch template. To get the template ID, use the Amazon EC2 DescribeLaunchTemplates API operation. New launch templates can be created using the Amazon EC2 CreateLaunchTemplate API.
Conditional: You must specify either a LaunchTemplateId
or a
LaunchTemplateName
.
5062 5063 5064 5065 5066 5067 5068 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 5062 class LaunchTemplateSpecification < Struct.new( :launch_template_id, :launch_template_name, :version) SENSITIVE = [] include Aws::Structure end |
#launch_template_name ⇒ String
The name of the launch template. To get the template name, use the Amazon EC2 DescribeLaunchTemplates API operation. New launch templates can be created using the Amazon EC2 CreateLaunchTemplate API.
Conditional: You must specify either a LaunchTemplateId
or a
LaunchTemplateName
.
5062 5063 5064 5065 5066 5067 5068 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 5062 class LaunchTemplateSpecification < Struct.new( :launch_template_id, :launch_template_name, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The version number, $Latest
, or $Default
. To get the version
number, use the Amazon EC2 DescribeLaunchTemplateVersions API
operation. New launch template versions can be created using the
Amazon EC2 CreateLaunchTemplateVersion API. If the value is
$Latest
, Amazon EC2 Auto Scaling selects the latest version of the
launch template when launching instances. If the value is
$Default
, Amazon EC2 Auto Scaling selects the default version of
the launch template when launching instances. The default value is
$Default
.
5062 5063 5064 5065 5066 5067 5068 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 5062 class LaunchTemplateSpecification < Struct.new( :launch_template_id, :launch_template_name, :version) SENSITIVE = [] include Aws::Structure end |