#[non_exhaustive]pub struct DescribeExportOutput { /* private fields */ }Implementations§
source§impl 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.
source§impl DescribeExportOutput
impl DescribeExportOutput
sourcepub fn builder() -> DescribeExportOutputBuilder
pub fn builder() -> DescribeExportOutputBuilder
Creates a new builder-style object to manufacture DescribeExportOutput.
Trait Implementations§
source§impl Clone for DescribeExportOutput
impl Clone for DescribeExportOutput
source§fn clone(&self) -> DescribeExportOutput
fn clone(&self) -> DescribeExportOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DescribeExportOutput
impl Debug for DescribeExportOutput
source§impl PartialEq<DescribeExportOutput> for DescribeExportOutput
impl PartialEq<DescribeExportOutput> for DescribeExportOutput
source§fn 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 ==.source§impl RequestId for DescribeExportOutput
impl RequestId for DescribeExportOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more