interface LocationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GameLift.LocationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgamelift#LocationReference |
Java | software.amazon.awscdk.interfaces.gamelift.LocationReference |
Python | aws_cdk.interfaces.aws_gamelift.LocationReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_gamelift } from 'aws-cdk-lib/interfaces';
const locationReference: interfaces_aws_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