Show / Hide Table of Contents

Interface ICfnGameSessionQueueProps

Properties for defining a CfnGameSessionQueue.

Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnGameSessionQueueProps
Syntax (vb)
Public Interface ICfnGameSessionQueueProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.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 cfnGameSessionQueueProps = new CfnGameSessionQueueProps {
                 Name = "name",

                 // the properties below are optional
                 CustomEventData = "customEventData",
                 Destinations = new [] { new DestinationProperty {
                     DestinationArn = "destinationArn"
                 } },
                 FilterConfiguration = new FilterConfigurationProperty {
                     AllowedLocations = new [] { "allowedLocations" }
                 },
                 NotificationTarget = "notificationTarget",
                 PlayerLatencyPolicies = new [] { new PlayerLatencyPolicyProperty {
                     MaximumIndividualPlayerLatencyMilliseconds = 123,
                     PolicyDurationSeconds = 123
                 } },
                 PriorityConfiguration = new PriorityConfigurationProperty {
                     LocationOrder = new [] { "locationOrder" },
                     PriorityOrder = new [] { "priorityOrder" }
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 TimeoutInSeconds = 123
             };

Synopsis

Properties

CustomEventData

Information to be added to all events that are related to this game session queue.

Destinations

A list of fleets and/or fleet aliases that can be used to fulfill game session placement requests in the queue.

FilterConfiguration

A list of locations where a queue is allowed to place new game sessions.

Name

A descriptive label that is associated with game session queue.

NotificationTarget

An SNS topic ARN that is set up to receive game session placement notifications.

PlayerLatencyPolicies

A set of policies that enforce a sliding cap on player latency when processing game sessions placement requests.

PriorityConfiguration

Custom settings to use when prioritizing destinations and locations for game session placements.

Tags

A list of labels to assign to the new game session queue resource.

TimeoutInSeconds

The maximum time, in seconds, that a new game session placement request remains in the queue.

Properties

CustomEventData

Information to be added to all events that are related to this game session queue.

string? CustomEventData { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-customeventdata

Destinations

A list of fleets and/or fleet aliases that can be used to fulfill game session placement requests in the queue.

object? Destinations { get; }
Property Value

object

Remarks

Destinations are identified by either a fleet ARN or a fleet alias ARN, and are listed in order of placement preference.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-destinations

Type union: either IResolvable or (either IResolvable or CfnGameSessionQueue.IDestinationProperty)[]

FilterConfiguration

A list of locations where a queue is allowed to place new game sessions.

object? FilterConfiguration { get; }
Property Value

object

Remarks

Locations are specified in the form of AWS Region codes, such as us-west-2 . If this parameter is not set, game sessions can be placed in any queue location.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-filterconfiguration

Type union: either IResolvable or CfnGameSessionQueue.IFilterConfigurationProperty

Name

A descriptive label that is associated with game session queue.

string Name { get; }
Property Value

string

Remarks

Queue names must be unique within each Region.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-name

NotificationTarget

An SNS topic ARN that is set up to receive game session placement notifications.

string? NotificationTarget { get; }
Property Value

string

Remarks

See Setting up notifications for game session placement .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-notificationtarget

PlayerLatencyPolicies

A set of policies that enforce a sliding cap on player latency when processing game sessions placement requests.

object? PlayerLatencyPolicies { get; }
Property Value

object

Remarks

Use multiple policies to gradually relax the cap over time if Amazon GameLift Servers can't make a placement. Policies are evaluated in order starting with the lowest maximum latency value.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-playerlatencypolicies

Type union: either IResolvable or (either IResolvable or CfnGameSessionQueue.IPlayerLatencyPolicyProperty)[]

PriorityConfiguration

Custom settings to use when prioritizing destinations and locations for game session placements.

object? PriorityConfiguration { get; }
Property Value

object

Remarks

This configuration replaces the FleetIQ default prioritization process. Priority types that are not explicitly named will be automatically applied at the end of the prioritization process.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-priorityconfiguration

Type union: either IResolvable or CfnGameSessionQueue.IPriorityConfigurationProperty

Tags

A list of labels to assign to the new game session queue resource.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

Tags are developer-defined key-value pairs. Tagging AWS resources are useful for resource management, access management and cost allocation. For more information, see Tagging AWS Resources in the AWS General Reference . Once the resource is created, you can use TagResource, UntagResource, and ListTagsForResource to add, remove, and view tags. The maximum tag limit may be lower than stated. See the AWS General Reference for actual tagging limits.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-tags

TimeoutInSeconds

The maximum time, in seconds, that a new game session placement request remains in the queue.

double? TimeoutInSeconds { get; }
Property Value

double?

Remarks

When a request exceeds this time, the game session placement changes to a TIMED_OUT status. If you don't specify a request timeout, the queue uses a default value.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html#cfn-gamelift-gamesessionqueue-timeoutinseconds

Back to top Generated by DocFX