Interface CfnGameServerGroup.ILaunchTemplateProperty
This data type is used with the GameLift FleetIQ and game server groups..
Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ILaunchTemplateProperty
Syntax (vb)
Public Interface ILaunchTemplateProperty
Remarks
An Amazon 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 GameServerGroup
.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GameLift;
var launchTemplateProperty = new LaunchTemplateProperty {
LaunchTemplateId = "launchTemplateId",
LaunchTemplateName = "launchTemplateName",
Version = "version"
};
Synopsis
Properties
LaunchTemplateId | A unique identifier for an existing Amazon EC2 launch template. |
LaunchTemplateName | A readable identifier for an existing Amazon EC2 launch template. |
Version | The version of the Amazon EC2 launch template to use. |
Properties
LaunchTemplateId
A unique identifier for an existing Amazon EC2 launch template.
virtual string LaunchTemplateId { get; }
Property Value
System.String
Remarks
LaunchTemplateName
A readable identifier for an existing Amazon EC2 launch template.
virtual string LaunchTemplateName { get; }
Property Value
System.String
Remarks
Version
The version of the Amazon EC2 launch template to use.
virtual string Version { get; }
Property Value
System.String
Remarks
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.