pub struct ResourceTagMapping {
pub compliance_details: Option<ComplianceDetails>,
pub resource_arn: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
A list of resource ARNs and the tags (keys and values) that are associated with each.
Fields§
§compliance_details: Option<ComplianceDetails>
Information that shows whether a resource is compliant with the effective tag policy, including details on any noncompliant tag keys.
resource_arn: Option<String>
The ARN of the resource.
The tags that have been applied to one or more AWS resources.
Trait Implementations§
Source§impl Clone for ResourceTagMapping
impl Clone for ResourceTagMapping
Source§fn clone(&self) -> ResourceTagMapping
fn clone(&self) -> ResourceTagMapping
Returns a copy 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 ResourceTagMapping
impl Debug for ResourceTagMapping
Source§impl Default for ResourceTagMapping
impl Default for ResourceTagMapping
Source§fn default() -> ResourceTagMapping
fn default() -> ResourceTagMapping
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResourceTagMapping
impl<'de> Deserialize<'de> for ResourceTagMapping
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 ResourceTagMapping
impl PartialEq for ResourceTagMapping
impl StructuralPartialEq for ResourceTagMapping
Auto Trait Implementations§
impl Freeze for ResourceTagMapping
impl RefUnwindSafe for ResourceTagMapping
impl Send for ResourceTagMapping
impl Sync for ResourceTagMapping
impl Unpin for ResourceTagMapping
impl UnwindSafe for ResourceTagMapping
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