pub struct BatchUpdateFindingsUnprocessedFinding {
pub error_code: String,
pub error_message: String,
pub finding_identifier: AwsSecurityFindingIdentifier,
}
Expand description
A finding from a BatchUpdateFindings
request that Security Hub was unable to update.
Fields§
§error_code: String
The code associated with the error.
error_message: String
The message associated with the error.
finding_identifier: AwsSecurityFindingIdentifier
The identifier of the finding that was not updated.
Trait Implementations§
Source§impl Clone for BatchUpdateFindingsUnprocessedFinding
impl Clone for BatchUpdateFindingsUnprocessedFinding
Source§fn clone(&self) -> BatchUpdateFindingsUnprocessedFinding
fn clone(&self) -> BatchUpdateFindingsUnprocessedFinding
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 Default for BatchUpdateFindingsUnprocessedFinding
impl Default for BatchUpdateFindingsUnprocessedFinding
Source§fn default() -> BatchUpdateFindingsUnprocessedFinding
fn default() -> BatchUpdateFindingsUnprocessedFinding
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchUpdateFindingsUnprocessedFinding
impl<'de> Deserialize<'de> for BatchUpdateFindingsUnprocessedFinding
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 BatchUpdateFindingsUnprocessedFinding
impl PartialEq for BatchUpdateFindingsUnprocessedFinding
Source§fn eq(&self, other: &BatchUpdateFindingsUnprocessedFinding) -> bool
fn eq(&self, other: &BatchUpdateFindingsUnprocessedFinding) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchUpdateFindingsUnprocessedFinding
Auto Trait Implementations§
impl Freeze for BatchUpdateFindingsUnprocessedFinding
impl RefUnwindSafe for BatchUpdateFindingsUnprocessedFinding
impl Send for BatchUpdateFindingsUnprocessedFinding
impl Sync for BatchUpdateFindingsUnprocessedFinding
impl Unpin for BatchUpdateFindingsUnprocessedFinding
impl UnwindSafe for BatchUpdateFindingsUnprocessedFinding
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