AWSS3QueueConfigurationDeprecated
Objective-C
@interface AWSS3QueueConfigurationDeprecated
Swift
class AWSS3QueueConfigurationDeprecated
This data type is deprecated. Use QueueConfiguration for the same purposes. This data type specifies the configuration for publishing messages to an Amazon Simple Queue Service (Amazon SQS) queue when Amazon S3 detects specified events.
-
The bucket event for which to send notifications.
Declaration
Objective-C
@property (nonatomic) AWSS3Event event;
Swift
var event: AWSS3Event { get set }
-
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 }
-
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 queue;
Swift
var queue: String? { get set }