CreateSyncJobRequest

CreateSyncJobRequest schema

3D VisualizationDigital TwinIndustrial IoTIoT

Properties

Name Type Description
syncRole object
tags object
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-create-sync-job-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-create-sync-job-request-schema.json",
  "title": "CreateSyncJobRequest",
  "description": "CreateSyncJobRequest schema",
  "type": "object",
  "properties": {
    "syncRole": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RoleArn"
        },
        {
          "description": "The SyncJob IAM role. This IAM role is used by the SyncJob to read from the syncSource, and create, update, or delete the corresponding resources."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "The SyncJob tags."
        }
      ]
    }
  },
  "required": [
    "syncRole"
  ]
}