Module Values.DescribedExecutionSource

The details for an execution object.

Sourcetype nonrec t = {
  1. executionId : ExecutionId.t option;
    (*

    A unique identifier for the execution of a workflow.

    *)
  2. initialFileLocation : FileLocation.t option;
    (*

    A structure that describes the Amazon S3 or EFS file location. This is the file location when the execution begins: if the file is being copied, this is the initial (as opposed to destination) file location.

    *)
  3. serviceMetadata : ServiceMetadata.t option;
    (*

    A container object for the session details that are associated with a workflow.

    *)
  4. executionRole : Role.t option;
    (*

    The IAM role associated with the execution.

    *)
  5. loggingConfiguration : LoggingConfiguration.t option;
    (*

    The IAM logging role associated with the execution.

    *)
  6. posixProfile : PosixProfile.t option;
  7. status : ExecutionStatus.t option;
    (*

    The status is one of the execution. Can be in progress, completed, exception encountered, or handling the exception.

    *)
  8. results : ExecutionResults.t option;
    (*

    A structure that describes the execution results. This includes a list of the steps along with the details of each step, error type and message (if any), and the OnExceptionSteps structure.

    *)
}
Sourceval make : ?executionId:??? -> ?initialFileLocation:??? -> ?serviceMetadata:??? -> ?executionRole:??? -> ?loggingConfiguration:??? -> ?posixProfile:??? -> ?status:??? -> ?results:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ExecutionId.t | `Structure of (string * [> `List of [> `Long of PosixId.t | `Structure of (string * [> `Enum of string | `String of StepResultOutputsJson.t | `Structure of (string * [> `Enum of string | `String of ExecutionErrorMessage.t ]) list ]) list ] list | `Long of PosixId.t | `String of Role.t | `Structure of (string * [> `String of S3Bucket.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