interface DestinationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnEventSourceMappingPropsMixin.DestinationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnEventSourceMappingPropsMixin_DestinationConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnEventSourceMappingPropsMixin.DestinationConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnEventSourceMappingPropsMixin.DestinationConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » CfnEventSourceMappingPropsMixin » DestinationConfigProperty |
A configuration object that specifies the destination of an event after Lambda processes it.
For more information, see Adding a destination .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as lambda } from '@aws-cdk/cfn-property-mixins';
const destinationConfigProperty: lambda.CfnEventSourceMappingPropsMixin.DestinationConfigProperty = {
onFailure: {
destination: 'destination',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| on | IResolvable | On | The destination configuration for failed invocations. |
onFailure?
Type:
IResolvable | On
(optional)
The destination configuration for failed invocations.

.NET
Go
Java
Python
TypeScript