Interface CfnEventSourceMapping.ProvisionedPollerConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventSourceMapping.ProvisionedPollerConfigProperty.Jsii$Proxy
- Enclosing class:
CfnEventSourceMapping
@Stability(Stable)
public static interface CfnEventSourceMapping.ProvisionedPollerConfigProperty
extends software.amazon.jsii.JsiiSerializable
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.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lambda.*;
ProvisionedPollerConfigProperty provisionedPollerConfigProperty = ProvisionedPollerConfigProperty.builder()
.maximumPollers(123)
.minimumPollers(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventSourceMapping.ProvisionedPollerConfigPropertystatic final classAn implementation forCfnEventSourceMapping.ProvisionedPollerConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaximumPollers
The maximum number of event pollers this event source can scale up to.- See Also:
-
getMinimumPollers
The minimum number of event pollers this event source can scale down to.- See Also:
-
builder
-