CfnLocationProps
- class aws_cdk.aws_gamelift.CfnLocationProps(*, location_name, tags=None)
Bases:
object
Properties for defining a
CfnLocation
.- Parameters:
location_name (
str
) – A descriptive name for the custom location.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – 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 .
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-location.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_gamelift as gamelift cfn_location_props = gamelift.CfnLocationProps( location_name="locationName", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- location_name
A descriptive name for the custom location.
- tags
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 .