Module Values.ArtifactDetailSource

Artifact details for the action execution, such as the artifact location.

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

    The artifact object name for the action execution.

    *)
  2. s3location : S3Location.t option;
    (*

    The Amazon S3 artifact location for the action execution.

    *)
}
Sourceval make : ?name:??? -> ?s3location:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ArtifactName.t | `Structure of (string * [> `String of S3Bucket.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