interface DeadLetterConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnFunctionPropsMixin.DeadLetterConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnFunctionPropsMixin_DeadLetterConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnFunctionPropsMixin.DeadLetterConfigProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnFunctionPropsMixin.DeadLetterConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » 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 { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const deadLetterConfigProperty: lambda_mixins.CfnFunctionPropsMixin.DeadLetterConfigProperty = {
targetArn: 'targetArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| target | string | The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic. |
targetArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.

.NET
Go
Java
Python
TypeScript