Class: Aws::GameLift::Types::LaunchTemplateSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::LaunchTemplateSpecification
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
When making an API call, you may pass LaunchTemplateSpecification data as a hash:
{
launch_template_id: "LaunchTemplateId",
launch_template_name: "LaunchTemplateName",
version: "LaunchTemplateVersion",
}
This data type is used with the Amazon GameLift FleetIQ and game server groups.
An EC2 launch template that contains configuration settings and game server code to be deployed to all instances in a game server group. The launch template is specified when creating a new game server group with CreateGameServerGroup.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#launch_template_id ⇒ String
A unique identifier for an existing EC2 launch template.
-
#launch_template_name ⇒ String
A readable identifier for an existing EC2 launch template.
-
#version ⇒ String
The version of the EC2 launch template to use.
Instance Attribute Details
#launch_template_id ⇒ String
A unique identifier for an existing EC2 launch template.
5708 5709 5710 5711 5712 5713 5714 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 5708 class LaunchTemplateSpecification < Struct.new( :launch_template_id, :launch_template_name, :version) SENSITIVE = [] include Aws::Structure end |
#launch_template_name ⇒ String
A readable identifier for an existing EC2 launch template.
5708 5709 5710 5711 5712 5713 5714 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 5708 class LaunchTemplateSpecification < Struct.new( :launch_template_id, :launch_template_name, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The version of the EC2 launch template to use. If no version is specified, the default version will be used. With Amazon EC2, you can specify a default version for a launch template. If none is set, the default is the first version created.
5708 5709 5710 5711 5712 5713 5714 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 5708 class LaunchTemplateSpecification < Struct.new( :launch_template_id, :launch_template_name, :version) SENSITIVE = [] include Aws::Structure end |