Module Values.UpdateGlobalResolverInputSource

Updates the configuration of a Route 53 Global Resolver instance. You can modify the name, description, and observability Region. 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 Global Resolver.

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

    The name of the Global Resolver.

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

    The Amazon Web Services Regions in which the users' Global Resolver query resolution logs will be propagated.

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

    The description of the Global Resolver.

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

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

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?observabilityRegion:??? -> ?description:??? -> ?ipAddressType:??? -> ?regions:??? -> globalResolverId:ResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Region.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