Struct rusoto_lex_models::CreateSlotTypeVersionResponse[][src]

pub struct CreateSlotTypeVersionResponse {
    pub checksum: Option<String>,
    pub created_date: Option<f64>,
    pub description: Option<String>,
    pub enumeration_values: Option<Vec<EnumerationValue>>,
    pub last_updated_date: Option<f64>,
    pub name: Option<String>,
    pub value_selection_strategy: Option<String>,
    pub version: Option<String>,
}

Fields

Checksum of the $LATEST version of the slot type.

The date that the slot type was created.

A description of the slot type.

A list of EnumerationValue objects that defines the values that the slot type can take.

The date that the slot type was updated. When you create a resource, the creation date and last update date are the same.

The name of the slot type.

The strategy that Amazon Lex uses to determine the value of the slot. For more information, see PutSlotType.

The version assigned to the new slot type version.

Trait Implementations

impl Default for CreateSlotTypeVersionResponse
[src]

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

impl Debug for CreateSlotTypeVersionResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateSlotTypeVersionResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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