Class: Aws::EMRServerless::Types::AutoStopConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMRServerless::Types::AutoStopConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emrserverless/types.rb
Overview
The configuration for an application to automatically stop after a certain amount of time being idle.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Enables the application to automatically stop after a certain amount of time being idle.
-
#idle_timeout_minutes ⇒ Integer
The amount of idle time in minutes after which your application will automatically stop.
Instance Attribute Details
#enabled ⇒ Boolean
Enables the application to automatically stop after a certain amount of time being idle. Defaults to true.
240 241 242 243 244 245 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 240 class AutoStopConfig < Struct.new( :enabled, :idle_timeout_minutes) SENSITIVE = [] include Aws::Structure end |
#idle_timeout_minutes ⇒ Integer
The amount of idle time in minutes after which your application will automatically stop. Defaults to 15 minutes.
240 241 242 243 244 245 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 240 class AutoStopConfig < Struct.new( :enabled, :idle_timeout_minutes) SENSITIVE = [] include Aws::Structure end |