Module Values.DefinitionRepositorySource

Contains information about a source code repository that hosts the workflow definition files.

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

    The Amazon Resource Name (ARN) of the connection to the source code repository.

    *)
  2. fullRepositoryId : FullRepositoryId.t;
    (*

    The full repository identifier, including the repository owner and name. For example, 'repository-owner/repository-name'.

    *)
  3. sourceReference : SourceReference.t option;
    (*

    The source reference for the repository, such as a branch name, tag, or commit ID.

    *)
  4. excludeFilePatterns : ExcludeFilePatternList.t option;
    (*

    A list of file patterns to exclude when retrieving the workflow definition from the repository.

    *)
}
Sourceval context_ : string
Sourceval make : ?sourceReference:??? -> ?excludeFilePatterns:??? -> connectionArn:ConnectionArn.t -> fullRepositoryId:FullRepositoryId.t -> unit -> t
Sourceval 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 ]
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