Amazon Detective · Schema

ListInvitationsRequest

Request to list invitations

ForensicsInvestigationSecurity

Properties

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

JSON Schema

amazon-detective-list-invitations-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-invitations-request-schema.json",
  "title": "ListInvitationsRequest",
  "description": "Request to list invitations",
  "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 invitations to return.",
      "example": 100
    }
  }
}