[][src]Struct rusoto_ssm::ResourceDataSyncItem

pub struct ResourceDataSyncItem {
    pub last_status: Option<String>,
    pub last_successful_sync_time: Option<f64>,
    pub last_sync_status_message: Option<String>,
    pub last_sync_time: Option<f64>,
    pub s3_destination: Option<ResourceDataSyncS3Destination>,
    pub sync_created_time: Option<f64>,
    pub sync_last_modified_time: Option<f64>,
    pub sync_name: Option<String>,
    pub sync_source: Option<ResourceDataSyncSourceWithState>,
    pub sync_type: Option<String>,
}

Information about a Resource Data Sync configuration, including its current status and last successful sync.

Fields

last_status: Option<String>

The status reported by the last sync.

last_successful_sync_time: Option<f64>

The last time the sync operations returned a status of SUCCESSFUL (UTC).

last_sync_status_message: Option<String>

The status message details reported by the last sync.

last_sync_time: Option<f64>

The last time the configuration attempted to sync (UTC).

s3_destination: Option<ResourceDataSyncS3Destination>

Configuration information for the target S3 bucket.

sync_created_time: Option<f64>

The date and time the configuration was created (UTC).

sync_last_modified_time: Option<f64>

The date and time the resource data sync was changed.

sync_name: Option<String>

The name of the Resource Data Sync.

sync_source: Option<ResourceDataSyncSourceWithState>

Information about the source where the data was synchronized.

sync_type: Option<String>

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 AWS Organizations or from multiple AWS Regions.

Trait Implementations

impl Clone for ResourceDataSyncItem[src]

impl Debug for ResourceDataSyncItem[src]

impl Default for ResourceDataSyncItem[src]

impl<'de> Deserialize<'de> for ResourceDataSyncItem[src]

impl PartialEq<ResourceDataSyncItem> for ResourceDataSyncItem[src]

impl StructuralPartialEq for ResourceDataSyncItem[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.