Class: Aws::Lambda::Types::ProvisionedPollerConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Lambda::Types::ProvisionedPollerConfig
 
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
The provisioned mode configuration for the event source. Use Provisioned Mode to customize the minimum and maximum number of event pollers for your event source. An event poller is a compute unit that provides approximately 5 MBps of throughput.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #maximum_pollers  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The maximum number of event pollers this event source can scale up to. 
- 
  
    
      #minimum_pollers  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The minimum number of event pollers this event source can scale down to. 
Instance Attribute Details
#maximum_pollers ⇒ Integer
The maximum number of event pollers this event source can scale up to.
| 5273 5274 5275 5276 5277 5278 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5273 class ProvisionedPollerConfig < Struct.new( :minimum_pollers, :maximum_pollers) SENSITIVE = [] include Aws::Structure end | 
#minimum_pollers ⇒ Integer
The minimum number of event pollers this event source can scale down to.
| 5273 5274 5275 5276 5277 5278 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5273 class ProvisionedPollerConfig < Struct.new( :minimum_pollers, :maximum_pollers) SENSITIVE = [] include Aws::Structure end |