AliasReference

class aws_cdk.aws_gamelift.AliasReference(*, alias_arn, alias_id)

Bases: object

A reference to a Alias resource.

Parameters:
  • alias_arn (str) – The ARN of the Alias resource.

  • alias_id (str) – The AliasId of the Alias resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_gamelift as gamelift

alias_reference = gamelift.AliasReference(
    alias_arn="aliasArn",
    alias_id="aliasId"
)

Attributes

alias_arn

The ARN of the Alias resource.

alias_id

The AliasId of the Alias resource.