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.
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.
-
#poller_group_name ⇒ String
(Amazon MSK and self-managed Apache Kafka) The name of the provisioned poller group.
Instance Attribute Details
#maximum_pollers ⇒ Integer
The maximum number of event pollers this event source can scale up to. For Amazon SQS events source mappings, default is 200, and minimum value allowed is 2. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 200, and minimum value allowed is 1.
5315 5316 5317 5318 5319 5320 5321 |
# File 'lib/aws-sdk-lambda/types.rb', line 5315 class ProvisionedPollerConfig < Struct.new( :minimum_pollers, :maximum_pollers, :poller_group_name) SENSITIVE = [] include Aws::Structure end |
#minimum_pollers ⇒ Integer
The minimum number of event pollers this event source can scale down to. For Amazon SQS events source mappings, default is 2, and minimum 2 required. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 1.
5315 5316 5317 5318 5319 5320 5321 |
# File 'lib/aws-sdk-lambda/types.rb', line 5315 class ProvisionedPollerConfig < Struct.new( :minimum_pollers, :maximum_pollers, :poller_group_name) SENSITIVE = [] include Aws::Structure end |
#poller_group_name ⇒ String
(Amazon MSK and self-managed Apache Kafka) The name of the provisioned poller group. Use this option to group multiple ESMs within the VPC to share Event Poller Unit (EPU) capacity. This option is used to optimize Provisioned mode costs for your ESMs. You can group up to 100 ESMs per poller group and aggregate maximum pollers across all ESMs in a group cannot exceed 2000.
5315 5316 5317 5318 5319 5320 5321 |
# File 'lib/aws-sdk-lambda/types.rb', line 5315 class ProvisionedPollerConfig < Struct.new( :minimum_pollers, :maximum_pollers, :poller_group_name) SENSITIVE = [] include Aws::Structure end |