Module Values.ActionExecutionOutputSource

Output details listed for an action execution, such as the action execution result.

Sourcetype nonrec t = {
  1. outputArtifacts : ArtifactDetailList.t option;
    (*

    Details of output artifacts of the action that correspond to the action execution.

    *)
  2. executionResult : ActionExecutionResult.t option;
    (*

    Execution result information listed in the output details for an action execution.

    *)
  3. outputVariables : OutputVariablesMap.t option;
    (*

    The outputVariables field shows the key-value pairs that were output as part of that execution.

    *)
}
Sourceval make : ?outputArtifacts:??? -> ?executionResult:??? -> ?outputVariables:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ArtifactName.t | `Structure of (string * [> `String of S3Bucket.t ]) list ]) list ] list | `Map of ([> `String of OutputVariablesKey.t ] * [> `String of OutputVariablesValue.t ]) list | `Structure of (string * [> `String of ExternalExecutionId.t | `Structure of (string * [> `String of Code.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