Class: Aws::Lambda::Types::ProvisionedPollerConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ProvisionedPollerConfig
- Includes:
- Structure
- Defined in:
- 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.
5139 5140 5141 5142 5143 5144 |
# File 'lib/aws-sdk-lambda/types.rb', line 5139 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.
5139 5140 5141 5142 5143 5144 |
# File 'lib/aws-sdk-lambda/types.rb', line 5139 class ProvisionedPollerConfig < Struct.new( :minimum_pollers, :maximum_pollers) SENSITIVE = [] include Aws::Structure end |