Struct rusoto_lex_models::PutBotAliasResponse[][src]

pub struct PutBotAliasResponse {
    pub bot_name: Option<String>,
    pub bot_version: Option<String>,
    pub checksum: Option<String>,
    pub created_date: Option<f64>,
    pub description: Option<String>,
    pub last_updated_date: Option<f64>,
    pub name: Option<String>,
}

Fields

The name of the bot that the alias points to.

The version of the bot that the alias points to.

The checksum for the current version of the alias.

The date that the bot alias was created.

A description of the alias.

The date that the bot alias was updated. When you create a resource, the creation date and the last updated date are the same.

The name of the alias.

Trait Implementations

impl Default for PutBotAliasResponse
[src]

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

impl Debug for PutBotAliasResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for PutBotAliasResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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