Module Values.DomainSummarySource

Information about a domain, including its name, Amazon Resource Name (ARN), and status. The ListDomains operation returns a list of DomainSummary objects.

Sourcetype nonrec t = {
  1. name : DomainName.t option;
    (*

    The name of the domain.

    *)
  2. owner : AccountId.t option;
    (*

    The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.

    *)
  3. arn : Arn.t option;
    (*

    The ARN of the domain.

    *)
  4. status : DomainStatus.t option;
    (*

    A string that contains the status of the domain.

    *)
  5. createdTime : Timestamp.t option;
    (*

    A timestamp that contains the date and time the domain was created.

    *)
  6. encryptionKey : Arn.t option;
    (*

    The key used to encrypt the domain.

    *)
}
Sourceval make : ?name:??? -> ?owner:??? -> ?arn:??? -> ?status:??? -> ?createdTime:??? -> ?encryptionKey:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainName.t | `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