Show / Hide Table of Contents

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 CfnGameServerGroup.ILaunchTemplateProperty
Syntax (vb)
Public Interface CfnGameServerGroup.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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-gameservergroup-launchtemplate.html

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.

string? LaunchTemplateId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-gameservergroup-launchtemplate.html#cfn-gamelift-gameservergroup-launchtemplate-launchtemplateid

LaunchTemplateName

A readable identifier for an existing Amazon EC2 launch template.

string? LaunchTemplateName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-gameservergroup-launchtemplate.html#cfn-gamelift-gameservergroup-launchtemplate-launchtemplatename

Version

The version of the Amazon EC2 launch template to use.

string? Version { get; }
Property Value

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-gameservergroup-launchtemplate.html#cfn-gamelift-gameservergroup-launchtemplate-version

Back to top Generated by DocFX