Amazon DMS · Schema

AccountQuota

Describes a quota for an Amazon Web Services account, for example the number of replication instances allowed.

Data ReplicationDatabaseDatabase MigrationMigration

Properties

Name Type Description
AccountQuotaName object
Used object
Max object
View JSON Schema on GitHub

JSON Schema

amazon-dms-account-quota-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-account-quota-schema.json",
  "title": "AccountQuota",
  "description": "Describes a quota for an Amazon Web Services account, for example the number of replication instances allowed.",
  "type": "object",
  "properties": {
    "AccountQuotaName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the DMS quota for this Amazon Web Services account."
        }
      ]
    },
    "Used": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The amount currently used toward the quota maximum."
        }
      ]
    },
    "Max": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The maximum allowed value for the quota."
        }
      ]
    }
  }
}