Interface CfnEventBus.DeadLetterConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEventBus.DeadLetterConfigProperty.Jsii$Proxy
Enclosing class:
CfnEventBus

@Stability(Stable) public static interface CfnEventBus.DeadLetterConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration details of the Amazon SQS queue for EventBridge to use as a dead-letter queue (DLQ).

For more information, see Using dead-letter queues to process undelivered events in the EventBridge User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.events.*;
 DeadLetterConfigProperty deadLetterConfigProperty = DeadLetterConfigProperty.builder()
         .arn("arn")
         .build();
 

See Also: