Class: Aws::S3::Types::QueueConfigurationDeprecated
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::QueueConfigurationDeprecated
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass QueueConfigurationDeprecated data as a hash:
{
id: "NotificationId",
event: "s3:ReducedRedundancyLostObject", # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated
events: ["s3:ReducedRedundancyLostObject"], # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated
queue: "QueueArn",
}
Instance Attribute Summary collapse
-
#event ⇒ String
Bucket event for which to send notifications.
- #events ⇒ Array<String>
-
#id ⇒ String
Optional unique identifier for configurations in a notification configuration.
- #queue ⇒ String
Instance Attribute Details
#event ⇒ String
Bucket event for which to send notifications.
7199 7200 7201 7202 7203 7204 7205 |
# File 'lib/aws-sdk-s3/types.rb', line 7199 class QueueConfigurationDeprecated < Struct.new( :id, :event, :events, :queue) include Aws::Structure end |
#events ⇒ Array<String>
7199 7200 7201 7202 7203 7204 7205 |
# File 'lib/aws-sdk-s3/types.rb', line 7199 class QueueConfigurationDeprecated < Struct.new( :id, :event, :events, :queue) include Aws::Structure end |
#id ⇒ String
Optional unique identifier for configurations in a notification configuration. If you don’t provide one, Amazon S3 will assign an ID.
7199 7200 7201 7202 7203 7204 7205 |
# File 'lib/aws-sdk-s3/types.rb', line 7199 class QueueConfigurationDeprecated < Struct.new( :id, :event, :events, :queue) include Aws::Structure end |
#queue ⇒ String
7199 7200 7201 7202 7203 7204 7205 |
# File 'lib/aws-sdk-s3/types.rb', line 7199 class QueueConfigurationDeprecated < Struct.new( :id, :event, :events, :queue) include Aws::Structure end |