Module Values.WorkflowStepExecutionSource

Contains runtime details for an instance of a workflow that ran for the associated image build version.

Sourcetype nonrec t = {
  1. stepExecutionId : WorkflowStepExecutionId.t option;
    (*

    Uniquely identifies the workflow step that ran for the associated image build version.

    *)
  2. imageBuildVersionArn : ImageBuildVersionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the image build version that ran the workflow.

    *)
  3. workflowExecutionId : WorkflowExecutionId.t option;
    (*

    Uniquely identifies the runtime instance of the workflow that contains the workflow step that ran for the associated image build version.

    *)
  4. workflowBuildVersionArn : WorkflowBuildVersionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the workflow resource that ran.

    *)
  5. name : WorkflowStepName.t option;
    (*

    The name of the workflow step.

    *)
  6. action : WorkflowStepAction.t option;
    (*

    The name of the step action.

    *)
  7. startTime : DateTime.t option;
    (*

    The timestamp when the workflow step started.

    *)
}
Sourceval make : ?stepExecutionId:??? -> ?imageBuildVersionArn:??? -> ?workflowExecutionId:??? -> ?workflowBuildVersionArn:??? -> ?name:??? -> ?action:??? -> ?startTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of WorkflowStepExecutionId.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