interface AliasAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.GameLift.Alpha.AliasAttributes |
![]() | github.com/aws/aws-cdk-go/awscdkgameliftalpha/v2#AliasAttributes |
![]() | software.amazon.awscdk.services.gamelift.alpha.AliasAttributes |
![]() | aws_cdk.aws_gamelift_alpha.AliasAttributes |
![]() | @aws-cdk/aws-gamelift-alpha » AliasAttributes |
A full specification of an alias that can be used to import it fluently into the CDK application.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as gamelift_alpha from '@aws-cdk/aws-gamelift-alpha';
const aliasAttributes: gamelift_alpha.AliasAttributes = {
aliasArn: 'aliasArn',
aliasId: 'aliasId',
};
Properties
Name | Type | Description |
---|---|---|
alias | string | The ARN of the alias. |
alias | string | The identifier of the alias. |
aliasArn?
Type:
string
(optional, default: derived from aliasId
.)
The ARN of the alias.
At least one of aliasArn
and aliasId
must be provided.
aliasId?
Type:
string
(optional, default: derived from aliasArn
.)
The identifier of the alias.
At least one of aliasId
and aliasArn
must be provided.