interface CfnAliasMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Mixins.CfnAliasMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/mixins#CfnAliasMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.mixins.CfnAliasMixinProps |
Python | aws_cdk.mixins_preview.aws_gamelift.mixins.CfnAliasMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_gamelift » mixins » CfnAliasMixinProps |
Properties for CfnAliasPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as gamelift_mixins } from '@aws-cdk/mixins-preview/aws-gamelift';
const cfnAliasMixinProps: gamelift_mixins.CfnAliasMixinProps = {
description: 'description',
name: 'name',
routingStrategy: {
fleetId: 'fleetId',
message: 'message',
type: 'type',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A human-readable description of the alias. |
| name? | string | A descriptive label that is associated with an alias. |
| routing | IResolvable | Routing | The routing configuration, including routing type and fleet target, for the alias. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
A human-readable description of the alias.
name?
Type:
string
(optional)
A descriptive label that is associated with an alias.
Alias names do not need to be unique.
routingStrategy?
Type:
IResolvable | Routing
(optional)
The routing configuration, including routing type and fleet target, for the alias.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript