Values.DomainSummarySourceInformation about a domain, including its name, Amazon Resource Name (ARN), and status. The ListDomains operation returns a list of DomainSummary objects.
type nonrec t = {name : DomainName.t option;The name of the domain.
*)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.
*)arn : Arn.t option;The ARN of the domain.
*)status : DomainStatus.t option;A string that contains the status of the domain.
*)createdTime : Timestamp.t option;A timestamp that contains the date and time the domain was created.
*)encryptionKey : Arn.t option;The key used to encrypt the domain.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of DomainName.t
| `Timestamp of Timestamp.t ])
list ]