Interface LambdaActionConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LambdaActionConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:41.431Z") @Stability(Stable) public interface LambdaActionConfig extends software.amazon.jsii.JsiiSerializable
LambdaAction configuration.

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();
 
  • Method Details

    • getFunctionArn

      @Stability(Stable) @NotNull String getFunctionArn()
      The Amazon Resource Name (ARN) of the AWS Lambda function.
    • getInvocationType

      @Stability(Stable) @Nullable default String getInvocationType()
      The invocation type of the AWS Lambda function.

      Default: 'Event'

    • getTopicArn

      @Stability(Stable) @Nullable default String getTopicArn()
      The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the Lambda action is executed.

      Default: - No notification is sent to SNS.

    • builder

      @Stability(Stable) static LambdaActionConfig.Builder builder()
      Returns:
      a LambdaActionConfig.Builder of LambdaActionConfig