Amazon Clean Rooms · Schema

ListProtectedQueriesResponse

Response for listing protected queries.

Clean RoomsData CollaborationPrivacyAnalyticsMarketing

Properties

Name Type Description
nextToken string The token value retrieved from a previous paginated request.
protectedQueries array The list of protected queries.
View JSON Schema on GitHub

JSON Schema

clean-rooms-list-protected-queries-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-clean-rooms/refs/heads/main/json-schema/clean-rooms-list-protected-queries-response-schema.json",
  "title": "ListProtectedQueriesResponse",
  "description": "Response for listing protected queries.",
  "type": "object",
  "properties": {
    "nextToken": {
      "type": "string",
      "description": "The token value retrieved from a previous paginated request."
    },
    "protectedQueries": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ProtectedQuery"
      },
      "description": "The list of protected queries."
    }
  }
}