Amazon AppSync · Schema

UpdateDataSourceRequest

Request to update a data source

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
description string Updated description
type string Data source type
serviceRoleArn string IAM role ARN
dynamodbConfig string dynamodbConfig
View JSON Schema on GitHub

JSON Schema

appsync-update-data-source-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-appsync/json-schema/appsync-update-data-source-request-schema.json",
  "title": "UpdateDataSourceRequest",
  "description": "Request to update a data source",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Updated description"
    },
    "type": {
      "type": "string",
      "description": "Data source type"
    },
    "serviceRoleArn": {
      "type": "string",
      "description": "IAM role ARN"
    },
    "dynamodbConfig": {
      "type": "string",
      "description": "dynamodbConfig"
    }
  }
}