interface DeadLetterConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Pipes.CfnPipe.DeadLetterConfigProperty |
Java | software.amazon.awscdk.services.pipes.CfnPipe.DeadLetterConfigProperty |
Python | aws_cdk.aws_pipes.CfnPipe.DeadLetterConfigProperty |
TypeScript | @aws-cdk/aws-pipes » CfnPipe » DeadLetterConfigProperty |
A DeadLetterConfig object that contains information about a dead-letter queue configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as pipes from '@aws-cdk/aws-pipes';
const deadLetterConfigProperty: pipes.CfnPipe.DeadLetterConfigProperty = {
arn: 'arn',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The ARN of the Amazon SQS queue specified as the target for the dead-letter queue. |
arn?
Type:
string
(optional)
The ARN of the Amazon SQS queue specified as the target for the dead-letter queue.

.NET
Java
Python
TypeScript