java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.ses.actions.Lambda
All Implemented Interfaces:
IReceiptRuleAction, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:37.654Z") @Stability(Stable) public class Lambda extends software.amazon.jsii.JsiiObject implements IReceiptRuleAction
Calls an AWS Lambda function, and optionally, publishes a notification to Amazon SNS.

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.*;
 import software.amazon.awscdk.services.ses.actions.*;
 import software.amazon.awscdk.services.sns.*;
 Function function_;
 Topic topic;
 Lambda lambda = Lambda.Builder.create()
         .function(function_)
         // the properties below are optional
         .invocationType(LambdaInvocationType.EVENT)
         .topic(topic)
         .build();
 
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final class 
    A fluent builder for Lambda.

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode

    Nested classes/interfaces inherited from interface software.amazon.awscdk.services.ses.IReceiptRuleAction

    IReceiptRuleAction.Jsii$Default, IReceiptRuleAction.Jsii$Proxy
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
     
    protected
    Lambda(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    Lambda(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the receipt rule action specification.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • Lambda

      protected Lambda(software.amazon.jsii.JsiiObjectRef objRef)
    • Lambda

      protected Lambda(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • Lambda

      @Stability(Stable) public Lambda(@NotNull LambdaProps props)
      Parameters:
      props - This parameter is required.
  • Method Details