#[non_exhaustive]pub struct ListFindingsInputBuilder { /* private fields */ }Expand description
A builder for ListFindingsInput.
Implementations§
source§impl ListFindingsInputBuilder
impl ListFindingsInputBuilder
sourcepub fn finding_criteria(self, input: FindingCriteria) -> Self
pub fn finding_criteria(self, input: FindingCriteria) -> Self
The criteria to use to filter the results.
sourcepub fn set_finding_criteria(self, input: Option<FindingCriteria>) -> Self
pub fn set_finding_criteria(self, input: Option<FindingCriteria>) -> Self
The criteria to use to filter the results.
sourcepub fn get_finding_criteria(&self) -> &Option<FindingCriteria>
pub fn get_finding_criteria(&self) -> &Option<FindingCriteria>
The criteria to use to filter the results.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of items to include in each page of the response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of items to include in each page of the response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of items to include in each page of the response.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The nextToken string that specifies which page of results to return in a paginated response.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The nextToken string that specifies which page of results to return in a paginated response.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The nextToken string that specifies which page of results to return in a paginated response.
sourcepub fn sort_criteria(self, input: SortCriteria) -> Self
pub fn sort_criteria(self, input: SortCriteria) -> Self
The criteria to use to sort the results.
sourcepub fn set_sort_criteria(self, input: Option<SortCriteria>) -> Self
pub fn set_sort_criteria(self, input: Option<SortCriteria>) -> Self
The criteria to use to sort the results.
sourcepub fn get_sort_criteria(&self) -> &Option<SortCriteria>
pub fn get_sort_criteria(&self) -> &Option<SortCriteria>
The criteria to use to sort the results.
sourcepub fn build(self) -> Result<ListFindingsInput, BuildError>
pub fn build(self) -> Result<ListFindingsInput, BuildError>
Consumes the builder and constructs a ListFindingsInput.
source§impl ListFindingsInputBuilder
impl ListFindingsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListFindingsOutput, SdkError<ListFindingsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListFindingsOutput, SdkError<ListFindingsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListFindingsInputBuilder
impl Clone for ListFindingsInputBuilder
source§fn clone(&self) -> ListFindingsInputBuilder
fn clone(&self) -> ListFindingsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListFindingsInputBuilder
impl Debug for ListFindingsInputBuilder
source§impl Default for ListFindingsInputBuilder
impl Default for ListFindingsInputBuilder
source§fn default() -> ListFindingsInputBuilder
fn default() -> ListFindingsInputBuilder
source§impl PartialEq for ListFindingsInputBuilder
impl PartialEq for ListFindingsInputBuilder
source§fn eq(&self, other: &ListFindingsInputBuilder) -> bool
fn eq(&self, other: &ListFindingsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.