Module Values.UpdateFirewallRuleInputSource

Updates the configuration of a DNS firewall rule. Route 53 Global Resolver is a global service that supports resolvers in multiple Amazon Web Services Regions but you must specify the US East (Ohio) Region to create, update, or otherwise work with Route 53 Global Resolver resources. That is, for example, specify --region us-east-2 on Amazon Web Services CLI commands.

Sourcetype nonrec t = {
  1. action : FirewallRuleAction.t option;
    (*

    The action that DNS Firewall should take on a DNS query when it matches one of the domains in the rule's domain list, or a threat in a DNS Firewall Advanced rule.

    *)
  2. blockOverrideDnsType : BlockOverrideDnsQueryType.t option;
    (*

    The DNS record's type. This determines the format of the record value that you provided in BlockOverrideDomain. Used for the rule action BLOCK with a BlockResponse setting of OVERRIDE.

    *)
  3. blockOverrideDomain : Domain.t option;
    (*

    The custom DNS record to send back in response to the query. Used for the rule action BLOCK with a BlockResponse setting of OVERRIDE.

    *)
  4. blockOverrideTtl : BlockOverrideTtl.t option;
    (*

    The recommended amount of time, in seconds, for the DNS resolver or web browser to cache the provided override record. Used for the rule action BLOCK with a BlockResponse setting of OVERRIDE.

    *)
  5. blockResponse : FirewallBlockResponse.t option;
    (*

    The way that you want DNS Firewall to block the request. Used for the rule action setting BLOCK.

    *)
  6. clientToken : ClientToken.t;
    (*

    A unique, case-sensitive identifier to ensure idempotency. This means that making the same request multiple times with the same clientToken has the same result every time.

    *)
  7. confidenceThreshold : ConfidenceThreshold.t option;
    (*

    The confidence threshold for DNS Firewall Advanced. You must provide this value when you create a DNS Firewall Advanced rule.

    *)
  8. description : ResourceDescription.t option;
    (*

    The description for the Firewall rule.

    *)
  9. dnsAdvancedProtection : DnsAdvancedProtection.t option;
    (*

    The type of the DNS Firewall Advanced rule. Valid values are DGA, DNS_TUNNELING, and DICTIONARY_DGA.

    *)
  10. firewallRuleId : ResourceId.t;
    (*

    The ID of the DNS Firewall rule.

    *)
  11. name : ResourceName.t option;
    (*

    The name of the DNS Firewall rule.

    *)
  12. priority : FirewallRulePriority.t option;
    (*

    The setting that determines the processing order of the rule in the rule group. DNS Firewall processes the rules in a rule group by order of priority, starting from the lowest setting.

    *)
}
Sourceval context_ : string
Sourceval make : ?action:??? -> ?blockOverrideDnsType:??? -> ?blockOverrideDomain:??? -> ?blockOverrideTtl:??? -> ?blockResponse:??? -> ?confidenceThreshold:??? -> ?description:??? -> ?dnsAdvancedProtection:??? -> ?name:??? -> ?priority:??? -> clientToken:ClientToken.t -> firewallRuleId:ResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of BlockOverrideTtl.t | `Long of FirewallRulePriority.t | `String of Domain.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t