AWSS3TopicConfiguration

Objective-C

@interface AWSS3TopicConfiguration

Swift

class AWSS3TopicConfiguration

A container for specifying the configuration for publication of messages to an Amazon Simple Notification Service (Amazon SNS) topic when Amazon S3 detects specified events.

Required parameters: [TopicArn, Events]

  • The Amazon S3 bucket event about which to send notifications. For more information, see Supported Event Types in the Amazon Simple Storage Service Developer Guide.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable events;

    Swift

    var events: [String]? { get set }
  • Specifies object key name filtering rules. For information about key name filtering, see Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3NotificationConfigurationFilter *_Nullable filter;

    Swift

    var filter: AWSS3NotificationConfigurationFilter? { get set }
  • An optional unique identifier for configurations in a notification configuration. If you don’t provide one, Amazon S3 will assign an ID.

    Declaration

    Objective-C

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

    Swift

    var identifier: String? { get set }
  • The Amazon Resource Name (ARN) of the Amazon SNS topic to which Amazon S3 publishes a message when it detects events of the specified type.

    Declaration

    Objective-C

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

    Swift

    var topicArn: String? { get set }