Module Values.CreateRepositoryLinkInputSource

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

Sourcetype nonrec t = {
  1. connectionArn : ConnectionArn.t;
    (*

    The Amazon Resource Name (ARN) of the connection to be associated with the repository link.

    *)
  2. ownerId : OwnerId.t;
    (*

    The owner ID for the repository associated with a specific sync configuration, such as the owner ID in GitHub.

    *)
  3. repositoryName : RepositoryName.t;
    (*

    The name of the repository to be associated with the repository link.

    *)
  4. encryptionKeyArn : KmsKeyArn.t option;
    (*

    The Amazon Resource Name (ARN) encryption key for the repository to be associated with the repository link.

    *)
  5. tags : TagList.t option;
    (*

    The tags for the repository to be associated with the repository link.

    *)
}
Sourceval context_ : string
Sourceval make : ?encryptionKeyArn:??? -> ?tags:??? -> connectionArn:ConnectionArn.t -> ownerId:OwnerId.t -> repositoryName:RepositoryName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ConnectionArn.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