Struct rusoto_ssm::ResourceDataSyncItem[][src]

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 Default for ResourceDataSyncItem
[src]

Returns the "default value" for a type. Read more

impl Debug for ResourceDataSyncItem
[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceDataSyncItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResourceDataSyncItem
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations