AWS Fundamentals Logo
AWS Fundamentals
AWS::Lex::BotVersion

Lex BotVersion

Resource Type definition for bot versions, a numbered snapshot of your work that you can publish for use in different parts of your workflow, such as development, beta deployment, and production.

Properties

3 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
BotId
string
RequiredCreate-only
BotVersionLocaleSpecification
array
RequiredWrite-only
Description
string

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
BotVersionstring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Lex::BotVersion

Resources:
  MyResource:
    Type: AWS::Lex::BotVersion
    Properties:
      BotId: "my-botid"
      BotVersionLocaleSpecification: "value"
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

lex:CreateBotVersionlex:DescribeBotVersionlex:DescribeBotlex:DescribeBotLocalelex:BuildBotLocale

read

lex:DescribeBotVersion

delete

lex:DeleteBotVersionlex:DescribeBotVersion

list

lex:ListBotVersions

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceLex
Properties4
Required2
TaggingNot supported
Primary IDBotId

Supported Operations

CreateReadDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

BotId

Related Resources

External Links