Module Values.JobRunSource

This entity describes a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.

Sourcetype nonrec t = {
  1. id : ResourceIdString.t option;
    (*

    The ID of the job run.

    *)
  2. name : ResourceNameString.t option;
    (*

    The name of the job run.

    *)
  3. virtualClusterId : ResourceIdString.t option;
    (*

    The ID of the job run's virtual cluster.

    *)
  4. arn : JobArn.t option;
    (*

    The ARN of job run.

    *)
  5. state : JobRunState.t option;
    (*

    The state of the job run.

    *)
  6. clientToken : ClientToken.t option;
    (*

    The client token used to start a job run.

    *)
  7. executionRoleArn : IAMRoleArn.t option;
    (*

    The execution role ARN of the job run.

    *)
  8. releaseLabel : ReleaseLabel.t option;
    (*

    The release version of Amazon EMR.

    *)
  9. configurationOverrides : ConfigurationOverrides.t option;
    (*

    The configuration settings that are used to override default configuration.

    *)
  10. jobDriver : JobDriver.t option;
    (*

    Parameters of job driver for the job run.

    *)
  11. createdAt : Date.t option;
    (*

    The date and time when the job run was created.

    *)
  12. createdBy : RequestIdentityUserArn.t option;
    (*

    The user who created the job run.

    *)
  13. finishedAt : Date.t option;
    (*

    The date and time when the job run has finished.

    *)
  14. stateDetails : String256.t option;
    (*

    Additional details of the job run state.

    *)
  15. failureReason : FailureReason.t option;
    (*

    The reasons why the job run has failed.

    *)
  16. tags : TagMap.t option;
    (*

    The assigned tags of the job run.

    *)
  17. retryPolicyConfiguration : RetryPolicyConfiguration.t option;
    (*

    The configuration of the retry policy that the job runs on.

    *)
  18. retryPolicyExecution : RetryPolicyExecution.t option;
    (*

    The current status of the retry policy executed on the job.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?virtualClusterId:??? -> ?arn:??? -> ?state:??? -> ?clientToken:??? -> ?executionRoleArn:??? -> ?releaseLabel:??? -> ?configurationOverrides:??? -> ?jobDriver:??? -> ?createdAt:??? -> ?createdBy:??? -> ?finishedAt:??? -> ?stateDetails:??? -> ?failureReason:??? -> ?tags:??? -> ?retryPolicyConfiguration:??? -> ?retryPolicyExecution:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String128.t ] * [> `String of StringEmpty256.t ]) list | `String of ResourceIdString.t | `Structure of (string * Awso.Botodata.value) 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