LocationReference
- class aws_cdk.interfaces.aws_gamelift.LocationReference(*, location_arn, location_name)
Bases:
objectA reference to a Location resource.
- Parameters:
location_arn (
str) – The ARN of the Location resource.location_name (
str) – The LocationName of the Location resource.
- 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.interfaces import aws_gamelift as interfaces_aws_gamelift location_reference = interfaces_aws_gamelift.LocationReference( location_arn="locationArn", location_name="locationName" )
Attributes
- location_arn
The ARN of the Location resource.
- location_name
The LocationName of the Location resource.