Struct aws_sdk_dynamodb::types::ExportSummary
source · #[non_exhaustive]pub struct ExportSummary {
pub export_arn: Option<String>,
pub export_status: Option<ExportStatus>,
pub export_type: Option<ExportType>,
}
Expand description
Summary information about an export task.
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_arn: Option<String>
The Amazon Resource Name (ARN) of the export.
export_status: Option<ExportStatus>
Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.
export_type: Option<ExportType>
Choice of whether to execute as a full export or incremental export. Valid values are FULL_EXPORT
or INCREMENTAL_EXPORT
. If INCREMENTAL_EXPORT
is provided, the IncrementalExportSpecification
must also be used.
Implementations§
source§impl ExportSummary
impl ExportSummary
sourcepub fn export_arn(&self) -> Option<&str>
pub fn export_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the export.
sourcepub fn export_status(&self) -> Option<&ExportStatus>
pub fn export_status(&self) -> Option<&ExportStatus>
Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.
sourcepub fn export_type(&self) -> Option<&ExportType>
pub fn export_type(&self) -> Option<&ExportType>
Choice of whether to execute as a full export or incremental export. Valid values are FULL_EXPORT
or INCREMENTAL_EXPORT
. If INCREMENTAL_EXPORT
is provided, the IncrementalExportSpecification
must also be used.
source§impl ExportSummary
impl ExportSummary
sourcepub fn builder() -> ExportSummaryBuilder
pub fn builder() -> ExportSummaryBuilder
Creates a new builder-style object to manufacture ExportSummary
.
Trait Implementations§
source§impl Clone for ExportSummary
impl Clone for ExportSummary
source§fn clone(&self) -> ExportSummary
fn clone(&self) -> ExportSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ExportSummary
impl Debug for ExportSummary
source§impl PartialEq for ExportSummary
impl PartialEq for ExportSummary
source§fn eq(&self, other: &ExportSummary) -> bool
fn eq(&self, other: &ExportSummary) -> bool
self
and other
values to be equal, and is used
by ==
.