@Stability(value=Stable)
public static interface CfnFunction.EventInvokeConfigProperty
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.*;
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFunction.EventInvokeConfigProperty.Builder
A builder for
CfnFunction.EventInvokeConfigProperty |
static class |
CfnFunction.EventInvokeConfigProperty.Jsii$Proxy
An implementation for
CfnFunction.EventInvokeConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFunction.EventInvokeConfigProperty.Builder |
builder() |
default Object |
getDestinationConfig()
`CfnFunction.EventInvokeConfigProperty.DestinationConfig`.
|
default Number |
getMaximumEventAgeInSeconds()
`CfnFunction.EventInvokeConfigProperty.MaximumEventAgeInSeconds`.
|
default Number |
getMaximumRetryAttempts()
`CfnFunction.EventInvokeConfigProperty.MaximumRetryAttempts`.
|
@Stability(value=Stable) @Nullable default Object getDestinationConfig()
@Stability(value=Stable) @Nullable default Number getMaximumEventAgeInSeconds()
@Stability(value=Stable) @Nullable default Number getMaximumRetryAttempts()
@Stability(value=Stable) static CfnFunction.EventInvokeConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.