Struct rusoto_lex_models::PutBotAliasRequest[][src]

pub struct PutBotAliasRequest {
    pub bot_name: String,
    pub bot_version: String,
    pub checksum: Option<String>,
    pub description: Option<String>,
    pub name: String,
}

Fields

The name of the bot.

The version of the bot.

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.

A description of the alias.

The name of the alias. The name is not case sensitive.

Trait Implementations

impl Default for PutBotAliasRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for PutBotAliasRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for PutBotAliasRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PutBotAliasRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations