[][src]Struct rusoto_lex_models::CreateSlotTypeVersionRequest

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

Fields

checksum: Option<String>

Checksum for the $LATEST version of the slot type that you want to publish. If you specify a checksum and the $LATEST version of the slot type has a different checksum, Amazon Lex returns a PreconditionFailedException exception and doesn't publish the new version. If you don't specify a checksum, Amazon Lex publishes the $LATEST version.

name: String

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

Trait Implementations

impl Clone for CreateSlotTypeVersionRequest[src]

impl Debug for CreateSlotTypeVersionRequest[src]

impl Default for CreateSlotTypeVersionRequest[src]

impl PartialEq<CreateSlotTypeVersionRequest> for CreateSlotTypeVersionRequest[src]

impl Serialize for CreateSlotTypeVersionRequest[src]

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