Module Values.NotebookExecutionSource

A notebook execution. An execution is a specific instance that an Amazon EMR Notebook is run using the StartNotebookExecution action.

Sourcetype nonrec t = {
  1. notebookExecutionId : XmlStringMaxLen256.t option;
    (*

    The unique identifier of a notebook execution.

    *)
  2. editorId : XmlStringMaxLen256.t option;
    (*

    The unique identifier of the Amazon EMR Notebook that is used for the notebook execution.

    *)
  3. executionEngine : ExecutionEngineConfig.t option;
    (*

    The execution engine, such as an Amazon EMR cluster, used to run the Amazon EMR notebook and perform the notebook execution.

    *)
  4. notebookExecutionName : XmlStringMaxLen256.t option;
    (*

    A name for the notebook execution.

    *)
  5. notebookParams : XmlString.t option;
    (*

    Input parameters in JSON format passed to the Amazon EMR Notebook at runtime for execution.

    *)
  6. status : NotebookExecutionStatus.t option;
    (*

    The status of the notebook execution. START_PENDING indicates that the cluster has received the execution request but execution has not begun. STARTING indicates that the execution is starting on the cluster. RUNNING indicates that the execution is being processed by the cluster. FINISHING indicates that execution processing is in the final stages. FINISHED indicates that the execution has completed without error. FAILING indicates that the execution is failing and will not finish successfully. FAILED indicates that the execution failed. STOP_PENDING indicates that the cluster has received a StopNotebookExecution request and the stop is pending. STOPPING indicates that the cluster is in the process of stopping the execution as a result of a StopNotebookExecution request. STOPPED indicates that the execution stopped because of a StopNotebookExecution request.

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

    The timestamp when notebook execution started.

    *)
  8. endTime : Date.t option;
    (*

    The timestamp when notebook execution ended.

    *)
  9. arn : XmlStringMaxLen256.t option;
    (*

    The Amazon Resource Name (ARN) of the notebook execution.

    *)
  10. outputNotebookURI : XmlString.t option;
    (*

    The location of the notebook execution's output file in Amazon S3.

    *)
  11. lastStateChangeReason : XmlString.t option;
    (*

    The reason for the latest status change of the notebook execution.

    *)
  12. notebookInstanceSecurityGroupId : XmlStringMaxLen256.t option;
    (*

    The unique identifier of the Amazon EC2 security group associated with the Amazon EMR Notebook instance. For more information see Specifying Amazon EC2 Security Groups for Amazon EMR Notebooks in the Amazon EMR Management Guide.

    *)
  13. tags : TagList.t option;
    (*

    A list of tags associated with a notebook execution. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters and an optional value string with a maximum of 256 characters.

    *)
  14. notebookS3Location : NotebookS3LocationForOutput.t option;
    (*

    The Amazon S3 location that stores the notebook execution input.

    *)
  15. outputNotebookS3Location : OutputNotebookS3LocationForOutput.t option;
    (*

    The Amazon S3 location for the notebook execution output.

    *)
  16. outputNotebookFormat : OutputNotebookFormat.t option;
    (*

    The output format for the notebook execution.

    *)
  17. environmentVariables : EnvironmentVariablesMap.t option;
    (*

    The environment variables associated with the notebook execution.

    *)
}
Sourceval make : ?notebookExecutionId:??? -> ?editorId:??? -> ?executionEngine:??? -> ?notebookExecutionName:??? -> ?notebookParams:??? -> ?status:??? -> ?startTime:??? -> ?endTime:??? -> ?arn:??? -> ?outputNotebookURI:??? -> ?lastStateChangeReason:??? -> ?notebookInstanceSecurityGroupId:??? -> ?tags:??? -> ?notebookS3Location:??? -> ?outputNotebookS3Location:??? -> ?outputNotebookFormat:??? -> ?environmentVariables:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `Map of ([> `String of XmlStringMaxLen256.t ] * [> `String of XmlString.t ]) list | `String of XmlStringMaxLen256.t | `Structure of (string * [> `Enum of string | `String of XmlStringMaxLen256.t ]) list | `Timestamp of Date.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