Module Values.ArtifactSource

Artifacts are the files that are worked on by actions in the pipeline. See the action configuration for each action for details about artifact parameters. For example, the S3 source action artifact is a file name (or file path), and the files are generally provided as a ZIP file. Example artifact name: SampleApp_Windows.zip

Sourcetype nonrec t = {
  1. name : ArtifactName.t option;
    (*

    The artifact's name.

    *)
  2. revision : Revision.t option;
    (*

    The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).

    *)
  3. location : ArtifactLocation.t option;
    (*

    The location of an artifact.

    *)
}
Sourceval make : ?name:??? -> ?revision:??? -> ?location:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ArtifactName.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of S3BucketName.t ]) list ]) 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