Module Values.RepositorySummarySource

Summary data of a linked repository—a repository that has been registered with Proton.

Sourcetype nonrec t = {
  1. arn : RepositoryArn.t option;
    (*

    The Amazon Resource Name (ARN) of the linked repository.

    *)
  2. connectionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the of your connection that connects Proton to your repository.

    *)
  3. name : RepositoryName.t option;
    (*

    The repository name.

    *)
  4. provider : RepositoryProvider.t option;
    (*

    The repository provider.

    *)
}
Sourceval make : ?arn:??? -> ?connectionArn:??? -> ?name:??? -> ?provider:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RepositoryArn.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