interface ProvisionedPollerConfig
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Lambda.ProvisionedPollerConfig |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslambda#ProvisionedPollerConfig |
Java | software.amazon.awscdk.services.lambda.ProvisionedPollerConfig |
Python | aws_cdk.aws_lambda.ProvisionedPollerConfig |
TypeScript (source) | aws-cdk-lib » aws_lambda » ProvisionedPollerConfig |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as lambda } from 'aws-cdk-lib';
const provisionedPollerConfig: lambda.ProvisionedPollerConfig = {
maximumPollers: 123,
minimumPollers: 123,
};
Properties
Name | Type | Description |
---|---|---|
maximum | number | The maximum number of pollers that can be provisioned. |
minimum | number | The minimum number of pollers that should be provisioned. |
maximumPollers?
Type:
number
(optional, default: 200)
The maximum number of pollers that can be provisioned.
minimumPollers?
Type:
number
(optional, default: 1)
The minimum number of pollers that should be provisioned.