Class LambdaAction
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<LambdaAction.Builder,
LambdaAction>
When included in a receipt rule, this action calls an Amazon Web Services Lambda function and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).
To enable Amazon SES to call your Amazon Web Services Lambda function or to publish to an Amazon SNS topic of another account, Amazon SES must have permission to access those resources. For information about giving permissions, see the Amazon SES Developer Guide.
For information about using Amazon Web Services Lambda actions in receipt rules, see the Amazon SES Developer Guide.
- See Also:
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic LambdaAction.Builder
builder()
final boolean
final boolean
equalsBySdkFields
(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final String
The Amazon Resource Name (ARN) of the Amazon Web Services Lambda function.final <T> Optional
<T> getValueForField
(String fieldName, Class<T> clazz) final int
hashCode()
final InvocationType
The invocation type of the Amazon Web Services Lambda function.final String
The invocation type of the Amazon Web Services Lambda function.static Class
<? extends LambdaAction.Builder> Take this object and create a builder that contains all of the current property values of this object.final String
topicArn()
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the Lambda action is executed.final String
toString()
Returns a string representation of this object.Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
Method Details
-
topicArn
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the Lambda action is executed. You can find the ARN of a topic by using the ListTopics operation in Amazon SNS.
For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.
- Returns:
- The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the Lambda action is executed. You
can find the ARN of a topic by using the ListTopics operation in Amazon
SNS.
For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.
-
functionArn
The Amazon Resource Name (ARN) of the Amazon Web Services Lambda function. An example of an Amazon Web Services Lambda function ARN is
arn:aws:lambda:us-west-2:account-id:function:MyFunction
. For more information about Amazon Web Services Lambda, see the Amazon Web Services Lambda Developer Guide.- Returns:
- The Amazon Resource Name (ARN) of the Amazon Web Services Lambda function. An example of an Amazon Web
Services Lambda function ARN is
arn:aws:lambda:us-west-2:account-id:function:MyFunction
. For more information about Amazon Web Services Lambda, see the Amazon Web Services Lambda Developer Guide.
-
invocationType
The invocation type of the Amazon Web Services Lambda function. An invocation type of
RequestResponse
means that the execution of the function immediately results in a response, and a value ofEvent
means that the function is invoked asynchronously. The default value isEvent
. For information about Amazon Web Services Lambda invocation types, see the Amazon Web Services Lambda Developer Guide.There is a 30-second timeout on
RequestResponse
invocations. You should useEvent
invocation in most cases. UseRequestResponse
only to make a mail flow decision, such as whether to stop the receipt rule or the receipt rule set.If the service returns an enum value that is not available in the current SDK version,
invocationType
will returnInvocationType.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available frominvocationTypeAsString()
.- Returns:
- The invocation type of the Amazon Web Services Lambda function. An invocation type of
RequestResponse
means that the execution of the function immediately results in a response, and a value ofEvent
means that the function is invoked asynchronously. The default value isEvent
. For information about Amazon Web Services Lambda invocation types, see the Amazon Web Services Lambda Developer Guide.There is a 30-second timeout on
RequestResponse
invocations. You should useEvent
invocation in most cases. UseRequestResponse
only to make a mail flow decision, such as whether to stop the receipt rule or the receipt rule set. - See Also:
-
invocationTypeAsString
The invocation type of the Amazon Web Services Lambda function. An invocation type of
RequestResponse
means that the execution of the function immediately results in a response, and a value ofEvent
means that the function is invoked asynchronously. The default value isEvent
. For information about Amazon Web Services Lambda invocation types, see the Amazon Web Services Lambda Developer Guide.There is a 30-second timeout on
RequestResponse
invocations. You should useEvent
invocation in most cases. UseRequestResponse
only to make a mail flow decision, such as whether to stop the receipt rule or the receipt rule set.If the service returns an enum value that is not available in the current SDK version,
invocationType
will returnInvocationType.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available frominvocationTypeAsString()
.- Returns:
- The invocation type of the Amazon Web Services Lambda function. An invocation type of
RequestResponse
means that the execution of the function immediately results in a response, and a value ofEvent
means that the function is invoked asynchronously. The default value isEvent
. For information about Amazon Web Services Lambda invocation types, see the Amazon Web Services Lambda Developer Guide.There is a 30-second timeout on
RequestResponse
invocations. You should useEvent
invocation in most cases. UseRequestResponse
only to make a mail flow decision, such as whether to stop the receipt rule or the receipt rule set. - See Also:
-
toBuilder
Description copied from interface:ToCopyableBuilder
Take this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilder
in interfaceToCopyableBuilder<LambdaAction.Builder,
LambdaAction> - Returns:
- a builder for type T
-
builder
-
serializableBuilderClass
-
hashCode
-
equals
-
equalsBySdkFields
Description copied from interface:SdkPojo
Indicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojo
class, and is generated based on a service model.If an
SdkPojo
class does not have any inherited fields,equalsBySdkFields
andequals
are essentially the same.- Specified by:
equalsBySdkFields
in interfaceSdkPojo
- Parameters:
obj
- the object to be compared with- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
-
toString
-
getValueForField
-
sdkFields
-