#[non_exhaustive]pub struct CreateExportOutput { /* private fields */ }Implementations§
source§impl CreateExportOutput
impl CreateExportOutput
sourcepub fn export_id(&self) -> Option<&str>
pub fn export_id(&self) -> Option<&str>
An identifier for a specific request to create an export.
sourcepub fn resource_specification(&self) -> Option<&ExportResourceSpecification>
pub fn resource_specification(&self) -> Option<&ExportResourceSpecification>
A description of the type of resource that was exported, either a bot or a bot locale.
sourcepub fn file_format(&self) -> Option<&ImportExportFileFormat>
pub fn file_format(&self) -> Option<&ImportExportFileFormat>
The file format used for the bot or bot locale definition files.
sourcepub fn export_status(&self) -> Option<&ExportStatus>
pub fn export_status(&self) -> Option<&ExportStatus>
The status of the export. When the status is Completed, you can use the DescribeExport operation to get the pre-signed S3 URL link to your exported bot or bot locale.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The date and time that the request to export a bot was created.
source§impl CreateExportOutput
impl CreateExportOutput
sourcepub fn builder() -> CreateExportOutputBuilder
pub fn builder() -> CreateExportOutputBuilder
Creates a new builder-style object to manufacture CreateExportOutput.
Trait Implementations§
source§impl Clone for CreateExportOutput
impl Clone for CreateExportOutput
source§fn clone(&self) -> CreateExportOutput
fn clone(&self) -> CreateExportOutput
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 CreateExportOutput
impl Debug for CreateExportOutput
source§impl PartialEq<CreateExportOutput> for CreateExportOutput
impl PartialEq<CreateExportOutput> for CreateExportOutput
source§fn eq(&self, other: &CreateExportOutput) -> bool
fn eq(&self, other: &CreateExportOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateExportOutput
impl RequestId for CreateExportOutput
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 CreateExportOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateExportOutput
impl Send for CreateExportOutput
impl Sync for CreateExportOutput
impl Unpin for CreateExportOutput
impl UnwindSafe for CreateExportOutput
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