Interface CfnEventSourceMapping.DestinationConfigProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnEventSourceMapping.DestinationConfigProperty.Jsii$Proxy
- Enclosing class:
 - CfnEventSourceMapping
 
@Stability(Stable)
public static interface CfnEventSourceMapping.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())
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventSourceMapping.DestinationConfigPropertystatic final classAn implementation forCfnEventSourceMapping.DestinationConfigProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getOnFailure
The destination configuration for failed invocations. - 
builder
 
 -