pub struct TrustedAdvisorResourceDetail {
pub is_suppressed: Option<bool>,
pub metadata: Vec<String>,
pub region: Option<String>,
pub resource_id: String,
pub status: String,
}Expand description
Contains information about a resource identified by a Trusted Advisor check.
Fields§
§is_suppressed: Option<bool>Specifies whether the AWS resource was ignored by Trusted Advisor because it was marked as suppressed by the user.
metadata: Vec<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.
region: Option<String>The AWS region in which the identified resource is located.
resource_id: StringThe unique identifier for the identified resource.
status: StringThe status code for the resource identified in the Trusted Advisor check.
Trait Implementations§
Source§impl Clone for TrustedAdvisorResourceDetail
impl Clone for TrustedAdvisorResourceDetail
Source§fn clone(&self) -> TrustedAdvisorResourceDetail
fn clone(&self) -> TrustedAdvisorResourceDetail
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 TrustedAdvisorResourceDetail
impl Debug for TrustedAdvisorResourceDetail
Source§impl Default for TrustedAdvisorResourceDetail
impl Default for TrustedAdvisorResourceDetail
Source§fn default() -> TrustedAdvisorResourceDetail
fn default() -> TrustedAdvisorResourceDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrustedAdvisorResourceDetail
impl<'de> Deserialize<'de> for TrustedAdvisorResourceDetail
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
Source§impl PartialEq for TrustedAdvisorResourceDetail
impl PartialEq for TrustedAdvisorResourceDetail
Source§fn eq(&self, other: &TrustedAdvisorResourceDetail) -> bool
fn eq(&self, other: &TrustedAdvisorResourceDetail) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TrustedAdvisorResourceDetail
Auto Trait Implementations§
impl Freeze for TrustedAdvisorResourceDetail
impl RefUnwindSafe for TrustedAdvisorResourceDetail
impl Send for TrustedAdvisorResourceDetail
impl Sync for TrustedAdvisorResourceDetail
impl Unpin for TrustedAdvisorResourceDetail
impl UnwindSafe for TrustedAdvisorResourceDetail
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