Struct rusoto_lex_models::CreateIntentVersionRequest[][src]

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

Fields

Checksum of the $LATEST version of the intent that should be used to create the new version. If you specify a checksum and the $LATEST version of the intent has a different checksum, Amazon Lex returns a PreconditionFailedException exception and doesn't publish a new version. If you don't specify a checksum, Amazon Lex publishes the $LATEST version.

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

Trait Implementations

impl Default for CreateIntentVersionRequest
[src]

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

impl Debug for CreateIntentVersionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateIntentVersionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateIntentVersionRequest
[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