@Stability(value=Stable)
public static interface CfnFunction.EventInvokeDestinationConfigProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
EventInvokeDestinationConfigProperty eventInvokeDestinationConfigProperty = 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFunction.EventInvokeDestinationConfigProperty.Builder
A builder for
CfnFunction.EventInvokeDestinationConfigProperty |
static class |
CfnFunction.EventInvokeDestinationConfigProperty.Jsii$Proxy
An implementation for
CfnFunction.EventInvokeDestinationConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFunction.EventInvokeDestinationConfigProperty.Builder |
builder() |
Object |
getOnFailure()
`CfnFunction.EventInvokeDestinationConfigProperty.OnFailure`.
|
Object |
getOnSuccess()
`CfnFunction.EventInvokeDestinationConfigProperty.OnSuccess`.
|
@Stability(value=Stable) @NotNull Object getOnFailure()
@Stability(value=Stable) @NotNull Object getOnSuccess()
@Stability(value=Stable) static CfnFunction.EventInvokeDestinationConfigProperty.Builder builder()
Copyright © 2023. All rights reserved.