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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-emr/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.

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 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 333

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