Values.DefinitionRepositorySourceContains information about a source code repository that hosts the workflow definition files.
type nonrec t = {connectionArn : ConnectionArn.t;The Amazon Resource Name (ARN) of the connection to the source code repository.
*)fullRepositoryId : FullRepositoryId.t;The full repository identifier, including the repository owner and name. For example, 'repository-owner/repository-name'.
*)sourceReference : SourceReference.t option;The source reference for the repository, such as a branch name, tag, or commit ID.
*)excludeFilePatterns : ExcludeFilePatternList.t option;A list of file patterns to exclude when retrieving the workflow definition from the repository.
*)}val make :
?sourceReference:??? ->
?excludeFilePatterns:??? ->
connectionArn:ConnectionArn.t ->
fullRepositoryId:FullRepositoryId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of String_.t ] list
| `String of ConnectionArn.t
| `Structure of
(string * [> `Enum of string | `String of SourceReferenceValue.t ])
list ])
list ]