Struct aws_sdk_support::model::TrustedAdvisorCheckResult  
source · [−]#[non_exhaustive]pub struct TrustedAdvisorCheckResult {
    pub check_id: Option<String>,
    pub timestamp: Option<String>,
    pub status: Option<String>,
    pub resources_summary: Option<TrustedAdvisorResourcesSummary>,
    pub category_specific_summary: Option<TrustedAdvisorCategorySpecificSummary>,
    pub flagged_resources: Option<Vec<TrustedAdvisorResourceDetail>>,
}Expand description
The results of a Trusted Advisor check returned by DescribeTrustedAdvisorCheckResult.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.check_id: Option<String>The unique identifier for the Trusted Advisor check.
timestamp: Option<String>The time of the last refresh of the check.
status: Option<String>The alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available".
resources_summary: Option<TrustedAdvisorResourcesSummary>Details about Amazon Web Services resources that were analyzed in a call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries.
category_specific_summary: Option<TrustedAdvisorCategorySpecificSummary>Summary information that relates to the category of the check. Cost Optimizing is the only category that is currently supported.
flagged_resources: Option<Vec<TrustedAdvisorResourceDetail>>The details about each resource listed in the check result.
Implementations
sourceimpl TrustedAdvisorCheckResult
 
impl TrustedAdvisorCheckResult
sourcepub fn status(&self) -> Option<&str>
 
pub fn status(&self) -> Option<&str>
The alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available".
sourcepub fn resources_summary(&self) -> Option<&TrustedAdvisorResourcesSummary>
 
pub fn resources_summary(&self) -> Option<&TrustedAdvisorResourcesSummary>
Details about Amazon Web Services resources that were analyzed in a call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries.
sourcepub fn category_specific_summary(
    &self
) -> Option<&TrustedAdvisorCategorySpecificSummary>
 
pub fn category_specific_summary(
    &self
) -> Option<&TrustedAdvisorCategorySpecificSummary>
Summary information that relates to the category of the check. Cost Optimizing is the only category that is currently supported.
sourcepub fn flagged_resources(&self) -> Option<&[TrustedAdvisorResourceDetail]>
 
pub fn flagged_resources(&self) -> Option<&[TrustedAdvisorResourceDetail]>
The details about each resource listed in the check result.
sourceimpl TrustedAdvisorCheckResult
 
impl TrustedAdvisorCheckResult
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TrustedAdvisorCheckResult
Trait Implementations
sourceimpl Clone for TrustedAdvisorCheckResult
 
impl Clone for TrustedAdvisorCheckResult
sourcefn clone(&self) -> TrustedAdvisorCheckResult
 
fn clone(&self) -> TrustedAdvisorCheckResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for TrustedAdvisorCheckResult
 
impl Debug for TrustedAdvisorCheckResult
sourceimpl PartialEq<TrustedAdvisorCheckResult> for TrustedAdvisorCheckResult
 
impl PartialEq<TrustedAdvisorCheckResult> for TrustedAdvisorCheckResult
sourcefn eq(&self, other: &TrustedAdvisorCheckResult) -> bool
 
fn eq(&self, other: &TrustedAdvisorCheckResult) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TrustedAdvisorCheckResult) -> bool
 
fn ne(&self, other: &TrustedAdvisorCheckResult) -> bool
This method tests for !=.
impl StructuralPartialEq for TrustedAdvisorCheckResult
Auto Trait Implementations
impl RefUnwindSafe for TrustedAdvisorCheckResult
impl Send for TrustedAdvisorCheckResult
impl Sync for TrustedAdvisorCheckResult
impl Unpin for TrustedAdvisorCheckResult
impl UnwindSafe for TrustedAdvisorCheckResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
 
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more