Amazon Route 53 Resolver · Schema
UpdateFirewallDomainsRequest
UpdateFirewallDomainsRequest schema from openapi
DNSHybrid CloudNetworking
Properties
| Name | Type | Description |
|---|---|---|
| FirewallDomainListId | object | |
| Operation | object | |
| Domains | object |
JSON Schema
{
"$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": "<p>What you want DNS Firewall to do with the domains that you are providing: </p> <ul> <li> <p> <code>ADD</code> - Add the domains to the ones that are already in the domain list. </p> </li> <li> <p> <code>REMOVE</code> - Search the domain list for the domains and remove them from the list.</p> </li> <li> <p> <code>REPLACE</code> - Update the domain list to exactly match the list that you are providing. </p> </li> </ul>"
}
]
},
"Domains": {
"allOf": [
{
"$ref": "#/components/schemas/FirewallDomains"
},
{
"description": "<p>A list of domains to use in the update operation.</p> <important> <p>There is a limit of 1000 domains per request.</p> </important> <p>Each domain specification in your domain list must satisfy the following requirements: </p> <ul> <li> <p>It can optionally start with <code>*</code> (asterisk).</p> </li> <li> <p>With the exception of the optional starting asterisk, it must only contain the following characters: <code>A-Z</code>, <code>a-z</code>, <code>0-9</code>, <code>-</code> (hyphen).</p> </li> <li> <p>It must be from 1-255 characters in length. </p> </li> </ul>"
}
]
}
},
"required": [
"FirewallDomainListId",
"Operation",
"Domains"
]
}