#[non_exhaustive]pub struct TrustedAdvisorResourceDetail { /* private fields */ }Expand description
Contains information about a resource identified by a Trusted Advisor check.
Implementations§
source§impl TrustedAdvisorResourceDetail
impl TrustedAdvisorResourceDetail
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status code for the resource identified in the Trusted Advisor check.
sourcepub fn region(&self) -> Option<&str>
pub fn region(&self) -> Option<&str>
The Amazon Web Services Region in which the identified resource is located.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The unique identifier for the identified resource.
sourcepub fn is_suppressed(&self) -> bool
pub fn is_suppressed(&self) -> bool
Specifies whether the Amazon Web Services resource was ignored by Trusted Advisor because it was marked as suppressed by the user.
sourcepub fn metadata(&self) -> Option<&[String]>
pub fn metadata(&self) -> Option<&[String]>
Additional information about the identified resource. The exact metadata and its order can be obtained by inspecting the TrustedAdvisorCheckDescription object returned by the call to DescribeTrustedAdvisorChecks. Metadata contains all the data that is shown in the Excel download, even in those cases where the UI shows just summary data.
source§impl TrustedAdvisorResourceDetail
impl TrustedAdvisorResourceDetail
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TrustedAdvisorResourceDetail.
Trait Implementations§
source§impl Clone for TrustedAdvisorResourceDetail
impl Clone for TrustedAdvisorResourceDetail
source§fn clone(&self) -> TrustedAdvisorResourceDetail
fn clone(&self) -> TrustedAdvisorResourceDetail
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TrustedAdvisorResourceDetail
impl Debug for TrustedAdvisorResourceDetail
source§impl PartialEq<TrustedAdvisorResourceDetail> for TrustedAdvisorResourceDetail
impl PartialEq<TrustedAdvisorResourceDetail> for TrustedAdvisorResourceDetail
source§fn eq(&self, other: &TrustedAdvisorResourceDetail) -> bool
fn eq(&self, other: &TrustedAdvisorResourceDetail) -> bool
self and other values to be equal, and is used
by ==.