You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AccessAnalyzer::Types::ListFindingsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListFindingsRequest as input to an Aws::Client method, you can use a vanilla 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.

Instance Attribute Summary collapse

Instance Attribute Details

#analyzer_arnString

The ARN of the analyzer to retrieve findings from.

Returns:

  • (String)

    The ARN of the analyzer to retrieve findings from.

#filterHash<String,Types::Criterion>

A filter to match for the findings to return.

Returns:

  • (Hash<String,Types::Criterion>)

    A filter to match for the findings to return.

#max_resultsInteger

The maximum number of results to return in the response.

Returns:

  • (Integer)

    The maximum number of results to return in the response.

#next_tokenString

A token used for pagination of results returned.

Returns:

  • (String)

    A token used for pagination of results returned.

#sortTypes::SortCriteria

The sort order for the findings returned.

Returns: