Class: Aws::Lambda::Types::ProvisionedPollerConfig

Inherits:
Struct
  • Object
show all
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.

[1]: docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maximum_pollersInteger

The maximum number of event pollers this event source can scale up to.

Returns:

  • (Integer)


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_pollersInteger

The minimum number of event pollers this event source can scale down to.

Returns:

  • (Integer)


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