interface CfnLocationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Mixins.CfnLocationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/mixins#CfnLocationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.mixins.CfnLocationMixinProps |
Python | aws_cdk.mixins_preview.aws_gamelift.mixins.CfnLocationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_gamelift » mixins » CfnLocationMixinProps |
Properties for CfnLocationPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-location.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 cfnLocationMixinProps: gamelift_mixins.CfnLocationMixinProps = {
locationName: 'locationName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| location | string | A descriptive name for the custom location. |
| tags? | Cfn[] | A list of labels to assign to the new resource. |
locationName?
Type:
string
(optional)
A descriptive name for the custom location.
tags?
Type:
Cfn[]
(optional)
A list of labels to assign to the new resource.
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 Rareference .

.NET
Go
Java
Python
TypeScript