@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.
13 lines (12 loc) • 726 B
TypeScript
export declare const NotificationTypes: {
readonly Bounce: "Bounce";
readonly Complaint: "Complaint";
readonly Delivery: "Delivery";
};
/**
* Types of Email Notifications that are covered by Email Sender.
* * Bounce usually occurs when the recipient address does not exist, their inbox is full, the content of the message if flagged or other casuistics.
* * Complaint indicates that the recipient does not want the email that was sent to them. It is usually a proactive action and it is best to remove the recipient address from the mailing list whenever it is.
* * Delivery marks an email as correctly delivered.
*/
export type NotificationTypes = (typeof NotificationTypes)[keyof typeof NotificationTypes];