Module Values.GetGlobalResolverOutputSource

Retrieves information about a Route 53 Global Resolver instance. 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. id : ResourceId.t option;
    (*

    The ID of the Global Resolver.

    *)
  2. arn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Global Resolver.

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

    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.

    *)
  4. dnsName : Sni.t option;
    (*

    The hostname used by the customers' DNS clients for certification validation.

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

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

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

    The name of the Global Resolver.

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

    The description of the Global Resolver.

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

    The Amazon Web Services Regions in which the Global Resolver operate.

    *)
  9. createdAt : ISO8601TimeString.t option;
    (*

    The date and time the Global Resolver was created.

    *)
  10. updatedAt : ISO8601TimeString.t option;
    (*

    The date and time the Global Resolver was updated.

    *)
  11. status : CRResourceStatus.t option;
    (*

    The operational status of the Global Resolver.

    *)
  12. ipv4Addresses : IPv4Addresses.t option;
    (*

    List of anycast IPv4 addresses associated with the Global Resolver instance.

    *)
  13. ipv6Addresses : IPv6Addresses.t option;
    (*

    List of anycast IPv6 addresses associated with the Global Resolver instance. This field is only populated when ipAddressType is DUAL_STACK.

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

    The IP address type configured for the Global Resolver.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?arn:??? -> ?clientToken:??? -> ?dnsName:??? -> ?observabilityRegion:??? -> ?name:??? -> ?description:??? -> ?regions:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> ?ipv4Addresses:??? -> ?ipv6Addresses:??? -> ?ipAddressType:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Region.t ] list | `String of ResourceId.t | `Timestamp of ISO8601TimeString.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