SortCriteria

The criteria used to sort.

Access ControlComplianceIAMPolicy ManagementSecurity

Properties

Name Type Description
attributeName object
orderBy object
View JSON Schema on GitHub

JSON Schema

iam-access-analyzer-sort-criteria-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-access-analyzer/refs/heads/main/json-schema/iam-access-analyzer-sort-criteria-schema.json",
  "title": "SortCriteria",
  "description": "The criteria used to sort.",
  "type": "object",
  "properties": {
    "attributeName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the attribute to sort on."
        }
      ]
    },
    "orderBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrderBy"
        },
        {
          "description": "The sort order, ascending or descending."
        }
      ]
    }
  }
}