Amazon AppSync · Schema

ListDataSourcesResponse

Response with list of data sources

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
dataSources array List of data sources
nextToken string Pagination token
View JSON Schema on GitHub

JSON Schema

appsync-list-data-sources-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-appsync/json-schema/appsync-list-data-sources-response-schema.json",
  "title": "ListDataSourcesResponse",
  "description": "Response with list of data sources",
  "type": "object",
  "properties": {
    "dataSources": {
      "type": "array",
      "description": "List of data sources"
    },
    "nextToken": {
      "type": "string",
      "description": "Pagination token"
    }
  }
}