Module Values.DomainDescriptionSource

Information 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.

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

    The name of the domain.

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

    The Amazon Web Services account ID that owns the domain.

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

    The Amazon Resource Name (ARN) of the domain.

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

    The current status of a domain.

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

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

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

    The ARN of an Key Management Service (KMS) key associated with a domain.

    *)
  7. repositoryCount : Integer.t option;
    (*

    The number of repositories in the domain.

    *)
  8. assetSizeBytes : Long.t option;
    (*

    The total size of all assets in the domain.

    *)
  9. s3BucketArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon S3 bucket that is used to store package assets in the domain.

    *)
}
Sourceval make : ?name:??? -> ?owner:??? -> ?arn:??? -> ?status:??? -> ?createdTime:??? -> ?encryptionKey:??? -> ?repositoryCount:??? -> ?assetSizeBytes:??? -> ?s3BucketArn:??? -> unit -> t
Sourceval 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 ]
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