Module Values.SubDomainSource

The subdomain for the domain association.

Sourcetype nonrec t = {
  1. subDomainSetting : SubDomainSetting.t option;
    (*

    Describes the settings for the subdomain.

    *)
  2. verified : Verified.t option;
    (*

    The verified status of the subdomain

    *)
  3. dnsRecord : DNSRecord.t option;
    (*

    The DNS record for the subdomain.

    *)
}
Sourceval make : ?subDomainSetting:??? -> ?verified:??? -> ?dnsRecord:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Verified.t | `String of DNSRecord.t | `Structure of (string * [> `String of DomainPrefix.t ]) list ]) 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