Values.CreateRepositoryLinkInputSourceCreates a link to a specified external Git repository. A repository link allows Git sync to monitor and sync changes to files in a specified Git repository.
type nonrec t = {connectionArn : ConnectionArn.t;The Amazon Resource Name (ARN) of the connection to be associated with the repository link.
*)ownerId : OwnerId.t;The owner ID for the repository associated with a specific sync configuration, such as the owner ID in GitHub.
*)repositoryName : RepositoryName.t;The name of the repository to be associated with the repository link.
*)encryptionKeyArn : KmsKeyArn.t option;The Amazon Resource Name (ARN) encryption key for the repository to be associated with the repository link.
*)}val make :
?encryptionKeyArn:??? ->
?tags:??? ->
connectionArn:ConnectionArn.t ->
ownerId:OwnerId.t ->
repositoryName:RepositoryName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `String of TagKey.t ]) list ] list
| `String of ConnectionArn.t ])
list ]