@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.438Z") @Stability(value=Stable) public interface EventInvokeConfigProps extends software.amazon.jsii.JsiiSerializable, 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.*;
import software.amazon.awscdk.services.lambda.*;
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 String |
getQualifier()
The qualifier.
|
getMaxEventAge, getOnFailure, getOnSuccess, getRetryAttempts@Stability(value=Stable) @NotNull IFunction getFunction()
@Stability(value=Stable) @Nullable default String getQualifier()
Default: - latest version
@Stability(value=Stable) static EventInvokeConfigProps.Builder builder()
builder in interface EventInvokeConfigOptionsEventInvokeConfigProps.Builder of EventInvokeConfigPropsCopyright © 2022. All rights reserved.