[][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

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 Amazon S3 bucket.

sync_created_time: Option<f64>

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

sync_name: Option<String>

The name of the Resource Data Sync.

Trait Implementations

impl PartialEq<ResourceDataSyncItem> for ResourceDataSyncItem[src]

impl Default for ResourceDataSyncItem[src]

impl Clone for ResourceDataSyncItem[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ResourceDataSyncItem[src]

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

Auto Trait Implementations

impl Send for ResourceDataSyncItem

impl Sync for ResourceDataSyncItem

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self