[][src]Struct rusoto_lex_models::CreateBotVersionRequest

pub struct CreateBotVersionRequest {
    pub checksum: Option<String>,
    pub name: String,
}

Fields

checksum: Option<String>

Identifies a specific revision of the $LATEST version of the bot. If you specify a checksum and the $LATEST version of the bot has a different checksum, a PreconditionFailedException exception is returned and Amazon Lex doesn't publish a new version. If you don't specify a checksum, Amazon Lex publishes the $LATEST version.

name: String

The name of the bot that you want to create a new version of. The name is case sensitive.

Trait Implementations

impl Clone for CreateBotVersionRequest[src]

impl Debug for CreateBotVersionRequest[src]

impl Default for CreateBotVersionRequest[src]

impl PartialEq<CreateBotVersionRequest> for CreateBotVersionRequest[src]

impl Serialize for CreateBotVersionRequest[src]

impl StructuralPartialEq for CreateBotVersionRequest[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> 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.