pub struct Resource {
pub details: Option<ResourceDetails>,
pub id: String,
pub partition: Option<String>,
pub region: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub type_: String,
}
Expand description
A resource related to a finding.
Fields§
§details: Option<ResourceDetails>
Additional details about the resource related to a finding.
id: String
The canonical identifier for the given resource type.
partition: Option<String>
The canonical AWS partition name that the Region is assigned to.
region: Option<String>
The canonical AWS external Region name where this resource is located.
A list of AWS tags associated with a resource at the time the finding was processed.
type_: String
The type of the resource that details are provided for. If possible, set Type
to one of the supported resource types. For example, if the resource is an EC2 instance, then set Type
to AwsEc2Instance
.
If the resource does not match any of the provided types, then set Type
to Other
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Resource
impl<'de> Deserialize<'de> for Resource
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 Resource
Auto Trait Implementations§
impl Freeze for Resource
impl RefUnwindSafe for Resource
impl Send for Resource
impl Sync for Resource
impl Unpin for Resource
impl UnwindSafe for Resource
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