Struct aws_sdk_lexmodelsv2::output::DescribeExportOutput
source · [−]#[non_exhaustive]pub struct DescribeExportOutput {
pub export_id: Option<String>,
pub resource_specification: Option<ExportResourceSpecification>,
pub file_format: Option<ImportExportFileFormat>,
pub export_status: Option<ExportStatus>,
pub failure_reasons: Option<Vec<String>>,
pub download_url: Option<String>,
pub creation_date_time: Option<DateTime>,
pub last_updated_date_time: Option<DateTime>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.export_id: Option<String>The unique identifier of the described export.
resource_specification: Option<ExportResourceSpecification>The bot, bot ID, and optional locale ID of the exported bot or bot locale.
file_format: Option<ImportExportFileFormat>The file format used in the files that describe the resource.
export_status: Option<ExportStatus>The status of the export. When the status is Complete the export archive file is available for download.
failure_reasons: Option<Vec<String>>If the exportStatus is failed, contains one or more reasons why the export could not be completed.
download_url: Option<String>A pre-signed S3 URL that points to the bot or bot locale archive. The URL is only available for 5 minutes after calling the DescribeExport operation.
creation_date_time: Option<DateTime>The date and time that the export was created.
last_updated_date_time: Option<DateTime>The last date and time that the export was updated.
Implementations
sourceimpl DescribeExportOutput
impl DescribeExportOutput
sourcepub fn resource_specification(&self) -> Option<&ExportResourceSpecification>
pub fn resource_specification(&self) -> Option<&ExportResourceSpecification>
The bot, bot ID, and optional locale ID of the exported bot or bot locale.
sourcepub fn file_format(&self) -> Option<&ImportExportFileFormat>
pub fn file_format(&self) -> Option<&ImportExportFileFormat>
The file format used in the files that describe the resource.
sourcepub fn export_status(&self) -> Option<&ExportStatus>
pub fn export_status(&self) -> Option<&ExportStatus>
The status of the export. When the status is Complete the export archive file is available for download.
sourcepub fn failure_reasons(&self) -> Option<&[String]>
pub fn failure_reasons(&self) -> Option<&[String]>
If the exportStatus is failed, contains one or more reasons why the export could not be completed.
sourcepub fn download_url(&self) -> Option<&str>
pub fn download_url(&self) -> Option<&str>
A pre-signed S3 URL that points to the bot or bot locale archive. The URL is only available for 5 minutes after calling the DescribeExport operation.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The date and time that the export was created.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
The last date and time that the export was updated.
sourceimpl DescribeExportOutput
impl DescribeExportOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeExportOutput
Trait Implementations
sourceimpl Clone for DescribeExportOutput
impl Clone for DescribeExportOutput
sourcefn clone(&self) -> DescribeExportOutput
fn clone(&self) -> DescribeExportOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DescribeExportOutput
impl Debug for DescribeExportOutput
sourceimpl PartialEq<DescribeExportOutput> for DescribeExportOutput
impl PartialEq<DescribeExportOutput> for DescribeExportOutput
sourcefn eq(&self, other: &DescribeExportOutput) -> bool
fn eq(&self, other: &DescribeExportOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeExportOutput) -> bool
fn ne(&self, other: &DescribeExportOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for DescribeExportOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeExportOutput
impl Send for DescribeExportOutput
impl Sync for DescribeExportOutput
impl Unpin for DescribeExportOutput
impl UnwindSafe for DescribeExportOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more