Interface CfnFunctionPropsMixin.EventInvokeConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunctionPropsMixin.EventInvokeConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFunctionPropsMixin
@Stability(Stable)
public static interface CfnFunctionPropsMixin.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.cfnpropertymixins.services.sam.*;
EventInvokeConfigProperty eventInvokeConfigProperty = EventInvokeConfigProperty.builder()
.destinationConfig(EventInvokeDestinationConfigProperty.builder()
.onFailure(DestinationProperty.builder()
.destination("destination")
.type("type")
.build())
.onSuccess(DestinationProperty.builder()
.destination("destination")
.type("type")
.build())
.build())
.maximumEventAgeInSeconds(123)
.maximumRetryAttempts(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunctionPropsMixin.EventInvokeConfigPropertystatic final classAn implementation forCfnFunctionPropsMixin.EventInvokeConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnFunctionPropsMixin.EventInvokeDestinationConfigPropertydefault Numberdefault NumberMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationConfig
Returns union: eitherIResolvableorCfnFunctionPropsMixin.EventInvokeDestinationConfigProperty- See Also:
-
getMaximumEventAgeInSeconds
- See Also:
-
getMaximumRetryAttempts
- See Also:
-
builder
-