interface InvokeLambdaActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnMailManagerRuleSetPropsMixin.InvokeLambdaActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnMailManagerRuleSetPropsMixin_InvokeLambdaActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnMailManagerRuleSetPropsMixin.InvokeLambdaActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnMailManagerRuleSetPropsMixin.InvokeLambdaActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » CfnMailManagerRuleSetPropsMixin » 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/cfn-property-mixins';
const invokeLambdaActionProperty: ses.CfnMailManagerRuleSetPropsMixin.InvokeLambdaActionProperty = {
actionFailurePolicy: 'actionFailurePolicy',
functionArn: 'functionArn',
invocationType: 'invocationType',
retryTimeMinutes: 123,
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | |
| function | string | |
| invocation | string | |
| retry | number | |
| role | string |
actionFailurePolicy?
Type:
string
(optional)
functionArn?
Type:
string
(optional)
invocationType?
Type:
string
(optional)
retryTimeMinutes?
Type:
number
(optional)
roleArn?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript