@aws-cdk_aws-gamelift-alpha.AliasAttributes

interface AliasAttributes ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.GameLift.Alpha.AliasAttributes
Gogithub.com/aws/aws-cdk-go/awscdkgameliftalpha/v2#AliasAttributes
Javasoftware.amazon.awscdk.services.gamelift.alpha.AliasAttributes
Pythonaws_cdk.aws_gamelift_alpha.AliasAttributes
TypeScript (source)@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

NameTypeDescription
aliasArn?๐Ÿ”นstringThe ARN of the alias.
aliasId?๐Ÿ”นstringThe 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.