public static interface CfnEventInvokeConfig.DestinationConfigProperty
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.*; DestinationConfigProperty destinationConfigProperty = DestinationConfigProperty.builder() .onFailure(OnFailureProperty.builder() .destination("destination") .build()) .onSuccess(OnSuccessProperty.builder() .destination("destination") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEventInvokeConfig.DestinationConfigProperty.Builder
A builder for
CfnEventInvokeConfig.DestinationConfigProperty |
static class |
CfnEventInvokeConfig.DestinationConfigProperty.Jsii$Proxy
An implementation for
CfnEventInvokeConfig.DestinationConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnEventInvokeConfig.DestinationConfigProperty.Builder |
builder() |
default java.lang.Object |
getOnFailure()
The destination configuration for failed invocations.
|
default java.lang.Object |
getOnSuccess()
The destination configuration for successful invocations.
|
default java.lang.Object getOnFailure()
default java.lang.Object getOnSuccess()
static CfnEventInvokeConfig.DestinationConfigProperty.Builder builder()