Amazon DMS · Schema

ReplicationInstanceTaskLog

Contains metadata for a replication instance task log.

Data ReplicationDatabaseDatabase MigrationMigration

Properties

Name Type Description
ReplicationTaskName object
ReplicationTaskArn object
ReplicationInstanceTaskLogSize object
View JSON Schema on GitHub

JSON Schema

amazon-dms-replication-instance-task-log-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-dms/refs/heads/main/json-schema/amazon-dms-replication-instance-task-log-schema.json",
  "title": "ReplicationInstanceTaskLog",
  "description": "Contains metadata for a replication instance task log.",
  "type": "object",
  "properties": {
    "ReplicationTaskName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the replication task."
        }
      ]
    },
    "ReplicationTaskArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the replication task."
        }
      ]
    },
    "ReplicationInstanceTaskLogSize": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The size, in bytes, of the replication task log."
        }
      ]
    }
  }
}