Values.JobRunSummarySourceThe summary of attributes associated with a job run.
type nonrec t = {applicationId : ApplicationId.t option;The ID of the application the job is running on.
*)id : JobRunId.t option;The ID of the job run.
*)name : String256.t option;The optional job run name. This doesn't have to be unique.
*)mode : JobRunMode.t option;The mode of the job run.
*)arn : JobArn.t option;The ARN of the job run.
*)createdBy : RequestIdentityUserArn.t option;The user who created the job run.
*)createdAt : Date.t option;The date and time when the job run was created.
*)updatedAt : Date.t option;The date and time when the job run was last updated.
*)executionRole : IAMRoleArn.t option;The execution role ARN of the job run.
*)state : JobRunState.t option;The state of the job run.
*)stateDetails : String256.t option;The state details of the job run.
*)releaseLabel : ReleaseLabel.t option;The Amazon EMR release associated with the application your job is running on.
*)type_ : JobRunType.t option;The type of job run, such as Spark or Hive.
*)attempt : AttemptNumber.t option;The attempt number of the job run execution.
*)attemptCreatedAt : Date.t option;The date and time of when the job run attempt was created.
*)attemptUpdatedAt : Date.t option;The date and time of when the job run attempt was last updated.
*)}val make :
?applicationId:??? ->
?id:??? ->
?name:??? ->
?mode:??? ->
?arn:??? ->
?createdBy:??? ->
?createdAt:??? ->
?updatedAt:??? ->
?executionRole:??? ->
?state:??? ->
?stateDetails:??? ->
?releaseLabel:??? ->
?type_:??? ->
?attempt:??? ->
?attemptCreatedAt:??? ->
?attemptUpdatedAt:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of AttemptNumber.t
| `String of ApplicationId.t
| `Timestamp of Date.t ])
list ]