[][src]Struct rusoto_lex_models::StartImportResponse

pub struct StartImportResponse {
    pub created_date: Option<f64>,
    pub import_id: Option<String>,
    pub import_status: Option<String>,
    pub merge_strategy: Option<String>,
    pub name: Option<String>,
    pub resource_type: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Fields

created_date: Option<f64>

A timestamp for the date and time that the import job was requested.

import_id: Option<String>

The identifier for the specific import job.

import_status: Option<String>

The status of the import job. If the status is FAILED, you can get the reason for the failure using the GetImport operation.

merge_strategy: Option<String>

The action to take when there is a merge conflict.

name: Option<String>

The name given to the import job.

resource_type: Option<String>

The type of resource to import.

tags: Option<Vec<Tag>>

A list of tags added to the imported bot.

Trait Implementations

impl Clone for StartImportResponse[src]

impl Debug for StartImportResponse[src]

impl Default for StartImportResponse[src]

impl<'de> Deserialize<'de> for StartImportResponse[src]

impl PartialEq<StartImportResponse> for StartImportResponse[src]

impl StructuralPartialEq for StartImportResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.