Struct aws_sdk_codegurusecurity::operation::batch_get_findings::builders::BatchGetFindingsFluentBuilder
source · pub struct BatchGetFindingsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to BatchGetFindings
.
Returns a list of requested findings from standard scans.
Implementations§
source§impl BatchGetFindingsFluentBuilder
impl BatchGetFindingsFluentBuilder
sourcepub fn as_input(&self) -> &BatchGetFindingsInputBuilder
pub fn as_input(&self) -> &BatchGetFindingsInputBuilder
Access the BatchGetFindings as a reference.
sourcepub async fn send(
self,
) -> Result<BatchGetFindingsOutput, SdkError<BatchGetFindingsError, HttpResponse>>
pub async fn send( self, ) -> Result<BatchGetFindingsOutput, SdkError<BatchGetFindingsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<BatchGetFindingsOutput, BatchGetFindingsError, Self>
pub fn customize( self, ) -> CustomizableOperation<BatchGetFindingsOutput, BatchGetFindingsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn finding_identifiers(self, input: FindingIdentifier) -> Self
pub fn finding_identifiers(self, input: FindingIdentifier) -> Self
Appends an item to findingIdentifiers
.
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
.
Trait Implementations§
source§impl Clone for BatchGetFindingsFluentBuilder
impl Clone for BatchGetFindingsFluentBuilder
source§fn clone(&self) -> BatchGetFindingsFluentBuilder
fn clone(&self) -> BatchGetFindingsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for BatchGetFindingsFluentBuilder
impl !RefUnwindSafe for BatchGetFindingsFluentBuilder
impl Send for BatchGetFindingsFluentBuilder
impl Sync for BatchGetFindingsFluentBuilder
impl Unpin for BatchGetFindingsFluentBuilder
impl !UnwindSafe for BatchGetFindingsFluentBuilder
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
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>
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>
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 more