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 publishes 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 publishes 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 publishes delivery notifications.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable deliveryTopic;

    Swift

    var deliveryTopic: String? { get set }
  • Describes whether Amazon SES forwards bounce and complaint notifications as email. true indicates that Amazon SES forwards bounce and complaint notifications as email, while false indicates that bounce and complaint notifications are 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 of true specifies that Amazon SES includes headers in bounce notifications, and a value of false specifies that Amazon SES does 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 of true specifies that Amazon SES includes headers in complaint notifications, and a value of false specifies that Amazon SES does 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 of true specifies that Amazon SES includes headers in delivery notifications, and a value of false specifies that Amazon SES does not include headers in delivery notifications.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable headersInDeliveryNotificationsEnabled;

    Swift

    var headersInDeliveryNotificationsEnabled: NSNumber? { get set }