AWSS3QueueConfiguration

Objective-C

@interface AWSS3QueueConfiguration

Swift

class AWSS3QueueConfiguration

Specifies the configuration for publishing messages to an Amazon Simple Queue Service (Amazon SQS) queue when Amazon S3 detects specified events.

Required parameters: [QueueArn, Events]

  • A collection of bucket events for which to send notifications

    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 SQS queue to which Amazon S3 publishes a message when it detects events of the specified type.

    Declaration

    Objective-C

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

    Swift

    var queueArn: String? { get set }