@Generated(value="jsii-pacmak/1.60.0 (build ebcefe6)",
date="2022-06-22T23:27:56.306Z")
public interface CfnEventInvokeConfigProps
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.*; CfnEventInvokeConfigProps cfnEventInvokeConfigProps = CfnEventInvokeConfigProps.builder() .functionName("functionName") .qualifier("qualifier") // the properties below are optional .destinationConfig(DestinationConfigProperty.builder() .onFailure(OnFailureProperty.builder() .destination("destination") .build()) .onSuccess(OnSuccessProperty.builder() .destination("destination") .build()) .build()) .maximumEventAgeInSeconds(123) .maximumRetryAttempts(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEventInvokeConfigProps.Builder
A builder for
CfnEventInvokeConfigProps |
static class |
CfnEventInvokeConfigProps.Jsii$Proxy
An implementation for
CfnEventInvokeConfigProps |
Modifier and Type | Method and Description |
---|---|
static CfnEventInvokeConfigProps.Builder |
builder() |
default java.lang.Object |
getDestinationConfig()
A destination for events after they have been sent to a function for processing.
|
java.lang.String |
getFunctionName()
The name of the Lambda function.
|
default java.lang.Number |
getMaximumEventAgeInSeconds()
The maximum age of a request that Lambda sends to a function for processing.
|
default java.lang.Number |
getMaximumRetryAttempts()
The maximum number of times to retry when the function returns an error.
|
java.lang.String |
getQualifier()
The identifier of a version or alias.
|
java.lang.String getFunctionName()
Minimum : 1
Maximum : 64
Pattern : ([a-zA-Z0-9-_]+)
java.lang.String getQualifier()
$LATEST
.default java.lang.Object getDestinationConfig()
Destinations - Function - The Amazon Resource Name (ARN) of a Lambda function.
default java.lang.Number getMaximumEventAgeInSeconds()
default java.lang.Number getMaximumRetryAttempts()
static CfnEventInvokeConfigProps.Builder builder()
CfnEventInvokeConfigProps.Builder
of CfnEventInvokeConfigProps