Struct rusoto_lex_models::GetExportResponse[][src]

pub struct GetExportResponse {
    pub export_status: Option<String>,
    pub export_type: Option<String>,
    pub failure_reason: Option<String>,
    pub name: Option<String>,
    pub resource_type: Option<String>,
    pub url: Option<String>,
    pub version: Option<String>,
}

Fields

The status of the export.

  • IN_PROGRESS - The export is in progress.

  • READY - The export is complete.

  • FAILED - The export could not be completed.

The format of the exported data.

If status is FAILED, Amazon Lex provides the reason that it failed to export the resource.

The name of the bot being exported.

The type of the exported resource.

An S3 pre-signed URL that provides the location of the exported resource. The exported resource is a ZIP archive that contains the exported resource in JSON format. The structure of the archive may change. Your code should not rely on the archive structure.

The version of the bot being exported.

Trait Implementations

impl Default for GetExportResponse
[src]

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

impl Debug for GetExportResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetExportResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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