CfnLocationMixinProps
- class aws_cdk.mixins_preview.aws_gamelift.mixins.CfnLocationMixinProps(*, location_name=None, tags=None)
Bases:
objectProperties for CfnLocationPropsMixin.
- Parameters:
location_name (
Optional[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.mixins_preview.aws_gamelift import mixins as gamelift_mixins cfn_location_mixin_props = gamelift_mixins.CfnLocationMixinProps( location_name="locationName", 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 .