Module Values.DomainSummarySource

Object for the summarized details of the domain.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    The unique identifier of the domain.

    *)
  2. domainArn : DomainArn.t option;
    (*

    The Amazon Resource Name (ARN) of the domain.

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

    The name of the domain.

    *)
}
Sourceval make : ?domainId:??? -> ?domainArn:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainId.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