Class: Aws::EMRServerless::Types::AutoStopConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::EMRServerless::Types::AutoStopConfig
 
- Defined in:
- gems/aws-sdk-emrserverless/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.
| 246 247 248 249 250 251 | # File 'gems/aws-sdk-emrserverless/lib/aws-sdk-emrserverless/types.rb', line 246 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.
| 246 247 248 249 250 251 | # File 'gems/aws-sdk-emrserverless/lib/aws-sdk-emrserverless/types.rb', line 246 class AutoStopConfig < Struct.new( :enabled, :idle_timeout_minutes) SENSITIVE = [] include Aws::Structure end |