Struct aws_sdk_codegurusecurity::operation::batch_get_findings::builders::BatchGetFindingsInputBuilder
source · #[non_exhaustive]pub struct BatchGetFindingsInputBuilder { /* private fields */ }
Expand description
A builder for BatchGetFindingsInput
.
Implementations§
source§impl BatchGetFindingsInputBuilder
impl BatchGetFindingsInputBuilder
sourcepub fn finding_identifiers(self, input: FindingIdentifier) -> Self
pub fn finding_identifiers(self, input: FindingIdentifier) -> Self
Appends an item to finding_identifiers
.
To override the contents of this collection use set_finding_identifiers
.
A list of finding identifiers. Each identifier consists of a scanName
and a findingId
. You retrieve the findingId
when you call GetFindings
.
sourcepub fn set_finding_identifiers(
self,
input: Option<Vec<FindingIdentifier>>,
) -> Self
pub fn set_finding_identifiers( self, input: Option<Vec<FindingIdentifier>>, ) -> Self
A list of finding identifiers. Each identifier consists of a scanName
and a findingId
. You retrieve the findingId
when you call GetFindings
.
sourcepub fn get_finding_identifiers(&self) -> &Option<Vec<FindingIdentifier>>
pub fn get_finding_identifiers(&self) -> &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
.
sourcepub fn build(self) -> Result<BatchGetFindingsInput, BuildError>
pub fn build(self) -> Result<BatchGetFindingsInput, BuildError>
Consumes the builder and constructs a BatchGetFindingsInput
.
source§impl BatchGetFindingsInputBuilder
impl BatchGetFindingsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<BatchGetFindingsOutput, SdkError<BatchGetFindingsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<BatchGetFindingsOutput, SdkError<BatchGetFindingsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for BatchGetFindingsInputBuilder
impl Clone for BatchGetFindingsInputBuilder
source§fn clone(&self) -> BatchGetFindingsInputBuilder
fn clone(&self) -> BatchGetFindingsInputBuilder
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 BatchGetFindingsInputBuilder
impl Debug for BatchGetFindingsInputBuilder
source§impl Default for BatchGetFindingsInputBuilder
impl Default for BatchGetFindingsInputBuilder
source§fn default() -> BatchGetFindingsInputBuilder
fn default() -> BatchGetFindingsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchGetFindingsInputBuilder
impl PartialEq for BatchGetFindingsInputBuilder
source§fn eq(&self, other: &BatchGetFindingsInputBuilder) -> bool
fn eq(&self, other: &BatchGetFindingsInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetFindingsInputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetFindingsInputBuilder
impl RefUnwindSafe for BatchGetFindingsInputBuilder
impl Send for BatchGetFindingsInputBuilder
impl Sync for BatchGetFindingsInputBuilder
impl Unpin for BatchGetFindingsInputBuilder
impl UnwindSafe for BatchGetFindingsInputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.