Module Values.GetDomainVerificationResponseSource

Retrieves information about a domain verification.ß

Sourcetype nonrec t = {
  1. id : DomainVerificationId.t option;
    (*

    The ID of the domain verification.

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

    The Amazon Resource Name (ARN) of the domain verification.

    *)
  3. domainName : DomainName.t option;
    (*

    The domain name being verified.

    *)
  4. status : VerificationStatus.t option;
    (*

    The current status of the domain verification process.

    *)
  5. txtMethodConfig : TxtMethodConfig.t option;
    (*

    The TXT record configuration used for domain verification.

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

    The date and time that the domain verification was created, in ISO-8601 format.

    *)
  7. lastVerifiedTime : Timestamp.t option;
    (*

    The date and time that the domain was last successfully verified, in ISO-8601 format.

    *)
  8. tags : TagMap.t option;
    (*

    The tags associated with the domain verification.

    *)
}
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:??? -> ?domainName:??? -> ?status:??? -> ?txtMethodConfig:??? -> ?createdAt:??? -> ?lastVerifiedTime:??? -> ?tags:??? -> 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 | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of DomainVerificationId.t | `Structure of (string * [> `String of String_.t ]) list | `Timestamp of Timestamp.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