ListPolicyGenerationsResponse

ListPolicyGenerationsResponse schema from AWS IAM Access Analyzer API

Access ControlComplianceIAMPolicy ManagementSecurity

Properties

Name Type Description
policyGenerations object
nextToken object
View JSON Schema on GitHub

JSON Schema

iam-access-analyzer-list-policy-generations-response-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-list-policy-generations-response-schema.json",
  "title": "ListPolicyGenerationsResponse",
  "description": "ListPolicyGenerationsResponse schema from AWS IAM Access Analyzer API",
  "type": "object",
  "properties": {
    "policyGenerations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyGenerationList"
        },
        {
          "description": "A <code>PolicyGeneration</code> object that contains details about the generated policy."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Token"
        },
        {
          "description": "A token used for pagination of results returned."
        }
      ]
    }
  },
  "required": [
    "policyGenerations"
  ]
}