LocationReference
- class aws_cdk.aws_gamelift.LocationReference(*, location_arn, location_name)
Bases:
object
A 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 import aws_gamelift as gamelift location_reference = 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.