Amazon Clean Rooms · Schema

ListConfiguredTablesResponse

Response for listing configured tables.

Clean RoomsData CollaborationPrivacyAnalyticsMarketing

Properties

Name Type Description
nextToken string The token value retrieved from a previous paginated request.
configuredTableList array The list of configured tables.
View JSON Schema on GitHub

JSON Schema

clean-rooms-list-configured-tables-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-configured-tables-response-schema.json",
  "title": "ListConfiguredTablesResponse",
  "description": "Response for listing configured tables.",
  "type": "object",
  "properties": {
    "nextToken": {
      "type": "string",
      "description": "The token value retrieved from a previous paginated request."
    },
    "configuredTableList": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ConfiguredTable"
      },
      "description": "The list of configured tables."
    }
  }
}