#[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.impl StructuralPartialEq for CreateExportOutput
Auto Trait Implementations§
impl Freeze for CreateExportOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more