SyncJobSummary

The SyncJob summary.

3D VisualizationDigital TwinIndustrial IoTIoT

Properties

Name Type Description
arn object
workspaceId object
syncSource object
status object
creationDateTime object
updateDateTime object
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-sync-job-summary-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-sync-job-summary-schema.json",
  "title": "SyncJobSummary",
  "description": "The SyncJob summary.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TwinMakerArn"
        },
        {
          "description": "The SyncJob summary ARN."
        }
      ]
    },
    "workspaceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Id"
        },
        {
          "description": "The ID of the workspace that contains the sync job."
        }
      ]
    },
    "syncSource": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyncSource"
        },
        {
          "description": "The sync source."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyncJobStatus"
        },
        {
          "description": "The SyncJob summaries status."
        }
      ]
    },
    "creationDateTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The creation date and time."
        }
      ]
    },
    "updateDateTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The update date and time."
        }
      ]
    }
  }
}