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

.NET
Go
Java
Python
TypeScript