Struct rusoto_config::AggregatedSourceStatus[][src]

pub struct AggregatedSourceStatus {
    pub aws_region: Option<String>,
    pub last_error_code: Option<String>,
    pub last_error_message: Option<String>,
    pub last_update_status: Option<String>,
    pub last_update_time: Option<f64>,
    pub source_id: Option<String>,
    pub source_type: Option<String>,
}

The current sync status between the source and the aggregator account.

Fields

The region authorized to collect aggregated data.

The error code that AWS Config returned when the source account aggregation last failed.

The message indicating that the source account aggregation failed due to an error.

Filters the last updated status type.

  • Valid value FAILED indicates errors while moving data.

  • Valid value SUCCEEDED indicates the data was successfully moved.

  • Valid value OUTDATED indicates the data is not the most recent.

The time of the last update.

The source account ID or an organization.

The source account or an organization.

Trait Implementations

impl Default for AggregatedSourceStatus
[src]

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

impl Debug for AggregatedSourceStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for AggregatedSourceStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AggregatedSourceStatus
[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