Skip to content

Commit 921426e

Browse files
authored
docs(stepfunctions-tasks): add documentation for put events step function task (#23472)
Adds a note that maximum number of event entries is 10. Fixes: #22822 ---- ### All Submissions: * [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Construct Runtime Dependencies: * [ ] This PR adds new construct runtime dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-construct-runtime-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 842f7f7 commit 921426e

File tree

1 file changed

+2
-1
lines changed
  • packages/@aws-cdk/aws-stepfunctions-tasks/lib/eventbridge

1 file changed

+2
-1
lines changed

packages/@aws-cdk/aws-stepfunctions-tasks/lib/eventbridge/put-events.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ export interface EventBridgePutEventsEntry {
5353
*/
5454
export interface EventBridgePutEventsProps extends sfn.TaskStateBaseProps {
5555
/**
56-
* The entries that will be sent (must be at least 1)
56+
* The entries that will be sent. Minimum number of entries is 1 and maximum is 10,
57+
* unless [PutEvents API limit](https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html#API_PutEvents_RequestSyntax) has changed.
5758
*/
5859
readonly entries: EventBridgePutEventsEntry[];
5960
}

0 commit comments

Comments
 (0)