1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/email/SES_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 
10 namespace Aws
11 {
12 namespace SES
13 {
14 namespace Model
15 {
16   enum class BulkEmailStatus
17   {
18     NOT_SET,
19     Success,
20     MessageRejected,
21     MailFromDomainNotVerified,
22     ConfigurationSetDoesNotExist,
23     TemplateDoesNotExist,
24     AccountSuspended,
25     AccountThrottled,
26     AccountDailyQuotaExceeded,
27     InvalidSendingPoolName,
28     AccountSendingPaused,
29     ConfigurationSetSendingPaused,
30     InvalidParameterValue,
31     TransientFailure,
32     Failed
33   };
34 
35 namespace BulkEmailStatusMapper
36 {
37 AWS_SES_API BulkEmailStatus GetBulkEmailStatusForName(const Aws::String& name);
38 
39 AWS_SES_API Aws::String GetNameForBulkEmailStatus(BulkEmailStatus value);
40 } // namespace BulkEmailStatusMapper
41 } // namespace Model
42 } // namespace SES
43 } // namespace Aws
44