Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Tagging Resources (AWS CLI) - Amazon Lex V1

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.

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.

Tagging Resources (AWS CLI)

You can use the AWS CLI to manage tags on a bot, a bot alias, or a bot channel resource. You can add tags when you create a bot or a bot alias, or you can add, modify, or remove tags from a bot, a bot alias, or a bot channel.

All of the examples are formatted for Linux and macOS. To use the command in Windows, replace the Linux continuation character (\) with a caret (^).

To add a tag when you create a bot
  • The following abbreviated put-bot AWS CLI command shows the parameters that you must use to add a tag when you create a bot. To actually create a bot, you must supply other parameters. For more information, see Step 4: Getting Started (AWS CLI).

    aws lex-models put-bot \ --tags '[{"key": "key1", "value": "value1"}, \ {"key": "key2", "value": "value2"}]'
To add a tag when you create a bot alias
  • The following abbreviated put-bot-alias AWS CLI command shows the parameters that you must use to add a tag when you create a bot alias. To actually create a bot alias, you must supply other parameters. For more information, see Exercise 5: Create an Alias (AWS CLI).

    aws lex-models put-bot \ --tags '[{"key": "key1", "value": "value1"}, \ {"key": "key2", "value": "value2"}]"
To list tags on a resource
  • Use the list-tags-for-resource AWS CLI command to show the resources associated with a bot, bot alias, bot channel.

    aws lex-models list-tags-for-resource \ --resource-arn bot, bot alias, or bot channel ARN
To add or modify tags on a resource
  • Use the tag-resource AWS CLI command to add or modify a bot, bot alias, or bot channel.

    aws lex-models tag-resource \ --resource-arn bot, bot alias, or bot channel ARN \ --tags '[{"key": "key1", "value": "value1"}, \ {"key": "key2", "value": "value2"}]'
To remove tags from a resource
  • Use the untag-resource AWS CLI command to remove tags from a bot, bot alias, or bot channel.

    aws lex-models untag-resource \ --resource-arn bot, bot alias, or bot channel ARN \ --tag-keys '["key1", "key2"]'
PrivacySite termsCookie preferences
© 2025, Amazon Web Services, Inc. or its affiliates. All rights reserved.