interface CfnAliasProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.GameLift.CfnAliasProps |
Java | software.amazon.awscdk.services.gamelift.CfnAliasProps |
Python | aws_cdk.aws_gamelift.CfnAliasProps |
TypeScript | @aws-cdk/aws-gamelift » CfnAliasProps |
Properties for defining a CfnAlias
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as gamelift from '@aws-cdk/aws-gamelift';
const cfnAliasProps: gamelift.CfnAliasProps = {
name: 'name',
routingStrategy: {
type: 'type',
// the properties below are optional
fleetId: 'fleetId',
message: 'message',
},
// the properties below are optional
description: 'description',
};
Properties
Name | Type | Description |
---|---|---|
name | string | A descriptive label that is associated with an alias. |
routing | Routing | IResolvable | The routing configuration, including routing type and fleet target, for the alias. |
description? | string | A human-readable description of the alias. |
name
Type:
string
A descriptive label that is associated with an alias.
Alias names do not need to be unique.
routingStrategy
Type:
Routing
|
IResolvable
The routing configuration, including routing type and fleet target, for the alias.
description?
Type:
string
(optional)
A human-readable description of the alias.