Module Values.SetKeepJobFlowAliveWhenNoStepsInputSource

You can use the SetKeepJobFlowAliveWhenNoSteps to configure a cluster (job flow) to terminate after the step execution, i.e., all your steps are executed. If you want a transient cluster that shuts down after the last of the current executing steps are completed, you can configure SetKeepJobFlowAliveWhenNoSteps to false. If you want a long running cluster, configure SetKeepJobFlowAliveWhenNoSteps to true. For more information, see Managing Cluster Termination in the Amazon EMR Management Guide.

Sourcetype nonrec t = {
  1. jobFlowIds : XmlStringList.t;
    (*

    A list of strings that uniquely identify the clusters to protect. This identifier is returned by RunJobFlow and can also be obtained from DescribeJobFlows.

    *)
  2. keepJobFlowAliveWhenNoSteps : Boolean.t;
    (*

    A Boolean that indicates whether to terminate the cluster after all steps are executed.

    *)
}
Sourceval context_ : string
Sourceval make : jobFlowIds:XmlStringList.t -> keepJobFlowAliveWhenNoSteps:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of XmlString.t ] 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