@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-14T16:25:29.758Z") public interface EventInvokeConfigProps extends EventInvokeConfigOptions
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.*; IDestination destination; Function function_; EventInvokeConfigProps eventInvokeConfigProps = EventInvokeConfigProps.builder() .function(function_) // the properties below are optional .maxEventAge(Duration.minutes(30)) .onFailure(destination) .onSuccess(destination) .qualifier("qualifier") .retryAttempts(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
EventInvokeConfigProps.Builder
A builder for
EventInvokeConfigProps |
static class |
EventInvokeConfigProps.Jsii$Proxy
An implementation for
EventInvokeConfigProps |
Modifier and Type | Method and Description |
---|---|
static EventInvokeConfigProps.Builder |
builder() |
IFunction |
getFunction()
The Lambda function.
|
default java.lang.String |
getQualifier()
The qualifier.
|
getMaxEventAge, getOnFailure, getOnSuccess, getRetryAttempts
IFunction getFunction()
default java.lang.String getQualifier()
Default: - latest version
static EventInvokeConfigProps.Builder builder()
builder
in interface EventInvokeConfigOptions
EventInvokeConfigProps.Builder
of EventInvokeConfigProps