#[non_exhaustive]pub struct BatchGetFindingsInput {
pub finding_identifiers: Option<Vec<FindingIdentifier>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.finding_identifiers: Option<Vec<FindingIdentifier>>
A list of finding identifiers. Each identifier consists of a scanName
and a findingId
. You retrieve the findingId
when you call GetFindings
.
Implementations§
source§impl BatchGetFindingsInput
impl BatchGetFindingsInput
sourcepub fn finding_identifiers(&self) -> Option<&[FindingIdentifier]>
pub fn finding_identifiers(&self) -> Option<&[FindingIdentifier]>
A list of finding identifiers. Each identifier consists of a scanName
and a findingId
. You retrieve the findingId
when you call GetFindings
.
source§impl BatchGetFindingsInput
impl BatchGetFindingsInput
sourcepub fn builder() -> BatchGetFindingsInputBuilder
pub fn builder() -> BatchGetFindingsInputBuilder
Creates a new builder-style object to manufacture BatchGetFindingsInput
.
Trait Implementations§
source§impl Clone for BatchGetFindingsInput
impl Clone for BatchGetFindingsInput
source§fn clone(&self) -> BatchGetFindingsInput
fn clone(&self) -> BatchGetFindingsInput
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 BatchGetFindingsInput
impl Debug for BatchGetFindingsInput
source§impl PartialEq for BatchGetFindingsInput
impl PartialEq for BatchGetFindingsInput
source§fn eq(&self, other: &BatchGetFindingsInput) -> bool
fn eq(&self, other: &BatchGetFindingsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetFindingsInput
Auto Trait Implementations§
impl RefUnwindSafe for BatchGetFindingsInput
impl Send for BatchGetFindingsInput
impl Sync for BatchGetFindingsInput
impl Unpin for BatchGetFindingsInput
impl UnwindSafe for BatchGetFindingsInput
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