UNPKG

@cloudtoolkit/aws

Version:

The Cloud Toolkit AWS provider for Pulumi provision well-architected solutions in [AWS](https://aws.amazon.com/). With Cloud Toolkit AWS you can use your preferred programming language to manage your platform with Infrastructure as Code.

11 lines (10 loc) 525 B
export declare const DeadLetterQueueTypes: { readonly PERMISSIVE: "permissive"; readonly RESTRICTIVE: "restrictive"; }; /** * Dead Letter Queue type that will receive the faulty messages from the base Queue. * Permissive - Messages will be sent to the Dead Letter Queue after 10 failed delivery attempts. * Restrictive - Messages will be sent to the Dead Letter Queue after the first failed delivery attempt. */ export type DeadLetterQueueTypes = (typeof DeadLetterQueueTypes)[keyof typeof DeadLetterQueueTypes];