Module Values.RepositorySummarySource

Details about a repository, including its Amazon Resource Name (ARN), description, and domain information. The ListRepositories operation returns a list of RepositorySummary objects.

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

    The name of the repository.

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

    The Amazon Web Services account ID that manages the repository.

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

    The name of the domain that contains the repository.

    *)
  4. domainOwner : 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.

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

    The ARN of the repository.

    *)
  6. description : Description.t option;
    (*

    The description of the repository.

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

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

    *)
}
Sourceval make : ?name:??? -> ?administratorAccount:??? -> ?domainName:??? -> ?domainOwner:??? -> ?arn:??? -> ?description:??? -> ?createdTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RepositoryName.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