Class: Aws::EMR::Types::SetTerminationProtectionInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb

Overview

The input argument to the TerminationProtection operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#job_flow_idsArray<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 .

Returns:

  • (Array<String>)


5906
5907
5908
5909
5910
5911
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 5906

class SetTerminationProtectionInput < Struct.new(
  :job_flow_ids,
  :termination_protected)
  SENSITIVE = []
  include Aws::Structure
end

#termination_protectedBoolean

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.

Returns:

  • (Boolean)


5906
5907
5908
5909
5910
5911
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 5906

class SetTerminationProtectionInput < Struct.new(
  :job_flow_ids,
  :termination_protected)
  SENSITIVE = []
  include Aws::Structure
end