Class: Aws::EMR::Types::AutoTerminationPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::AutoTerminationPolicy
- 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
-
#idle_timeout ⇒ Integer
Specifies the amount of idle time in seconds after which the cluster automatically terminates.
Instance Attribute Details
#idle_timeout ⇒ Integer
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).
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 |