interface CfnLocationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GameLift.CfnLocationProps |
Java | software.amazon.awscdk.services.gamelift.CfnLocationProps |
Python | aws_cdk.aws_gamelift.CfnLocationProps |
TypeScript | @aws-cdk/aws-gamelift » CfnLocationProps |
Properties for defining a CfnLocation.
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 cfnLocationProps: gamelift.CfnLocationProps = {
locationName: 'locationName',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| location | string | The location's name. |
| tags? | Cfn[] | AWS::GameLift::Location.Tags. |
locationName
Type:
string
The location's name.
tags?
Type:
Cfn[]
(optional)
AWS::GameLift::Location.Tags.

.NET
Java
Python
TypeScript