interface InvokeLambdaActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerRuleSet.InvokeLambdaActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerRuleSet_InvokeLambdaActionProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerRuleSet.InvokeLambdaActionProperty |
Python | aws_cdk.aws_ses.CfnMailManagerRuleSet.InvokeLambdaActionProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerRuleSet » InvokeLambdaActionProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
const invokeLambdaActionProperty: ses.CfnMailManagerRuleSet.InvokeLambdaActionProperty = {
functionArn: 'functionArn',
invocationType: 'invocationType',
roleArn: 'roleArn',
// the properties below are optional
actionFailurePolicy: 'actionFailurePolicy',
retryTimeMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| function | string | |
| invocation | string | |
| role | string | |
| action | string | |
| retry | number |
functionArn
Type:
string
invocationType
Type:
string
roleArn
Type:
string
actionFailurePolicy?
Type:
string
(optional)
retryTimeMinutes?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript