Class: Aws::EC2::Types::FleetLaunchTemplateSpecificationRequest

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 FleetLaunchTemplateSpecificationRequest data as a hash:

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

The launch template to use. You must specify either the launch template ID or launch template name in the request.

Instance Attribute Summary collapse

Instance Attribute Details

#launch_template_idString

The ID of the launch template.

Returns:

  • (String)


19637
19638
19639
19640
19641
19642
# File 'lib/aws-sdk-ec2/types.rb', line 19637

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

#launch_template_nameString

The name of the launch template.

Returns:

  • (String)


19637
19638
19639
19640
19641
19642
# File 'lib/aws-sdk-ec2/types.rb', line 19637

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

#versionString

The version number of the launch template.

Returns:

  • (String)


19637
19638
19639
19640
19641
19642
# File 'lib/aws-sdk-ec2/types.rb', line 19637

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