@Stability(value=Stable)
public static interface CfnEventInvokeConfig.DestinationConfigProperty
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.lambda.*;
DestinationConfigProperty destinationConfigProperty = DestinationConfigProperty.builder()
.onFailure(OnFailureProperty.builder()
.destination("destination")
.build())
.onSuccess(OnSuccessProperty.builder()
.destination("destination")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEventInvokeConfig.DestinationConfigProperty.Builder
A builder for
CfnEventInvokeConfig.DestinationConfigProperty |
static class |
CfnEventInvokeConfig.DestinationConfigProperty.Jsii$Proxy
An implementation for
CfnEventInvokeConfig.DestinationConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEventInvokeConfig.DestinationConfigProperty.Builder |
builder() |
default Object |
getOnFailure()
The destination configuration for failed invocations.
|
default Object |
getOnSuccess()
The destination configuration for successful invocations.
|
@Stability(value=Stable) @Nullable default Object getOnFailure()
@Stability(value=Stable) @Nullable default Object getOnSuccess()
@Stability(value=Stable) static CfnEventInvokeConfig.DestinationConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.