AWSSESIdentityNotificationAttributes
Objective-C
@interface AWSSESIdentityNotificationAttributes
Swift
class AWSSESIdentityNotificationAttributes
Represents the notification attributes of an identity, including whether an identity has Amazon Simple Notification Service (Amazon SNS) topics set for bounce, complaint, and/or delivery notifications, and whether feedback forwarding is enabled for bounce and complaint notifications.
Required parameters: [BounceTopic, ComplaintTopic, DeliveryTopic, ForwardingEnabled]
-
The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish bounce notifications.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable bounceTopic;
Swift
var bounceTopic: String? { get set }
-
The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish complaint notifications.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable complaintTopic;
Swift
var complaintTopic: String? { get set }
-
The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish delivery notifications.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable deliveryTopic;
Swift
var deliveryTopic: String? { get set }
-
Describes whether Amazon SES will forward bounce and complaint notifications as email.
true
indicates that Amazon SES will forward bounce and complaint notifications as email, whilefalse
indicates that bounce and complaint notifications will be published only to the specified bounce and complaint Amazon SNS topics.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable forwardingEnabled;
Swift
var forwardingEnabled: NSNumber? { get set }
-
Describes whether Amazon SES includes the original email headers in Amazon SNS notifications of type
Bounce
. A value oftrue
specifies that Amazon SES will include headers in bounce notifications, and a value offalse
specifies that Amazon SES will not include headers in bounce notifications.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable headersInBounceNotificationsEnabled;
Swift
var headersInBounceNotificationsEnabled: NSNumber? { get set }
-
Describes whether Amazon SES includes the original email headers in Amazon SNS notifications of type
Complaint
. A value oftrue
specifies that Amazon SES will include headers in complaint notifications, and a value offalse
specifies that Amazon SES will not include headers in complaint notifications.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable headersInComplaintNotificationsEnabled;
Swift
var headersInComplaintNotificationsEnabled: NSNumber? { get set }
-
Describes whether Amazon SES includes the original email headers in Amazon SNS notifications of type
Delivery
. A value oftrue
specifies that Amazon SES will include headers in delivery notifications, and a value offalse
specifies that Amazon SES will not include headers in delivery notifications.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable headersInDeliveryNotificationsEnabled;
Swift
var headersInDeliveryNotificationsEnabled: NSNumber? { get set }