Struct rusoto_lex_models::GetBotAliasResponse[][src]

pub struct GetBotAliasResponse {
    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.

Checksum of the bot alias.

The date that the bot alias was created.

A description of the bot 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 bot alias.

Trait Implementations

impl Default for GetBotAliasResponse
[src]

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

impl Debug for GetBotAliasResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetBotAliasResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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