AWSS3PutBucketNotificationConfigurationRequest

Objective-C

@interface AWSS3PutBucketNotificationConfigurationRequest

Swift

class AWSS3PutBucketNotificationConfigurationRequest
  • The name of the bucket.

    Declaration

    Objective-C

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

    Swift

    var bucket: String? { get set }
  • The account id of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP 403 (Access Denied) error.

    Declaration

    Objective-C

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

    Swift

    var expectedBucketOwner: String? { get set }
  • A container for specifying the notification configuration of the bucket. If this element is empty, notifications are turned off for the bucket.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSS3NotificationConfiguration *_Nullable notificationConfiguration;

    Swift

    var notificationConfiguration: AWSS3NotificationConfiguration? { get set }