BotAliasReference

class aws_cdk.aws_lex.BotAliasReference(*, bot_alias_arn, bot_alias_id, bot_id)

Bases: object

A reference to a BotAlias resource.

Parameters:
  • bot_alias_arn (str) – The ARN of the BotAlias resource.

  • bot_alias_id (str) – The BotAliasId of the BotAlias resource.

  • bot_id (str) – The BotId of the BotAlias 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_lex as lex

bot_alias_reference = lex.BotAliasReference(
    bot_alias_arn="botAliasArn",
    bot_alias_id="botAliasId",
    bot_id="botId"
)

Attributes

bot_alias_arn

The ARN of the BotAlias resource.

bot_alias_id

The BotAliasId of the BotAlias resource.

bot_id

The BotId of the BotAlias resource.