Module Values.CreateGlobalResolverInputSource

Creates a new Route 53 Global Resolver instance. A Route 53 Global Resolver is a global, internet-accessible DNS resolver that provides secure DNS resolution for both public and private domains through global anycast IP addresses. 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. clientToken : ClientToken.t option;
    (*

    A unique string that identifies the request and ensures idempotency. If you make multiple requests with the same client token, only one Route 53 Global Resolver is created.

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

    An optional description for the Route 53 Global Resolver instance. Maximum length of 1024 characters.

    *)
  3. ipAddressType : GlobalResolverIpAddressType.t option;
    (*

    The IP address type for the Route 53 Global Resolver. Valid values are IPV4 (default) or DUAL_STACK for both IPv4 and IPv6 support.

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

    A descriptive name for the Route 53 Global Resolver instance. Maximum length of 64 characters.

    *)
  5. observabilityRegion : Region.t option;
    (*

    The Amazon Web Services Region where query resolution logs and metrics will be aggregated and delivered. If not specified, logging is not enabled.

    *)
  6. regions : Regions.t;
    (*

    List of Amazon Web Services Regions where the Route 53 Global Resolver will operate. The resolver will be distributed across these Regions to provide global availability and low-latency DNS resolution.

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

    Tags to associate with the Route 53 Global Resolver. Tags are key-value pairs that help you organize and identify your resources.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?description:??? -> ?ipAddressType:??? -> ?observabilityRegion:??? -> ?tags:??? -> name:ResourceName.t -> regions:Regions.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Region.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ClientToken.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