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

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

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 'gems/aws-sdk-lambda/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 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5139

class ProvisionedPollerConfig < Struct.new(
  :minimum_pollers,
  :maximum_pollers)
  SENSITIVE = []
  include Aws::Structure
end