interface LocationReference
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.GameLift.LocationReference | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#LocationReference | 
  Java | software.amazon.awscdk.services.gamelift.LocationReference | 
  Python | aws_cdk.aws_gamelift.LocationReference | 
  TypeScript  | aws-cdk-lib » aws_gamelift » LocationReference | 
A reference to a Location resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_gamelift as gamelift } from 'aws-cdk-lib';
const locationReference: gamelift.LocationReference = {
  locationArn: 'locationArn',
  locationName: 'locationName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| location | string | The ARN of the Location resource. | 
| location | string | The LocationName of the Location resource. | 
locationArn
Type:
string
The ARN of the Location resource.
locationName
Type:
string
The LocationName of the Location resource.

 .NET
 Go
 Java
 Python
 TypeScript