Module Values.StepSummarySource

The summary of the cluster step.

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

    The identifier of the cluster step.

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

    The name of the cluster step.

    *)
  3. config : HadoopStepConfig.t option;
    (*

    The Hadoop job configuration of the cluster step.

    *)
  4. actionOnFailure : ActionOnFailure.t option;
    (*

    The action to take when the cluster step fails. Possible values are TERMINATE_CLUSTER, CANCEL_AND_WAIT, and CONTINUE. TERMINATE_JOB_FLOW is available for backward compatibility.

    *)
  5. status : StepStatus.t option;
    (*

    The current execution status details of the cluster step.

    *)
  6. logUri : String_.t option;
    (*

    The Amazon S3 destination URI for log publishing.

    *)
  7. encryptionKeyArn : String_.t option;
    (*

    The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?config:??? -> ?actionOnFailure:??? -> ?status:??? -> ?logUri:??? -> ?encryptionKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StepId.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Date.t ]) list ]) list ]) 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