#[non_exhaustive]pub struct ListFindingsInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub filter_criteria: Option<FilterCriteria>,
pub sort_criteria: Option<SortCriteria>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.max_results: Option<i32>The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
next_token: Option<String>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
filter_criteria: Option<FilterCriteria>Details on the filters to apply to your finding results.
sort_criteria: Option<SortCriteria>Details on the sort criteria to apply to your finding results.
Implementations§
source§impl ListFindingsInput
impl ListFindingsInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
sourcepub fn filter_criteria(&self) -> Option<&FilterCriteria>
pub fn filter_criteria(&self) -> Option<&FilterCriteria>
Details on the filters to apply to your finding results.
sourcepub fn sort_criteria(&self) -> Option<&SortCriteria>
pub fn sort_criteria(&self) -> Option<&SortCriteria>
Details on the sort criteria to apply to your finding results.
source§impl ListFindingsInput
impl ListFindingsInput
sourcepub fn builder() -> ListFindingsInputBuilder
pub fn builder() -> ListFindingsInputBuilder
Creates a new builder-style object to manufacture ListFindingsInput.
Trait Implementations§
source§impl Clone for ListFindingsInput
impl Clone for ListFindingsInput
source§fn clone(&self) -> ListFindingsInput
fn clone(&self) -> ListFindingsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListFindingsInput
impl Debug for ListFindingsInput
source§impl PartialEq for ListFindingsInput
impl PartialEq for ListFindingsInput
source§fn eq(&self, other: &ListFindingsInput) -> bool
fn eq(&self, other: &ListFindingsInput) -> bool
self and other values to be equal, and is used
by ==.