Struct rusoto_ssm::ResourceDataSyncItem [] [src]

pub struct ResourceDataSyncItem {
    pub last_status: Option<String>,
    pub last_successful_sync_time: Option<f64>,
    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 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]

[src]

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

impl Debug for ResourceDataSyncItem
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceDataSyncItem
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations