BotVersionReference

class aws_cdk.aws_lex.BotVersionReference(*, bot_id, bot_version)

Bases: object

A reference to a BotVersion resource.

Parameters:
  • bot_id (str) – The BotId of the BotVersion resource.

  • bot_version (str) – The BotVersion of the BotVersion 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_version_reference = lex.BotVersionReference(
    bot_id="botId",
    bot_version="botVersion"
)

Attributes

bot_id

The BotId of the BotVersion resource.

bot_version

The BotVersion of the BotVersion resource.