interface StreamEventSourceProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Lambda.EventSources.StreamEventSourceProps |
Java | software.amazon.awscdk.services.lambda.eventsources.StreamEventSourceProps |
Python | aws_cdk.aws_lambda_event_sources.StreamEventSourceProps |
TypeScript (source) | @aws-cdk/aws-lambda-event-sources » StreamEventSourceProps |
The set of properties for streaming event sources shared by Dynamo and Kinesis.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as lambda from '@aws-cdk/aws-lambda';
import * as lambda_event_sources from '@aws-cdk/aws-lambda-event-sources';
import * as cdk from '@aws-cdk/core';
declare const eventSourceDlq: lambda.IEventSourceDlq;
const streamEventSourceProps: lambda_event_sources.StreamEventSourceProps = {
startingPosition: lambda.StartingPosition.TRIM_HORIZON,
// the properties below are optional
batchSize: 123,
bisectBatchOnError: false,
enabled: false,
maxBatchingWindow: cdk.Duration.minutes(30),
maxRecordAge: cdk.Duration.minutes(30),
onFailure: eventSourceDlq,
parallelizationFactor: 123,
reportBatchItemFailures: false,
retryAttempts: 123,
tumblingWindow: cdk.Duration.minutes(30),
};
Properties
Name | Type | Description |
---|---|---|
starting | Starting | Where to begin consuming the stream. |
batch | number | The largest number of records that AWS Lambda will retrieve from your event source at the time of invoking your function. |
bisect | boolean | If the function returns an error, split the batch in two and retry. |
enabled? | boolean | If the stream event source mapping should be enabled. |
max | Duration | The maximum amount of time to gather records before invoking the function. |
max | Duration | The maximum age of a record that Lambda sends to a function for processing. |
on | IEvent | An Amazon SQS queue or Amazon SNS topic destination for discarded records. |
parallelization | number | The number of batches to process from each shard concurrently. |
report | boolean | Allow functions to return partially successful responses for a batch of records. |
retry | number | Maximum number of retry attempts Valid Range: * Minimum value of 0 * Maximum value of 10000. |
tumbling | Duration | The size of the tumbling windows to group records sent to DynamoDB or Kinesis Valid Range: 0 - 15 minutes. |
startingPosition
Type:
Starting
Where to begin consuming the stream.
batchSize?
Type:
number
(optional, default: 100)
The largest number of records that AWS Lambda will retrieve from your event source at the time of invoking your function.
Your function receives an event with all the retrieved records.
Valid Range:
- Minimum value of 1
- Maximum value of:
- 1000 for {@link DynamoEventSource}
- 10000 for {@link KinesisEventSource}, {@link ManagedKafkaEventSource} and {@link SelfManagedKafkaEventSource}
bisectBatchOnError?
Type:
boolean
(optional, default: false)
If the function returns an error, split the batch in two and retry.
enabled?
Type:
boolean
(optional, default: true)
If the stream event source mapping should be enabled.
maxBatchingWindow?
Type:
Duration
(optional, default: Duration.seconds(0))
The maximum amount of time to gather records before invoking the function.
Maximum of Duration.minutes(5)
maxRecordAge?
Type:
Duration
(optional, default: the retention period configured on the stream)
The maximum age of a record that Lambda sends to a function for processing.
Valid Range:
- Minimum value of 60 seconds
- Maximum value of 7 days
onFailure?
Type:
IEvent
(optional, default: discarded records are ignored)
An Amazon SQS queue or Amazon SNS topic destination for discarded records.
parallelizationFactor?
Type:
number
(optional, default: 1)
The number of batches to process from each shard concurrently.
Valid Range:
- Minimum value of 1
- Maximum value of 10
reportBatchItemFailures?
Type:
boolean
(optional, default: false)
Allow functions to return partially successful responses for a batch of records.
retryAttempts?
Type:
number
(optional, default: retry until the record expires)
Maximum number of retry attempts Valid Range: * Minimum value of 0 * Maximum value of 10000.
tumblingWindow?
Type:
Duration
(optional, default: None)
The size of the tumbling windows to group records sent to DynamoDB or Kinesis Valid Range: 0 - 15 minutes.