Class: Aws::EMR::Types::SetKeepJobFlowAliveWhenNoStepsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::SetKeepJobFlowAliveWhenNoStepsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_flow_ids ⇒ Array<String>
A list of strings that uniquely identify the clusters to protect.
-
#keep_job_flow_alive_when_no_steps ⇒ Boolean
A Boolean that indicates whether to terminate the cluster after all steps are executed.
Instance Attribute Details
#job_flow_ids ⇒ Array<String>
A list of strings that uniquely identify the clusters to protect. This identifier is returned by [RunJobFlow] and can also be obtained from [DescribeJobFlows].
[1]: docs.aws.amazon.com/emr/latest/APIReference/API_RunJobFlow.html [2]: docs.aws.amazon.com/emr/latest/APIReference/API_DescribeJobFlows.html
5941 5942 5943 5944 5945 5946 |
# File 'lib/aws-sdk-emr/types.rb', line 5941 class SetKeepJobFlowAliveWhenNoStepsInput < Struct.new( :job_flow_ids, :keep_job_flow_alive_when_no_steps) SENSITIVE = [] include Aws::Structure end |
#keep_job_flow_alive_when_no_steps ⇒ Boolean
A Boolean that indicates whether to terminate the cluster after all steps are executed.
5941 5942 5943 5944 5945 5946 |
# File 'lib/aws-sdk-emr/types.rb', line 5941 class SetKeepJobFlowAliveWhenNoStepsInput < Struct.new( :job_flow_ids, :keep_job_flow_alive_when_no_steps) SENSITIVE = [] include Aws::Structure end |