We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When creating an MSK EventSourceMapping like so:
new aws.lambda.EventSourceMapping(`hf-dilithium-consumer-esm`, { eventSourceArn: msk.arn, functionName: dilithiumConsumerLambda.arn, topics: [topics.validatedEntryState], startingPosition: 'LATEST', batchSize: 100 });
We randomly end up getting the error:
aws:lambda:EventSourceMapping (hf-dilithium-consumer-esm): error: 1 error occurred: * updating urn:pulumi:development-ciii::nacelle-services-hail-frequency::aws:lambda/eventSourceMapping:EventSourceMapping::hf-dilithium-consumer-esm: 1 error occurred: * error updating Lambda Event Source Mapping (c0fa40b9-9c7c-4044-bc60-0dd87a9a7ddb): InvalidParameterValueException: Unsupported 'maximumBatchingWindowInSeconds' parameter for given event source mapping type. { RespMetadata: { StatusCode: 400, RequestID: "4979485f-0cb8-4845-ac2c-b82e1168b3a9" }, Message_: "Unsupported 'maximumBatchingWindowInSeconds' parameter for given event source mapping type.", Type: "User" }
We are not setting maximumBatchingWindowInSeconds so the provider shouldn't send that parameter.
maximumBatchingWindowInSeconds
The text was updated successfully, but these errors were encountered:
Woops, dup of pulumi/pulumi#6534
Sorry, something went wrong.
No branches or pull requests
Current behavior
When creating an MSK EventSourceMapping like so:
We randomly end up getting the error:
Expected behavior
We are not setting
maximumBatchingWindowInSeconds
so the provider shouldn't send that parameter.The text was updated successfully, but these errors were encountered: