Amazon Detective · Schema

ListOrganizationAdminAccountsRequest

Request to list organization admin accounts

ForensicsInvestigationSecurity

Properties

Name Type Description
NextToken string The pagination token for the next page of results.
MaxResults integer The maximum number of results to return.
View JSON Schema on GitHub

JSON Schema

amazon-detective-list-organization-admin-accounts-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-detective/refs/heads/main/json-schema/amazon-detective-list-organization-admin-accounts-request-schema.json",
  "title": "ListOrganizationAdminAccountsRequest",
  "description": "Request to list organization admin accounts",
  "type": "object",
  "properties": {
    "NextToken": {
      "type": "string",
      "description": "The pagination token for the next page of results.",
      "example": "abc123token"
    },
    "MaxResults": {
      "type": "integer",
      "description": "The maximum number of results to return.",
      "example": 100
    }
  }
}