Module EMR.Step

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html

type key_value = {
  1. value : string option;
  2. key : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-step-keyvalue.html

and hadoop_jar_step_config = {
  1. args : string list option;
  2. main_class : string option;
  3. step_properties : key_value list option;
  4. jar : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-step-hadoopjarstepconfig.html

type properties = {
  1. job_flow_id : string;
  2. action_on_failure : string;
  3. hadoop_jar_step : hadoop_jar_step_config;
  4. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html;

val make_properties : job_flow_id:string -> action_on_failure:string -> hadoop_jar_step:hadoop_jar_step_config -> name:string -> unit -> properties
val make_key_value : ?value:string -> ?key:string -> unit -> key_value
val make_hadoop_jar_step_config : ?args:string list -> ?main_class:string -> ?step_properties:key_value list -> jar:string -> unit -> hadoop_jar_step_config
val yojson_of_key_value : key_value -> Yojson.Safe.t
val yojson_of_hadoop_jar_step_config : hadoop_jar_step_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string