Class: Aws::S3::Types::PutBucketNotificationConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::PutBucketNotificationConfigurationRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the bucket.
-
#expected_bucket_owner ⇒ String
The account ID of the expected bucket owner.
-
#notification_configuration ⇒ Types::NotificationConfiguration
A container for specifying the notification configuration of the bucket.
-
#skip_destination_validation ⇒ Boolean
Skips validation of Amazon SQS, Amazon SNS, and Lambda destinations.
Instance Attribute Details
#bucket ⇒ String
The name of the bucket.
10178 10179 10180 10181 10182 10183 10184 10185 |
# File 'lib/aws-sdk-s3/types.rb', line 10178 class PutBucketNotificationConfigurationRequest < Struct.new( :bucket, :notification_configuration, :expected_bucket_owner, :skip_destination_validation) SENSITIVE = [] include Aws::Structure end |
#expected_bucket_owner ⇒ String
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code ‘403 Forbidden` (access denied).
10178 10179 10180 10181 10182 10183 10184 10185 |
# File 'lib/aws-sdk-s3/types.rb', line 10178 class PutBucketNotificationConfigurationRequest < Struct.new( :bucket, :notification_configuration, :expected_bucket_owner, :skip_destination_validation) SENSITIVE = [] include Aws::Structure end |
#notification_configuration ⇒ Types::NotificationConfiguration
A container for specifying the notification configuration of the bucket. If this element is empty, notifications are turned off for the bucket.
10178 10179 10180 10181 10182 10183 10184 10185 |
# File 'lib/aws-sdk-s3/types.rb', line 10178 class PutBucketNotificationConfigurationRequest < Struct.new( :bucket, :notification_configuration, :expected_bucket_owner, :skip_destination_validation) SENSITIVE = [] include Aws::Structure end |
#skip_destination_validation ⇒ Boolean
Skips validation of Amazon SQS, Amazon SNS, and Lambda destinations. True or false value.
10178 10179 10180 10181 10182 10183 10184 10185 |
# File 'lib/aws-sdk-s3/types.rb', line 10178 class PutBucketNotificationConfigurationRequest < Struct.new( :bucket, :notification_configuration, :expected_bucket_owner, :skip_destination_validation) SENSITIVE = [] include Aws::Structure end |