interface DeadLetterConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnFunctionPropsMixin.DeadLetterConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnFunctionPropsMixin_DeadLetterConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnFunctionPropsMixin.DeadLetterConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnFunctionPropsMixin.DeadLetterConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » CfnFunctionPropsMixin » DeadLetterConfigProperty |
The dead-letter queue for failed asynchronous invocations.
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 deadLetterConfigProperty: lambda.CfnFunctionPropsMixin.DeadLetterConfigProperty = {
targetArn: 'targetArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| target | string | ITopic | IQueue | The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic. |
targetArn?
Type:
string | ITopic | IQueue
(optional)
The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.

.NET
Go
Java
Python
TypeScript