Module Values.JobRunSummarySource

The summary of attributes associated with a job run.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t option;
    (*

    The ID of the application the job is running on.

    *)
  2. id : JobRunId.t option;
    (*

    The ID of the job run.

    *)
  3. name : String256.t option;
    (*

    The optional job run name. This doesn't have to be unique.

    *)
  4. mode : JobRunMode.t option;
    (*

    The mode of the job run.

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

    The ARN of the job run.

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

    The user who created the job run.

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

    The date and time when the job run was created.

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

    The date and time when the job run was last updated.

    *)
  9. executionRole : IAMRoleArn.t option;
    (*

    The execution role ARN of the job run.

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

    The state of the job run.

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

    The state details of the job run.

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

    The Amazon EMR release associated with the application your job is running on.

    *)
  13. type_ : JobRunType.t option;
    (*

    The type of job run, such as Spark or Hive.

    *)
  14. attempt : AttemptNumber.t option;
    (*

    The attempt number of the job run execution.

    *)
  15. attemptCreatedAt : Date.t option;
    (*

    The date and time of when the job run attempt was created.

    *)
  16. attemptUpdatedAt : Date.t option;
    (*

    The date and time of when the job run attempt was last updated.

    *)
}
Sourceval make : ?applicationId:??? -> ?id:??? -> ?name:??? -> ?mode:??? -> ?arn:??? -> ?createdBy:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?executionRole:??? -> ?state:??? -> ?stateDetails:??? -> ?releaseLabel:??? -> ?type_:??? -> ?attempt:??? -> ?attemptCreatedAt:??? -> ?attemptUpdatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of AttemptNumber.t | `String of ApplicationId.t | `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