#[non_exhaustive]pub struct CreateExportOutput {
pub export_id: Option<String>,
pub resource_specification: Option<ExportResourceSpecification>,
pub file_format: Option<ImportExportFileFormat>,
pub export_status: Option<ExportStatus>,
pub creation_date_time: Option<DateTime>,
/* private fields */
}
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>
An identifier for a specific request to create an export.
resource_specification: Option<ExportResourceSpecification>
A description of the type of resource that was exported, either a bot or a bot locale.
file_format: Option<ImportExportFileFormat>
The file format used for the bot or bot locale definition files.
export_status: 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.
creation_date_time: Option<DateTime>
The date and time that the request to export a bot was created.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateExportOutput
impl Debug for CreateExportOutput
source§impl PartialEq for CreateExportOutput
impl PartialEq for CreateExportOutput
source§fn eq(&self, other: &CreateExportOutput) -> bool
fn eq(&self, other: &CreateExportOutput) -> bool
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>
None
if the service could not be reached.