AliasAttributes
- class aws_cdk.aws_gamelift_alpha.AliasAttributes(*, alias_arn=None, alias_id=None)
Bases:
object(experimental) A full specification of an alias that can be used to import it fluently into the CDK application.
- Parameters:
alias_arn (
Optional[str]) – (experimental) The ARN of the alias. At least one ofaliasArnandaliasIdmust be provided. Default: derived fromaliasId.alias_id (
Optional[str]) – (experimental) The identifier of the alias. At least one ofaliasIdandaliasArnmust be provided. Default: derived fromaliasArn.
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_gamelift_alpha as gamelift_alpha alias_attributes = gamelift_alpha.AliasAttributes( alias_arn="aliasArn", alias_id="aliasId" )
Attributes
- alias_arn
(experimental) The ARN of the alias.
At least one of
aliasArnandaliasIdmust be provided.- Default:
derived from
aliasId.- Stability:
experimental
- alias_id
(experimental) The identifier of the alias.
At least one of
aliasIdandaliasArnmust be provided.- Default:
derived from
aliasArn.- Stability:
experimental