Interface CfnFunction.EventInvokeConfigProperty

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

@Stability(Stable) public static interface CfnFunction.EventInvokeConfigProperty extends software.amazon.jsii.JsiiSerializable
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.sam.*;
 EventInvokeConfigProperty eventInvokeConfigProperty = EventInvokeConfigProperty.builder()
         .destinationConfig(EventInvokeDestinationConfigProperty.builder()
                 .onFailure(DestinationProperty.builder()
                         .destination("destination")
                         // the properties below are optional
                         .type("type")
                         .build())
                 .onSuccess(DestinationProperty.builder()
                         .destination("destination")
                         // the properties below are optional
                         .type("type")
                         .build())
                 .build())
         .maximumEventAgeInSeconds(123)
         .maximumRetryAttempts(123)
         .build();