[][src]Struct rusoto_support::TrustedAdvisorCheckRefreshStatus

pub struct TrustedAdvisorCheckRefreshStatus {
    pub check_id: String,
    pub millis_until_next_refreshable: i64,
    pub status: String,
}

The refresh status of a Trusted Advisor check.

Fields

check_id: String

The unique identifier for the Trusted Advisor check.

millis_until_next_refreshable: i64

The amount of time, in milliseconds, until the Trusted Advisor check is eligible for refresh.

status: String

The status of the Trusted Advisor check for which a refresh has been requested:

  • none: The check is not refreshed or the non-success status exceeds the timeout

  • enqueued: The check refresh requests has entered the refresh queue

  • processing: The check refresh request is picked up by the rule processing engine

  • success: The check is successfully refreshed

  • abandoned: The check refresh has failed

Trait Implementations

impl Clone for TrustedAdvisorCheckRefreshStatus[src]

impl Debug for TrustedAdvisorCheckRefreshStatus[src]

impl Default for TrustedAdvisorCheckRefreshStatus[src]

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

impl PartialEq<TrustedAdvisorCheckRefreshStatus> for TrustedAdvisorCheckRefreshStatus[src]

impl StructuralPartialEq for TrustedAdvisorCheckRefreshStatus[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.