Struct aws_sdk_accessanalyzer::input::ListFindingsInput [−][src]
#[non_exhaustive]pub struct ListFindingsInput {
pub analyzer_arn: Option<String>,
pub filter: Option<HashMap<String, Criterion>>,
pub sort: Option<SortCriteria>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Expand description
Retrieves a list of findings generated by the specified analyzer.
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.analyzer_arn: Option<String>
The ARN of the analyzer to retrieve findings from.
filter: Option<HashMap<String, Criterion>>
A filter to match for the findings to return.
sort: Option<SortCriteria>
The sort order for the findings returned.
next_token: Option<String>
A token used for pagination of results returned.
max_results: Option<i32>
The maximum number of results to return in the response.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListFindings, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListFindings, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListFindings
>
Creates a new builder-style object to manufacture ListFindingsInput
The ARN of the analyzer to retrieve findings from.
A filter to match for the findings to return.
The sort order for the findings returned.
A token used for pagination of results returned.
The maximum number of results to return in the response.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListFindingsInput
impl Send for ListFindingsInput
impl Sync for ListFindingsInput
impl Unpin for ListFindingsInput
impl UnwindSafe for ListFindingsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more