Struct rusoto_lex_models::BotAliasMetadata[][src]

pub struct BotAliasMetadata {
    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>,
}

Provides information about a bot alias.

Fields

The name of the bot to which the alias points.

The version of the Amazon Lex bot to which the alias points.

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 last updated date are the same.

The name of the bot alias.

Trait Implementations

impl Default for BotAliasMetadata
[src]

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

impl Debug for BotAliasMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for BotAliasMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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