Class: Aws::EMR::Types::AutoTerminationPolicy

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

Overview

An auto-termination policy for an Amazon EMR cluster. An auto-termination policy defines the amount of idle time in seconds after which a cluster automatically terminates. For alternative cluster termination options, see [Control cluster termination].

[1]: docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-termination.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idle_timeoutInteger

Specifies the amount of idle time in seconds after which the cluster automatically terminates. You can specify a minimum of 60 seconds and a maximum of 604800 seconds (seven days).

Returns:

  • (Integer)


333
334
335
336
337
# File 'lib/aws-sdk-emr/types.rb', line 333

class AutoTerminationPolicy < Struct.new(
  :idle_timeout)
  SENSITIVE = []
  include Aws::Structure
end