@Generated(value="jsii-pacmak/1.60.0 (build ebcefe6)", date="2022-07-01T09:58:37.182Z") public interface EventSourceMappingProps extends 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
IFunction getTarget()
static EventSourceMappingProps.Builder builder()
builder
in interface EventSourceMappingOptions
EventSourceMappingProps.Builder
of EventSourceMappingProps