[][src]Struct rusoto_config::AggregatedSourceStatus

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

aws_region: Option<String>

The region authorized to collect aggregated data.

last_error_code: Option<String>

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

last_error_message: Option<String>

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

last_update_status: Option<String>

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.

last_update_time: Option<f64>

The time of the last update.

source_id: Option<String>

The source account ID or an organization.

source_type: Option<String>

The source account or an organization.

Trait Implementations

impl Clone for AggregatedSourceStatus[src]

impl Debug for AggregatedSourceStatus[src]

impl Default for AggregatedSourceStatus[src]

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

impl PartialEq<AggregatedSourceStatus> for AggregatedSourceStatus[src]

impl StructuralPartialEq for AggregatedSourceStatus[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.