interface AliasReference
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.GameLift.AliasReference | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#AliasReference | 
|  Java | software.amazon.awscdk.services.gamelift.AliasReference | 
|  Python | aws_cdk.aws_gamelift.AliasReference | 
|  TypeScript | aws-cdk-lib»aws_gamelift»AliasReference | 
A reference to a Alias 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 aliasReference: gamelift.AliasReference = {
  aliasArn: 'aliasArn',
  aliasId: 'aliasId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| alias | string | The ARN of the Alias resource. | 
| alias | string | The AliasId of the Alias resource. | 
aliasArn
Type:
string
The ARN of the Alias resource.
aliasId
Type:
string
The AliasId of the Alias resource.
