Class CfnEventBus.DeadLetterConfigProperty
Configuration details of the Amazon SQS queue for EventBridge to use as a dead-letter queue (DLQ).
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEventBus.DeadLetterConfigProperty : CfnEventBus.IDeadLetterConfigProperty
Syntax (vb)
Public Class CfnEventBus.DeadLetterConfigProperty Implements CfnEventBus.IDeadLetterConfigProperty
Remarks
For more information, see Using dead-letter queues to process undelivered events in the EventBridge User Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Events;
var deadLetterConfigProperty = new DeadLetterConfigProperty {
Arn = "arn"
};
Synopsis
Constructors
| DeadLetterConfigProperty() | Configuration details of the Amazon SQS queue for EventBridge to use as a dead-letter queue (DLQ). |
Properties
| Arn | The ARN of the SQS queue specified as the target for the dead-letter queue. |
Constructors
DeadLetterConfigProperty()
Configuration details of the Amazon SQS queue for EventBridge to use as a dead-letter queue (DLQ).
public DeadLetterConfigProperty()
Remarks
For more information, see Using dead-letter queues to process undelivered events in the EventBridge User Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Events;
var deadLetterConfigProperty = new DeadLetterConfigProperty {
Arn = "arn"
};
Properties
Arn
The ARN of the SQS queue specified as the target for the dead-letter queue.
public string? Arn { get; set; }