You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::LexModelBuildingService::Types::PutBotAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::PutBotAliasRequest
- Defined in:
- (unknown)
Overview
When passing PutBotAliasRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
name: "AliasName", # required
description: "Description",
bot_version: "Version", # required
bot_name: "BotName", # required
checksum: "String",
conversation_logs: {
log_settings: [ # required
{
log_type: "AUDIO", # required, accepts AUDIO, TEXT
destination: "CLOUDWATCH_LOGS", # required, accepts CLOUDWATCH_LOGS, S3
kms_key_arn: "KmsKeyArn",
resource_arn: "ResourceArn", # required
},
],
iam_role_arn: "IamRoleArn", # required
},
tags: [
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
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.
#bot_version ⇒ String
The version of the bot.
#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.
#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. The name is not case sensitive.
#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.