{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-route53-resolver/refs/heads/main/json-schema/amazon-route53-resolver-openapi-update-firewall-domains-request-schema.json", "title": "UpdateFirewallDomainsRequest", "description": "UpdateFirewallDomainsRequest schema from openapi", "type": "object", "properties": { "FirewallDomainListId": { "allOf": [ { "$ref": "#/components/schemas/ResourceId" }, { "description": "The ID of the domain list whose domains you want to update. " } ] }, "Operation": { "allOf": [ { "$ref": "#/components/schemas/FirewallDomainUpdateOperation" }, { "description": "

What you want DNS Firewall to do with the domains that you are providing:

" } ] }, "Domains": { "allOf": [ { "$ref": "#/components/schemas/FirewallDomains" }, { "description": "

A list of domains to use in the update operation.

There is a limit of 1000 domains per request.

Each domain specification in your domain list must satisfy the following requirements:

" } ] } }, "required": [ "FirewallDomainListId", "Operation", "Domains" ] }