Module Values.DnsVerificationSource

Contains DNS verification details for a target domain, including the DNS record to create for domain ownership verification.

Sourcetype nonrec t = {
  1. token : String_.t option;
    (*

    The verification token to include in the DNS record value.

    *)
  2. dnsRecordName : String_.t option;
    (*

    The name of the DNS record to create for verification.

    *)
  3. dnsRecordType : DNSRecordType.t option;
    (*

    The type of DNS record to create. Currently, only TXT is supported.

    *)
}
Sourceval make : ?token:??? -> ?dnsRecordName:??? -> ?dnsRecordType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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