BotReference

class aws_cdk.aws_lex.BotReference(*, bot_arn, bot_id)

Bases: object

A reference to a Bot resource.

Parameters:
  • bot_arn (str) – The ARN of the Bot resource.

  • bot_id (str) – The Id of the Bot 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_reference = lex.BotReference(
    bot_arn="botArn",
    bot_id="botId"
)

Attributes

bot_arn

The ARN of the Bot resource.

bot_id

The Id of the Bot resource.