def run_job_flow(name, options={})
if bootstrap_actions = options.delete('BootstrapActions')
options.merge!(Fog::AWS.serialize_keys('BootstrapActions', bootstrap_actions))
end
if instances = options.delete('Instances')
options.merge!(Fog::AWS.serialize_keys('Instances', instances))
end
if steps = options.delete('Steps')
options.merge!(Fog::AWS.serialize_keys('Steps', steps))
end
request({
'Action' => 'RunJobFlow',
'Name' => name,
:parser => Fog::Parsers::AWS::EMR::RunJobFlow.new,
}.merge(options))
end