Module Values.JobRunAttemptSummarySource

The summary of attributes associated with a job run attempt.

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 attempt.

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

    The name of the job run attempt.

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

    The mode of the job run attempt.

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

    The Amazon Resource Name (ARN) of the job run.

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

    The user who created the job run.

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

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

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

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

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

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

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

    The Amazon Resource Name (ARN) of the execution role of the job run..

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

    The state of the job run attempt.

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

    The state details of the job run attempt.

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

    The Amazon EMR release label of the job run attempt.

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

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

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

    The attempt number of the job run execution.

    *)
}
Sourceval make : ?applicationId:??? -> ?id:??? -> ?name:??? -> ?mode:??? -> ?arn:??? -> ?createdBy:??? -> ?jobCreatedAt:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?executionRole:??? -> ?state:??? -> ?stateDetails:??? -> ?releaseLabel:??? -> ?type_:??? -> ?attempt:??? -> 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