[][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_name: Option<String>,
}

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

Fields

The status reported by the last sync.

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

The status message details reported by the last sync.

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

Configuration information for the target Amazon S3 bucket.

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

The name of the Resource Data Sync.

Trait Implementations

impl Clone for ResourceDataSyncItem
[src]

Performs copy-assignment from source. Read more

impl Default for ResourceDataSyncItem
[src]

impl PartialEq<ResourceDataSyncItem> for ResourceDataSyncItem
[src]

impl Debug for ResourceDataSyncItem
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T