Complete the code to specify the event source for the Lambda trigger.
EventSourceArn: [1]The event source ARN must point to the DynamoDB stream ARN to trigger the Lambda on stream events.
Complete the code to specify the batch size for the Lambda event source mapping.
BatchSize: [1]The batch size defines how many records the Lambda function receives in one batch. 100 is a common default for DynamoDB streams.
Fix the error in the code to enable the Lambda trigger on the DynamoDB stream.
StartingPosition: [1]The correct starting position for DynamoDB streams is 'TRIM_HORIZON' to start from the oldest available record.
Fill both blanks to create a Lambda event source mapping with enabled status and correct batch size.
EventSourceArn: [1], BatchSize: [2]
The event source ARN must be the DynamoDB stream ARN and batch size 100 is a good choice for processing.
Fill all three blanks to configure a Lambda trigger with event source ARN, batch size, and starting position.
EventSourceArn: [1], BatchSize: [2], StartingPosition: [3]
Use the DynamoDB stream ARN, batch size 100, and starting position 'TRIM_HORIZON' to process all stream records from the beginning.