Module Values.RepositorySource

Detailed 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 your AWS CodeStar connection that connects Proton to your repository provider account.

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

    Your customer Amazon Web Services KMS encryption key.

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

    The repository name.

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

    The repository provider.

    *)
}
Sourceval make : ?arn:??? -> ?connectionArn:??? -> ?encryptionKey:??? -> ?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