Struct aws_sdk_datasync::types::ReportOverrides
source · #[non_exhaustive]pub struct ReportOverrides {
pub transferred: Option<ReportOverride>,
pub verified: Option<ReportOverride>,
pub deleted: Option<ReportOverride>,
pub skipped: Option<ReportOverride>,
}
Expand description
The level of detail included in each aspect of your DataSync task report.
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.transferred: Option<ReportOverride>
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to transfer.
verified: Option<ReportOverride>
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to verify at the end of your transfer.
deleted: Option<ReportOverride>
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to delete in your destination location. This only applies if you configure your task to delete data in the destination that isn't in the source.
skipped: Option<ReportOverride>
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to skip during your transfer.
Implementations§
source§impl ReportOverrides
impl ReportOverrides
sourcepub fn transferred(&self) -> Option<&ReportOverride>
pub fn transferred(&self) -> Option<&ReportOverride>
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to transfer.
sourcepub fn verified(&self) -> Option<&ReportOverride>
pub fn verified(&self) -> Option<&ReportOverride>
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to verify at the end of your transfer.
sourcepub fn deleted(&self) -> Option<&ReportOverride>
pub fn deleted(&self) -> Option<&ReportOverride>
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to delete in your destination location. This only applies if you configure your task to delete data in the destination that isn't in the source.
sourcepub fn skipped(&self) -> Option<&ReportOverride>
pub fn skipped(&self) -> Option<&ReportOverride>
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to skip during your transfer.
source§impl ReportOverrides
impl ReportOverrides
sourcepub fn builder() -> ReportOverridesBuilder
pub fn builder() -> ReportOverridesBuilder
Creates a new builder-style object to manufacture ReportOverrides
.
Trait Implementations§
source§impl Clone for ReportOverrides
impl Clone for ReportOverrides
source§fn clone(&self) -> ReportOverrides
fn clone(&self) -> ReportOverrides
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ReportOverrides
impl Debug for ReportOverrides
source§impl PartialEq for ReportOverrides
impl PartialEq for ReportOverrides
source§fn eq(&self, other: &ReportOverrides) -> bool
fn eq(&self, other: &ReportOverrides) -> bool
self
and other
values to be equal, and is used
by ==
.