If you are using Amazon Lex V2, refer to the Amazon Lex V2 guide instead.
If you are using Amazon Lex V1, we recommend upgrading your bots to Amazon Lex V2. We are no longer adding new features to V1 and strongly recommend using V2 for all new bots.
Step 3: Publish the Bot (AWS CLI)
After you have published all of the slot types and intents that are used by your bot, you can publish the bot.
Update the OrderFlowersBot
bot to use the OrderFlowers
intent that you updated in the previous step. Then, publish a new version of the
OrderFlowersBot
bot.
Note
The following AWS CLI example is formatted for Unix, Linux, and macOS. For
Windows, change "\$LATEST"
to $LATEST
and replace the
backslash (\) continuation character at the end of each line with a caret
(^).
To publish a version of a bot (AWS CLI)
-
In the AWS CLI, get the
$LATEST
version of theOrderFlowersBot
bot and save it to a file:aws lex-models get-bot \ --region
region
\ --name OrderFlowersBot \ --version-or-alias "\$LATEST" > OrderFlowersBot_V4.json -
In a text editor, open the
OrderFlowersBot_V4.json
file. Delete thecreatedDate
,lastUpdatedDate
,status
andversion
fields. Find theOrderFlowers
intent and change the version to the version number that you recorded in the previous step. The following fragment ofOrderFlowersBot_V4.json
shows the location of the change."intents": [ { "intentVersion": "
version
", "intentName": "OrderFlowers" } -
In the AWS CLI, save the new revision of the bot. Make note of the version number returned by the call to
put-bot
.aws lex-models put-bot \ --name OrderFlowersBot \ --cli-input-json file://OrderFlowersBot_V4.json
-
Get the checksum of the latest revision of the bot. Use the version number returned in step 3.
aws lex-models get-bot \ --region
region
\ --version-or-aliasversion
\ --name OrderFlowersBot > OrderFlowersBot_V4a.jsonThe following fragment of the response shows the checksum of the bot. Record this for the next step.
"name": "OrderFlowersBot", "locale": "en-US", "checksum": "
checksum
", -
Publish a new version of the bot:
aws lex-models create-bot-version \ --region
region
\ --name OrderFlowersBot \ --checksum "checksum
"The following fragment of the response shows the new version of the bot.
"checksum": "
checksum
", "abortStatement": { ... }, "version": "1", "lastUpdatedDate":timestamp
,
Next Step
Exercise 5: Create an Alias (AWS CLI)