pub struct GetFindingsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetFindings
.
Retrieves the details of one or more findings.
Implementations§
source§impl GetFindingsFluentBuilder
impl GetFindingsFluentBuilder
sourcepub fn as_input(&self) -> &GetFindingsInputBuilder
pub fn as_input(&self) -> &GetFindingsInputBuilder
Access the GetFindings as a reference.
sourcepub async fn send(
self
) -> Result<GetFindingsOutput, SdkError<GetFindingsError, HttpResponse>>
pub async fn send( self ) -> Result<GetFindingsOutput, SdkError<GetFindingsError, 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 async fn customize(
self
) -> Result<CustomizableOperation<GetFindingsOutput, GetFindingsError>, SdkError<GetFindingsError>>
pub async fn customize( self ) -> Result<CustomizableOperation<GetFindingsOutput, GetFindingsError>, SdkError<GetFindingsError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn finding_ids(self, input: impl Into<String>) -> Self
pub fn finding_ids(self, input: impl Into<String>) -> Self
Appends an item to findingIds
.
To override the contents of this collection use set_finding_ids
.
An array of strings that lists the unique identifiers for the findings to retrieve. You can specify as many as 50 unique identifiers in this array.
sourcepub fn set_finding_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_finding_ids(self, input: Option<Vec<String>>) -> Self
An array of strings that lists the unique identifiers for the findings to retrieve. You can specify as many as 50 unique identifiers in this array.
sourcepub fn get_finding_ids(&self) -> &Option<Vec<String>>
pub fn get_finding_ids(&self) -> &Option<Vec<String>>
An array of strings that lists the unique identifiers for the findings to retrieve. You can specify as many as 50 unique identifiers in this array.
sourcepub fn sort_criteria(self, input: SortCriteria) -> Self
pub fn sort_criteria(self, input: SortCriteria) -> Self
The criteria for sorting the results of the request.
sourcepub fn set_sort_criteria(self, input: Option<SortCriteria>) -> Self
pub fn set_sort_criteria(self, input: Option<SortCriteria>) -> Self
The criteria for sorting the results of the request.
sourcepub fn get_sort_criteria(&self) -> &Option<SortCriteria>
pub fn get_sort_criteria(&self) -> &Option<SortCriteria>
The criteria for sorting the results of the request.
Trait Implementations§
source§impl Clone for GetFindingsFluentBuilder
impl Clone for GetFindingsFluentBuilder
source§fn clone(&self) -> GetFindingsFluentBuilder
fn clone(&self) -> GetFindingsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more