interface LambdaEventSourceMappingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ARCRegionSwitch.CfnPlanPropsMixin.LambdaEventSourceMappingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsarcregionswitch#CfnPlanPropsMixin_LambdaEventSourceMappingConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.arcregionswitch.CfnPlanPropsMixin.LambdaEventSourceMappingConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_arcregionswitch.CfnPlanPropsMixin.LambdaEventSourceMappingConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_arcregionswitch » CfnPlanPropsMixin » 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/cfn-property-mixins';
const lambdaEventSourceMappingConfigurationProperty: arcregionswitch.CfnPlanPropsMixin.LambdaEventSourceMappingConfigurationProperty = {
action: 'action',
regionEventSourceMappings: {
regionEventSourceMappingsKey: {
arn: 'arn',
crossAccountRole: 'crossAccountRole',
externalId: 'externalId',
},
},
timeoutMinutes: 123,
ungraceful: {
behavior: 'behavior',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string | |
| region | IResolvable | { [string]: IResolvable | Event } | |
| timeout | number | |
| ungraceful? | IResolvable | Lambda |
action?
Type:
string
(optional)
regionEventSourceMappings?
Type:
IResolvable | { [string]: IResolvable | Event }
(optional)
timeoutMinutes?
Type:
number
(optional, default: 60)
ungraceful?
Type:
IResolvable | Lambda
(optional)

.NET
Go
Java
Python
TypeScript