Amazon Route 53 · JSON Structure

Amazon Route 53 Openapi Change Resource Record Sets Request Structure

ChangeResourceRecordSetsRequest schema from openapi

Type: object Properties: 1 Required: 1
DNSDomain RegistrationHealth ChecksRouting

ChangeResourceRecordSetsRequest is a JSON Structure definition published by Amazon Route 53, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ChangeBatch

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-route-53/refs/heads/main/json-structure/amazon-route-53-openapi-change-resource-record-sets-request-structure.json",
  "description": "ChangeResourceRecordSetsRequest schema from openapi",
  "type": "object",
  "properties": {
    "ChangeBatch": {
      "type": "object",
      "properties": {
        "Comment": {
          "type": "string",
          "description": "A comment about the changes."
        },
        "Changes": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "Action": {
                "type": "string",
                "enum": [
                  "CREATE",
                  "DELETE",
                  "UPSERT"
                ]
              },
              "ResourceRecordSet": {
                "$ref": "#/components/schemas/ResourceRecordSet"
              }
            },
            "required": [
              "Action",
              "ResourceRecordSet"
            ]
          }
        }
      },
      "required": [
        "Changes"
      ]
    }
  },
  "required": [
    "ChangeBatch"
  ],
  "name": "ChangeResourceRecordSetsRequest"
}