Amazon Config · Schema

ListResourceEvaluationsRequest

ListResourceEvaluationsRequest schema

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
Filters object
Limit object
NextToken object
View JSON Schema on GitHub

JSON Schema

config-list-resource-evaluations-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-list-resource-evaluations-request-schema.json",
  "title": "ListResourceEvaluationsRequest",
  "description": "ListResourceEvaluationsRequest schema",
  "type": "object",
  "properties": {
    "Filters": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceEvaluationFilters"
        },
        {
          "description": "Returns a <code>ResourceEvaluationFilters</code> object."
        }
      ]
    },
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListResourceEvaluationsPageItemLimit"
        },
        {
          "description": "The maximum number of evaluations returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response."
        }
      ]
    }
  }
}