Module Values.AssociateHostedZoneOutputSource

Associates a Route 53 private hosted zone with a Route 53 Global Resolver resource. This allows the resolver to resolve DNS queries for the private hosted zone from anywhere globally. 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;
    (*

    ID of the association.

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

    An Amazon Resource Name (ARN) of the Route 53 Global Resolver the private hosted zone is associated to.

    *)
  3. hostedZoneId : HostedZoneId.t option;
    (*

    ID of the private hosted zone.

    *)
  4. hostedZoneName : HostedZoneName.t option;
    (*

    Name of the hosted zone (also the domain associated with the hosted zone).

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

    Name for the private hosted zone association.

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

    The date and time the private hosted zone association was created.

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

    The date and time the private hosted zone association was modified.

    *)
  8. status : HostedZoneAssociationStatus.t option;
    (*

    Aggregate status for all the Amazon Web Services Regions in which the Route 53 Global Resolver exists.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `ValidationException of ValidationException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?resourceArn:??? -> ?hostedZoneId:??? -> ?hostedZoneName:??? -> ?name:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.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 | `ResourceNotFoundException of ResourceNotFoundException.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 | `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