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();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunction.EventInvokeConfigPropertystatic final classAn implementation forCfnFunction.EventInvokeConfigProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getDestinationConfig
CfnFunction.EventInvokeConfigProperty.DestinationConfig. - 
getMaximumEventAgeInSeconds
CfnFunction.EventInvokeConfigProperty.MaximumEventAgeInSeconds. - 
getMaximumRetryAttempts
CfnFunction.EventInvokeConfigProperty.MaximumRetryAttempts. - 
builder
 
 -