pub struct AwsSecurityFindingIdentifier {
pub id: String,
pub product_arn: String,
}
Expand description
Identifies a finding to update using BatchUpdateFindings
.
Fields§
§id: String
The identifier of the finding that was specified by the finding provider.
product_arn: String
The ARN generated by Security Hub that uniquely identifies a product that generates findings. This can be the ARN for a third-party product that is integrated with Security Hub, or the ARN for a custom integration.
Trait Implementations§
Source§impl Clone for AwsSecurityFindingIdentifier
impl Clone for AwsSecurityFindingIdentifier
Source§fn clone(&self) -> AwsSecurityFindingIdentifier
fn clone(&self) -> AwsSecurityFindingIdentifier
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 AwsSecurityFindingIdentifier
impl Debug for AwsSecurityFindingIdentifier
Source§impl Default for AwsSecurityFindingIdentifier
impl Default for AwsSecurityFindingIdentifier
Source§fn default() -> AwsSecurityFindingIdentifier
fn default() -> AwsSecurityFindingIdentifier
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsSecurityFindingIdentifier
impl<'de> Deserialize<'de> for AwsSecurityFindingIdentifier
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 AwsSecurityFindingIdentifier
impl PartialEq for AwsSecurityFindingIdentifier
Source§fn eq(&self, other: &AwsSecurityFindingIdentifier) -> bool
fn eq(&self, other: &AwsSecurityFindingIdentifier) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AwsSecurityFindingIdentifier
Auto Trait Implementations§
impl Freeze for AwsSecurityFindingIdentifier
impl RefUnwindSafe for AwsSecurityFindingIdentifier
impl Send for AwsSecurityFindingIdentifier
impl Sync for AwsSecurityFindingIdentifier
impl Unpin for AwsSecurityFindingIdentifier
impl UnwindSafe for AwsSecurityFindingIdentifier
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