Module Values.CreateDNSViewInputSource

Creates a DNS view within a Route 53 Global Resolver. A DNS view models end users, user groups, networks, and devices, and serves as a parent resource that holds configurations controlling access, authorization, DNS firewall rules, and forwarding rules. 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. globalResolverId : ResourceId.t;
    (*

    The ID of the Route 53 Global Resolver to associate with this DNS view.

    *)
  2. clientToken : ClientToken.t option;
    (*

    A unique string that identifies the request and ensures idempotency.

    *)
  3. name : ResourceName.t;
    (*

    A descriptive name for the DNS view.

    *)
  4. dnssecValidation : DnsSecValidationType.t option;
    (*

    Whether to enable DNSSEC validation for DNS queries in this DNS view. When enabled, the resolver verifies the authenticity and integrity of DNS responses from public name servers for DNSSEC-signed domains.

    *)
  5. ednsClientSubnet : EdnsClientSubnetType.t option;
    (*

    Whether to enable EDNS Client Subnet injection for DNS queries in this DNS view. When enabled, client subnet information is forwarded to provide more accurate geographic-based DNS responses.

    *)
  6. firewallRulesFailOpen : FirewallRulesFailOpenType.t option;
    (*

    Determines the behavior when Route 53 Global Resolver cannot apply DNS firewall rules due to service impairment. When enabled, DNS queries are allowed through; when disabled, queries are blocked.

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

    An optional description for the DNS view.

    *)
  8. tags : Tags.t option;
    (*

    Tags to associate with the DNS view.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?dnssecValidation:??? -> ?ednsClientSubnet:??? -> ?firewallRulesFailOpen:??? -> ?description:??? -> ?tags:??? -> globalResolverId:ResourceId.t -> name:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ResourceId.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