Module Values.CreateGlobalResolverOutputSource

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. id : ResourceId.t option;
    (*

    The unique identifier for the Route 53 Global Resolver.

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

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

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

    The unique string that identifies the request and ensures idempotency.

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

    The date and time when the Route 53 Global Resolver was created.

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

    The description of the Route 53 Global Resolver.

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

    The hostname that DNS clients should use for TLS certificate validation when connecting to the Route 53 Global Resolver. This value resolves to the global anycast IP addresses for the resolver.

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

    The IP address type configured for the Route 53 Global Resolver (IPV4 or DUAL_STACK).

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

    The global anycast IPv4 addresses associated with the Route 53 Global Resolver. DNS clients can send queries to these addresses from anywhere on the internet.

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

    The global anycast IPv6 addresses associated with the Route 53 Global Resolver. This field is only populated when ipAddressType is DUAL_STACK. DNS clients can send queries to these addresses from anywhere on the internet.

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

    The name of the Route 53 Global Resolver.

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

    The Amazon Web Services Region where observability data for the Route 53 Global Resolver is stored.

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

    The Amazon Web Services Regions where the Route 53 Global Resolver is deployed and operational.

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

    The current status of the Route 53 Global Resolver. Possible values are CREATING (being provisioned), UPDATING (being modified), OPERATIONAL (ready to serve queries), or DELETING (being removed).

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

    The date and time when the Route 53 Global Resolver was last updated.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?arn:??? -> ?clientToken:??? -> ?createdAt:??? -> ?description:??? -> ?dnsName:??? -> ?ipAddressType:??? -> ?ipv4Addresses:??? -> ?ipv6Addresses:??? -> ?name:??? -> ?observabilityRegion:??? -> ?regions:??? -> ?status:??? -> ?updatedAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 IPv4Address.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