[][src]Struct rusoto_lex_models::PutBotAliasRequest

pub struct PutBotAliasRequest {
    pub bot_name: String,
    pub bot_version: String,
    pub checksum: Option<String>,
    pub conversation_logs: Option<ConversationLogsRequest>,
    pub description: Option<String>,
    pub name: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

bot_name: String

The name of the bot.

bot_version: String

The version of the bot.

checksum: Option<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: Option<ConversationLogsRequest>

Settings for conversation logs for the alias.

description: Option<String>

A description of the alias.

name: String

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

tags: Option<Vec<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.

Trait Implementations

impl Clone for PutBotAliasRequest[src]

impl Debug for PutBotAliasRequest[src]

impl Default for PutBotAliasRequest[src]

impl PartialEq<PutBotAliasRequest> for PutBotAliasRequest[src]

impl Serialize for PutBotAliasRequest[src]

impl StructuralPartialEq for PutBotAliasRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.