pub struct TrustedAdvisorCheckSummary {
pub category_specific_summary: TrustedAdvisorCategorySpecificSummary,
pub check_id: String,
pub has_flagged_resources: Option<bool>,
pub resources_summary: TrustedAdvisorResourcesSummary,
pub status: String,
pub timestamp: String,
}Expand description
A summary of a Trusted Advisor check result, including the alert status, last refresh, and number of resources examined.
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.
has_flagged_resources: Option<bool>Specifies whether the Trusted Advisor check has flagged resources.
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 TrustedAdvisorCheckSummary
impl Clone for TrustedAdvisorCheckSummary
Source§fn clone(&self) -> TrustedAdvisorCheckSummary
fn clone(&self) -> TrustedAdvisorCheckSummary
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 TrustedAdvisorCheckSummary
impl Debug for TrustedAdvisorCheckSummary
Source§impl Default for TrustedAdvisorCheckSummary
impl Default for TrustedAdvisorCheckSummary
Source§fn default() -> TrustedAdvisorCheckSummary
fn default() -> TrustedAdvisorCheckSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrustedAdvisorCheckSummary
impl<'de> Deserialize<'de> for TrustedAdvisorCheckSummary
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 TrustedAdvisorCheckSummary
Auto Trait Implementations§
impl Freeze for TrustedAdvisorCheckSummary
impl RefUnwindSafe for TrustedAdvisorCheckSummary
impl Send for TrustedAdvisorCheckSummary
impl Sync for TrustedAdvisorCheckSummary
impl Unpin for TrustedAdvisorCheckSummary
impl UnwindSafe for TrustedAdvisorCheckSummary
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