#[non_exhaustive]pub struct FindingHistoryUpdateSource {
pub type: Option<FindingHistoryUpdateSourceType>,
pub identity: Option<String>,
}
Expand description
Identifies the source of the finding change event.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.type: Option<FindingHistoryUpdateSourceType>
Describes the type of finding change event, such as a call to BatchImportFindings
(by an integrated Amazon Web Service or third party partner integration) or BatchUpdateFindings
(by a Security Hub customer).
identity: Option<String>
The identity of the source that initiated the finding change event. For example, the Amazon Resource Name (ARN) of a partner that calls BatchImportFindings or of a customer that calls BatchUpdateFindings.
Implementations§
source§impl FindingHistoryUpdateSource
impl FindingHistoryUpdateSource
sourcepub fn type(&self) -> Option<&FindingHistoryUpdateSourceType>
pub fn type(&self) -> Option<&FindingHistoryUpdateSourceType>
Describes the type of finding change event, such as a call to BatchImportFindings
(by an integrated Amazon Web Service or third party partner integration) or BatchUpdateFindings
(by a Security Hub customer).
source§impl FindingHistoryUpdateSource
impl FindingHistoryUpdateSource
sourcepub fn builder() -> FindingHistoryUpdateSourceBuilder
pub fn builder() -> FindingHistoryUpdateSourceBuilder
Creates a new builder-style object to manufacture FindingHistoryUpdateSource
.
Trait Implementations§
source§impl Clone for FindingHistoryUpdateSource
impl Clone for FindingHistoryUpdateSource
source§fn clone(&self) -> FindingHistoryUpdateSource
fn clone(&self) -> FindingHistoryUpdateSource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FindingHistoryUpdateSource
impl Debug for FindingHistoryUpdateSource
source§impl PartialEq for FindingHistoryUpdateSource
impl PartialEq for FindingHistoryUpdateSource
source§fn eq(&self, other: &FindingHistoryUpdateSource) -> bool
fn eq(&self, other: &FindingHistoryUpdateSource) -> bool
self
and other
values to be equal, and is used
by ==
.