Module Values.SetupRequestSource

Returns information that was submitted during the SetupInstanceHttps request. Email information is redacted for privacy.

Sourcetype nonrec t = {
  1. instanceName : ResourceName.t option;
    (*

    The name of the Lightsail instance.

    *)
  2. domainNames : SetupDomainNameList.t option;
    (*

    The name of the domain and subdomains that the SSL/TLS certificate secures.

    *)
  3. certificateProvider : CertificateProvider.t option;
    (*

    The Certificate Authority (CA) that issues the SSL/TLS certificate.

    *)
}
Sourceval make : ?instanceName:??? -> ?domainNames:??? -> ?certificateProvider:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SetupDomainName.t ] list | `String of ResourceName.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