Show / Hide Table of Contents

Interface CfnAlias.IRoutingStrategyProperty

The routing configuration for a fleet alias.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.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 routingStrategyProperty = new RoutingStrategyProperty {
                 Type = "type",

                 // the properties below are optional
                 FleetId = "fleetId",
                 Message = "message"
             };

Synopsis

Properties

FleetId

A unique identifier for a fleet that the alias points to.

Message

The message text to be used with a terminal routing strategy.

Type

A type of routing strategy.

Properties

FleetId

A unique identifier for a fleet that the alias points to.

string? FleetId { get; }
Property Value

string

Remarks

If you specify SIMPLE for the Type property, you must specify this property.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid

Message

The message text to be used with a terminal routing strategy.

string? Message { get; }
Property Value

string

Remarks

If you specify TERMINAL for the Type property, you must specify this property.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message

Type

A type of routing strategy.

string Type { get; }
Property Value

string

Remarks

Possible routing types include the following:

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type

    Back to top Generated by DocFX