Class: Aws::AccessAnalyzer::Types::ListFindingsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::ListFindingsRequest
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
Note:
When making an API call, you may pass ListFindingsRequest data as a hash:
{
analyzer_arn: "AnalyzerArn", # required
filter: {
"String" => {
contains: ["String"],
eq: ["String"],
exists: false,
neq: ["String"],
},
},
max_results: 1,
next_token: "Token",
sort: {
attribute_name: "String",
order_by: "ASC", # accepts ASC, DESC
},
}
Retrieves a list of findings generated by the specified analyzer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analyzer_arn ⇒ String
The [ARN of the analyzer][1] to retrieve findings from.
-
#filter ⇒ Hash<String,Types::Criterion>
A filter to match for the findings to return.
-
#max_results ⇒ Integer
The maximum number of results to return in the response.
-
#next_token ⇒ String
A token used for pagination of results returned.
-
#sort ⇒ Types::SortCriteria
The sort order for the findings returned.
Instance Attribute Details
#analyzer_arn ⇒ String
The ARN of the analyzer to retrieve findings from.
2298 2299 2300 2301 2302 2303 2304 2305 2306 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2298 class ListFindingsRequest < Struct.new( :analyzer_arn, :filter, :max_results, :next_token, :sort) SENSITIVE = [] include Aws::Structure end |
#filter ⇒ Hash<String,Types::Criterion>
A filter to match for the findings to return.
2298 2299 2300 2301 2302 2303 2304 2305 2306 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2298 class ListFindingsRequest < Struct.new( :analyzer_arn, :filter, :max_results, :next_token, :sort) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in the response.
2298 2299 2300 2301 2302 2303 2304 2305 2306 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2298 class ListFindingsRequest < Struct.new( :analyzer_arn, :filter, :max_results, :next_token, :sort) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token used for pagination of results returned.
2298 2299 2300 2301 2302 2303 2304 2305 2306 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2298 class ListFindingsRequest < Struct.new( :analyzer_arn, :filter, :max_results, :next_token, :sort) SENSITIVE = [] include Aws::Structure end |
#sort ⇒ Types::SortCriteria
The sort order for the findings returned.
2298 2299 2300 2301 2302 2303 2304 2305 2306 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2298 class ListFindingsRequest < Struct.new( :analyzer_arn, :filter, :max_results, :next_token, :sort) SENSITIVE = [] include Aws::Structure end |