Module Values.DomainVerificationSummarySource

Summary 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.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?domainName:??? -> ?status:??? -> ?txtMethodConfig:??? -> ?createdAt:??? -> ?lastVerifiedTime:??? -> ?tags:??? -> unit -> 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