Values.JobRunAttemptSummarySourceThe summary of attributes associated with a job run attempt.
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 attempt.
*)name : String256.t option;The name of the job run attempt.
*)mode : JobRunMode.t option;The mode of the job run attempt.
*)arn : JobArn.t option;The Amazon Resource Name (ARN) of the job run.
*)createdBy : RequestIdentityUserArn.t option;The user who created the job run.
*)jobCreatedAt : Date.t option;The date and time of when the job run was created.
*)createdAt : Date.t option;The date and time when the job run attempt was created.
*)updatedAt : Date.t option;The date and time of when the job run attempt was last updated.
*)executionRole : IAMRoleArn.t option;The Amazon Resource Name (ARN) of the execution role of the job run..
*)state : JobRunState.t option;The state of the job run attempt.
*)stateDetails : String256.t option;The state details of the job run attempt.
*)releaseLabel : ReleaseLabel.t option;The Amazon EMR release label of the job run attempt.
*)type_ : JobRunType.t option;The type of the job run, such as Spark or Hive.
*)attempt : AttemptNumber.t option;The attempt number of the job run execution.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of AttemptNumber.t
| `String of ApplicationId.t
| `Timestamp of Date.t ])
list ]