BotAliasReference
- class aws_cdk.interfaces.aws_lex.BotAliasReference(*, bot_alias_arn, bot_alias_id, bot_id)
Bases:
objectA 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.interfaces import aws_lex as interfaces_aws_lex bot_alias_reference = interfaces_aws_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.