Module Values.ResolvedArtifactSource

Represents a resolved build artifact. A resolved artifact is an artifact that is built and deployed to the destination, such as Amazon S3.

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

    Specifies the type of artifact.

    *)
  2. location : String_.t option;
    (*

    The location of the artifact.

    *)
  3. identifier : String_.t option;
    (*

    The identifier of the artifact.

    *)
}
Sourceval make : ?type_:??? -> ?location:??? -> ?identifier:??? -> 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