Class: Aws::EMR::Types::TerminateJobFlowsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::TerminateJobFlowsInput
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass TerminateJobFlowsInput data as a hash:
{
job_flow_ids: ["XmlString"], # required
}
Input to the TerminateJobFlows operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_flow_ids ⇒ Array<String>
A list of job flows to be shut down.
Instance Attribute Details
#job_flow_ids ⇒ Array<String>
A list of job flows to be shut down.
7969 7970 7971 7972 7973 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 7969 class TerminateJobFlowsInput < Struct.new( :job_flow_ids) SENSITIVE = [] include Aws::Structure end |