Values.DomainDescriptionSourceInformation about a domain. A domain is a container for repositories. When you create a domain, it is empty until you add one or more repositories.
type nonrec t = {name : DomainName.t option;The name of the domain.
*)owner : AccountId.t option;The Amazon Web Services account ID that owns the domain.
*)arn : Arn.t option;The Amazon Resource Name (ARN) of the domain.
*)status : DomainStatus.t option;The current status of a domain.
*)createdTime : Timestamp.t option;A timestamp that represents the date and time the domain was created.
*)encryptionKey : Arn.t option;The ARN of an Key Management Service (KMS) key associated with a domain.
*)repositoryCount : Integer.t option;The number of repositories in the domain.
*)assetSizeBytes : Long.t option;The total size of all assets in the domain.
*)s3BucketArn : Arn.t option;The Amazon Resource Name (ARN) of the Amazon S3 bucket that is used to store package assets in the domain.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Integer.t
| `Long of Long.t
| `String of DomainName.t
| `Timestamp of Timestamp.t ])
list ]