Amazon Detective · Schema

ListMembersResponse

Response from listing member accounts

ForensicsInvestigationSecurity

Properties

Name Type Description
MemberDetails array The list of member accounts in the behavior graph.
NextToken string If there are more member accounts remaining in the results, then use this pagination token.
View JSON Schema on GitHub

JSON Schema

amazon-detective-list-members-response-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-members-response-schema.json",
  "title": "ListMembersResponse",
  "description": "Response from listing member accounts",
  "type": "object",
  "properties": {
    "MemberDetails": {
      "type": "array",
      "description": "The list of member accounts in the behavior graph.",
      "items": {
        "$ref": "#/components/schemas/MemberDetail"
      }
    },
    "NextToken": {
      "type": "string",
      "description": "If there are more member accounts remaining in the results, then use this pagination token."
    }
  }
}