Class: Aws::LexModelBuildingService::Types::PutBotAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::PutBotAliasRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bot_name ⇒ String
The name of the bot.
-
#bot_version ⇒ String
The version of the bot.
-
#checksum ⇒ String
Identifies a specific revision of the ‘$LATEST` version.
-
#conversation_logs ⇒ Types::ConversationLogsRequest
Settings for conversation logs for the alias.
-
#description ⇒ String
A description of the alias.
-
#name ⇒ String
The name of the alias.
-
#tags ⇒ Array<Types::Tag>
A list of tags to add to the bot alias.
Instance Attribute Details
#bot_name ⇒ String
The name of the bot.
2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2915 class PutBotAliasRequest < Struct.new( :name, :description, :bot_version, :bot_name, :checksum, :conversation_logs, :tags) SENSITIVE = [] include Aws::Structure end |
#bot_version ⇒ String
The version of the bot.
2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2915 class PutBotAliasRequest < Struct.new( :name, :description, :bot_version, :bot_name, :checksum, :conversation_logs, :tags) SENSITIVE = [] include Aws::Structure end |
#checksum ⇒ String
Identifies a specific revision of the ‘$LATEST` version.
When you create a new bot alias, leave the ‘checksum` field blank. If you specify a checksum you get a `BadRequestException` exception.
When you want to update a bot alias, set the ‘checksum` field to the checksum of the most recent revision of the `$LATEST` version. If you don’t specify the ‘ checksum` field, or if the checksum does not match the `$LATEST` version, you get a `PreconditionFailedException` exception.
2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2915 class PutBotAliasRequest < Struct.new( :name, :description, :bot_version, :bot_name, :checksum, :conversation_logs, :tags) SENSITIVE = [] include Aws::Structure end |
#conversation_logs ⇒ Types::ConversationLogsRequest
Settings for conversation logs for the alias.
2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2915 class PutBotAliasRequest < Struct.new( :name, :description, :bot_version, :bot_name, :checksum, :conversation_logs, :tags) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the alias.
2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2915 class PutBotAliasRequest < Struct.new( :name, :description, :bot_version, :bot_name, :checksum, :conversation_logs, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the alias. The name is not case sensitive.
2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2915 class PutBotAliasRequest < Struct.new( :name, :description, :bot_version, :bot_name, :checksum, :conversation_logs, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags to add to the bot alias. You can only add tags when you create an alias, you can’t use the ‘PutBotAlias` operation to update the tags on a bot alias. To update tags, use the `TagResource` operation.
2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2915 class PutBotAliasRequest < Struct.new( :name, :description, :bot_version, :bot_name, :checksum, :conversation_logs, :tags) SENSITIVE = [] include Aws::Structure end |