interface LambdaEventSourceMappingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ARCRegionSwitch.CfnPlan.LambdaEventSourceMappingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsarcregionswitch#CfnPlan_LambdaEventSourceMappingConfigurationProperty |
Java | software.amazon.awscdk.services.arcregionswitch.CfnPlan.LambdaEventSourceMappingConfigurationProperty |
Python | aws_cdk.aws_arcregionswitch.CfnPlan.LambdaEventSourceMappingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_arcregionswitch » CfnPlan » LambdaEventSourceMappingConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_arcregionswitch as arcregionswitch } from 'aws-cdk-lib';
const lambdaEventSourceMappingConfigurationProperty: arcregionswitch.CfnPlan.LambdaEventSourceMappingConfigurationProperty = {
action: 'action',
regionEventSourceMappings: {
regionEventSourceMappingsKey: {
arn: 'arn',
// the properties below are optional
crossAccountRole: 'crossAccountRole',
externalId: 'externalId',
},
},
// the properties below are optional
timeoutMinutes: 123,
ungraceful: {
behavior: 'behavior',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | |
| region | IResolvable | { [string]: IResolvable | Event } | |
| timeout | number | |
| ungraceful? | IResolvable | Lambda |
action
Type:
string
regionEventSourceMappings
Type:
IResolvable | { [string]: IResolvable | Event }
timeoutMinutes?
Type:
number
(optional, default: 60)
ungraceful?
Type:
IResolvable | Lambda
(optional)

.NET
Go
Java
Python
TypeScript