Class: Aws::EMR::Types::SetTerminationProtectionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::SetTerminationProtectionInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
The input argument to the TerminationProtection operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_flow_ids ⇒ Array<String>
A list of strings that uniquely identify the clusters to protect.
-
#termination_protected ⇒ Boolean
A Boolean that indicates whether to protect the cluster and prevent the Amazon EC2 instances in the cluster from shutting down due to API calls, user intervention, or job-flow error.
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 .
5964 5965 5966 5967 5968 5969 |
# File 'lib/aws-sdk-emr/types.rb', line 5964 class SetTerminationProtectionInput < Struct.new( :job_flow_ids, :termination_protected) SENSITIVE = [] include Aws::Structure end |
#termination_protected ⇒ Boolean
A Boolean that indicates whether to protect the cluster and prevent the Amazon EC2 instances in the cluster from shutting down due to API calls, user intervention, or job-flow error.
5964 5965 5966 5967 5968 5969 |
# File 'lib/aws-sdk-emr/types.rb', line 5964 class SetTerminationProtectionInput < Struct.new( :job_flow_ids, :termination_protected) SENSITIVE = [] include Aws::Structure end |