@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.204Z") @Stability(value=Stable) public interface LambdaActionConfig 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.ses.*;
LambdaActionConfig lambdaActionConfig = LambdaActionConfig.builder()
.functionArn("functionArn")
// the properties below are optional
.invocationType("invocationType")
.topicArn("topicArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
LambdaActionConfig.Builder
A builder for
LambdaActionConfig |
static class |
LambdaActionConfig.Jsii$Proxy
An implementation for
LambdaActionConfig |
| Modifier and Type | Method and Description |
|---|---|
static LambdaActionConfig.Builder |
builder() |
String |
getFunctionArn()
The Amazon Resource Name (ARN) of the AWS Lambda function.
|
default String |
getInvocationType()
The invocation type of the AWS Lambda function.
|
default String |
getTopicArn()
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the Lambda action is executed.
|
@Stability(value=Stable) @NotNull String getFunctionArn()
@Stability(value=Stable) @Nullable default String getInvocationType()
Default: 'Event'
@Stability(value=Stable) @Nullable default String getTopicArn()
Default: - No notification is sent to SNS.
@Stability(value=Stable) static LambdaActionConfig.Builder builder()
LambdaActionConfig.Builder of LambdaActionConfigCopyright © 2022. All rights reserved.