interface DeadLetterConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Pipes.CfnPipePropsMixin.DeadLetterConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspipes#CfnPipePropsMixin_DeadLetterConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pipes.CfnPipePropsMixin.DeadLetterConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_pipes.CfnPipePropsMixin.DeadLetterConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pipes » CfnPipePropsMixin » 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 { aws_pipes as pipes } from '@aws-cdk/cfn-property-mixins';
const deadLetterConfigProperty: pipes.CfnPipePropsMixin.DeadLetterConfigProperty = {
arn: 'arn',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | IQueue | The ARN of the specified target for the dead-letter queue. |
arn?
Type:
string | IQueue
(optional)
The ARN of the specified target for the dead-letter queue.
For Amazon Kinesis stream and Amazon DynamoDB stream sources, specify either an Amazon SNS topic or Amazon SQS queue ARN.

.NET
Go
Java
Python
TypeScript