Struct aws_sdk_ssm::types::ResourceDataSyncItem
source · #[non_exhaustive]pub struct ResourceDataSyncItem { /* private fields */ }
Expand description
Information about a resource data sync configuration, including its current status and last successful sync.
Implementations§
source§impl ResourceDataSyncItem
impl ResourceDataSyncItem
sourcepub fn sync_type(&self) -> Option<&str>
pub fn sync_type(&self) -> Option<&str>
The type of resource data sync. If SyncType
is SyncToDestination
, then the resource data sync synchronizes data to an S3 bucket. If the SyncType
is SyncFromSource
then the resource data sync synchronizes data from Organizations or from multiple Amazon Web Services Regions.
sourcepub fn sync_source(&self) -> Option<&ResourceDataSyncSourceWithState>
pub fn sync_source(&self) -> Option<&ResourceDataSyncSourceWithState>
Information about the source where the data was synchronized.
sourcepub fn s3_destination(&self) -> Option<&ResourceDataSyncS3Destination>
pub fn s3_destination(&self) -> Option<&ResourceDataSyncS3Destination>
Configuration information for the target S3 bucket.
sourcepub fn last_sync_time(&self) -> Option<&DateTime>
pub fn last_sync_time(&self) -> Option<&DateTime>
The last time the configuration attempted to sync (UTC).
sourcepub fn last_successful_sync_time(&self) -> Option<&DateTime>
pub fn last_successful_sync_time(&self) -> Option<&DateTime>
The last time the sync operations returned a status of SUCCESSFUL
(UTC).
sourcepub fn sync_last_modified_time(&self) -> Option<&DateTime>
pub fn sync_last_modified_time(&self) -> Option<&DateTime>
The date and time the resource data sync was changed.
sourcepub fn last_status(&self) -> Option<&LastResourceDataSyncStatus>
pub fn last_status(&self) -> Option<&LastResourceDataSyncStatus>
The status reported by the last sync.
sourcepub fn sync_created_time(&self) -> Option<&DateTime>
pub fn sync_created_time(&self) -> Option<&DateTime>
The date and time the configuration was created (UTC).
sourcepub fn last_sync_status_message(&self) -> Option<&str>
pub fn last_sync_status_message(&self) -> Option<&str>
The status message details reported by the last sync.
source§impl ResourceDataSyncItem
impl ResourceDataSyncItem
sourcepub fn builder() -> ResourceDataSyncItemBuilder
pub fn builder() -> ResourceDataSyncItemBuilder
Creates a new builder-style object to manufacture ResourceDataSyncItem
.
Trait Implementations§
source§impl Clone for ResourceDataSyncItem
impl Clone for ResourceDataSyncItem
source§fn clone(&self) -> ResourceDataSyncItem
fn clone(&self) -> ResourceDataSyncItem
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ResourceDataSyncItem
impl Debug for ResourceDataSyncItem
source§impl PartialEq<ResourceDataSyncItem> for ResourceDataSyncItem
impl PartialEq<ResourceDataSyncItem> for ResourceDataSyncItem
source§fn eq(&self, other: &ResourceDataSyncItem) -> bool
fn eq(&self, other: &ResourceDataSyncItem) -> bool
self
and other
values to be equal, and is used
by ==
.