Interface EventInvokeConfigProps
- All Superinterfaces:
EventInvokeConfigOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EventInvokeConfigProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:40.727Z")
@Stability(Stable)
public interface EventInvokeConfigProps
extends software.amazon.jsii.JsiiSerializable, EventInvokeConfigOptions
Properties for an EventInvokeConfig.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEventInvokeConfigProps
static final class
An implementation forEventInvokeConfigProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.lambda.EventInvokeConfigOptions
getMaxEventAge, getOnFailure, getOnSuccess, getRetryAttempts
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFunction
The Lambda function. -
getQualifier
The qualifier.Default: - latest version
-
builder
- Returns:
- a
EventInvokeConfigProps.Builder
ofEventInvokeConfigProps
-