Interface CfnEventInvokeConfig.DestinationConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEventInvokeConfig.DestinationConfigProperty.Jsii$Proxy
Enclosing class:
CfnEventInvokeConfig

@Stability(Stable) public static interface CfnEventInvokeConfig.DestinationConfigProperty extends software.amazon.jsii.JsiiSerializable
A configuration object that specifies the destination of an event after Lambda processes it.

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();
 

See Also: