@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-10T17:05:56.521Z") @Stability(value=Stable) public interface EventSourceMappingProps extends software.amazon.jsii.JsiiSerializable, EventSourceMappingOptions
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lambda.*;
import software.amazon.awscdk.core.*;
IEventSourceDlq eventSourceDlq;
Function function_;
SourceAccessConfigurationType sourceAccessConfigurationType;
EventSourceMappingProps eventSourceMappingProps = EventSourceMappingProps.builder()
.target(function_)
// the properties below are optional
.batchSize(123)
.bisectBatchOnError(false)
.enabled(false)
.eventSourceArn("eventSourceArn")
.kafkaBootstrapServers(List.of("kafkaBootstrapServers"))
.kafkaTopic("kafkaTopic")
.maxBatchingWindow(Duration.minutes(30))
.maxRecordAge(Duration.minutes(30))
.onFailure(eventSourceDlq)
.parallelizationFactor(123)
.reportBatchItemFailures(false)
.retryAttempts(123)
.sourceAccessConfigurations(List.of(SourceAccessConfiguration.builder()
.type(sourceAccessConfigurationType)
.uri("uri")
.build()))
.startingPosition(StartingPosition.TRIM_HORIZON)
.tumblingWindow(Duration.minutes(30))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EventSourceMappingProps.Builder
A builder for
EventSourceMappingProps |
static class |
EventSourceMappingProps.Jsii$Proxy
An implementation for
EventSourceMappingProps |
| Modifier and Type | Method and Description |
|---|---|
static EventSourceMappingProps.Builder |
builder() |
IFunction |
getTarget()
The target AWS Lambda function.
|
getBatchSize, getBisectBatchOnError, getEnabled, getEventSourceArn, getKafkaBootstrapServers, getKafkaTopic, getMaxBatchingWindow, getMaxRecordAge, getOnFailure, getParallelizationFactor, getReportBatchItemFailures, getRetryAttempts, getSourceAccessConfigurations, getStartingPosition, getTumblingWindow@Stability(value=Stable) @NotNull IFunction getTarget()
@Stability(value=Stable) static EventSourceMappingProps.Builder builder()
builder in interface EventSourceMappingOptionsEventSourceMappingProps.Builder of EventSourceMappingPropsCopyright © 2023. All rights reserved.