Class: Aws::EMR::Types::AutoTerminationPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::AutoTerminationPolicy
- 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
-
#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 'lib/aws-sdk-emr/types.rb', line 333 class AutoTerminationPolicy < Struct.new( :idle_timeout) SENSITIVE = [] include Aws::Structure end |