Class: Aws::EC2::Types::FleetLaunchTemplateSpecification

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass FleetLaunchTemplateSpecification data as a hash:

{
  launch_template_id: "String",
  launch_template_name: "LaunchTemplateName",
  version: "String",
}

Describes a launch template.

Instance Attribute Summary collapse

Instance Attribute Details

#launch_template_idString

The ID of the launch template. You must specify either a template ID or a template name.

Returns:

  • (String)


19465
19466
19467
19468
19469
19470
# File 'lib/aws-sdk-ec2/types.rb', line 19465

class FleetLaunchTemplateSpecification < Struct.new(
  :launch_template_id,
  :launch_template_name,
  :version)
  include Aws::Structure
end

#launch_template_nameString

The name of the launch template. You must specify either a template name or a template ID.

Returns:

  • (String)


19465
19466
19467
19468
19469
19470
# File 'lib/aws-sdk-ec2/types.rb', line 19465

class FleetLaunchTemplateSpecification < Struct.new(
  :launch_template_id,
  :launch_template_name,
  :version)
  include Aws::Structure
end

#versionString

The version number of the launch template. You must specify a version number.

Returns:

  • (String)


19465
19466
19467
19468
19469
19470
# File 'lib/aws-sdk-ec2/types.rb', line 19465

class FleetLaunchTemplateSpecification < Struct.new(
  :launch_template_id,
  :launch_template_name,
  :version)
  include Aws::Structure
end