pub struct TrustedAdvisorCheckResult {
pub category_specific_summary: TrustedAdvisorCategorySpecificSummary,
pub check_id: String,
pub flagged_resources: Vec<TrustedAdvisorResourceDetail>,
pub resources_summary: TrustedAdvisorResourcesSummary,
pub status: String,
pub timestamp: String,
}Expand description
The results of a Trusted Advisor check returned by DescribeTrustedAdvisorCheckResult.
Fields§
§category_specific_summary: TrustedAdvisorCategorySpecificSummarySummary information that relates to the category of the check. Cost Optimizing is the only category that is currently supported.
check_id: StringThe unique identifier for the Trusted Advisor check.
flagged_resources: Vec<TrustedAdvisorResourceDetail>The details about each resource listed in the check result.
resources_summary: TrustedAdvisorResourcesSummary§status: StringThe alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available".
timestamp: StringThe time of the last refresh of the check.
Trait Implementations§
Source§impl Clone for TrustedAdvisorCheckResult
impl Clone for TrustedAdvisorCheckResult
Source§fn clone(&self) -> TrustedAdvisorCheckResult
fn clone(&self) -> TrustedAdvisorCheckResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TrustedAdvisorCheckResult
impl Debug for TrustedAdvisorCheckResult
Source§impl Default for TrustedAdvisorCheckResult
impl Default for TrustedAdvisorCheckResult
Source§fn default() -> TrustedAdvisorCheckResult
fn default() -> TrustedAdvisorCheckResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrustedAdvisorCheckResult
impl<'de> Deserialize<'de> for TrustedAdvisorCheckResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for TrustedAdvisorCheckResult
Auto Trait Implementations§
impl Freeze for TrustedAdvisorCheckResult
impl RefUnwindSafe for TrustedAdvisorCheckResult
impl Send for TrustedAdvisorCheckResult
impl Sync for TrustedAdvisorCheckResult
impl Unpin for TrustedAdvisorCheckResult
impl UnwindSafe for TrustedAdvisorCheckResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more