Module Values.SourceCodeVersionSource

Identifies a version of code that App Runner refers to within a source code repository.

Sourcetype nonrec t = {
  1. type_ : SourceCodeVersionType.t;
    (*

    The type of version identifier. For a git-based repository, branches represent versions.

    *)
  2. value : String_.t;
    (*

    A source code version. For a git-based repository, a branch name maps to a specific version. App Runner uses the most recent commit to the branch.

    *)
}
Sourceval context_ : string
Sourceval make : type_:SourceCodeVersionType.t -> value:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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