Class: Aws::SecurityHub::Types::AwsS3BucketNotificationConfigurationDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsS3BucketNotificationConfigurationDetail
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsS3BucketNotificationConfigurationDetail data as a hash:
{
events: ["NonEmptyString"],
filter: {
s3_key_filter: {
filter_rules: [
{
name: "Prefix", # accepts Prefix, Suffix
value: "NonEmptyString",
},
],
},
},
destination: "NonEmptyString",
type: "NonEmptyString",
}
Details for an S3 bucket notification configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination ⇒ String
The ARN of the Lambda function, Amazon SQS queue, or Amazon SNS topic that generates the notification.
-
#events ⇒ Array<String>
The list of events that trigger a notification.
-
#filter ⇒ Types::AwsS3BucketNotificationConfigurationFilter
The filters that determine which S3 buckets generate notifications.
-
#type ⇒ String
Indicates the type of notification.
Instance Attribute Details
#destination ⇒ String
The ARN of the Lambda function, Amazon SQS queue, or Amazon SNS topic that generates the notification.
18798 18799 18800 18801 18802 18803 18804 18805 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 18798 class AwsS3BucketNotificationConfigurationDetail < Struct.new( :events, :filter, :destination, :type) SENSITIVE = [] include Aws::Structure end |
#events ⇒ Array<String>
The list of events that trigger a notification.
18798 18799 18800 18801 18802 18803 18804 18805 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 18798 class AwsS3BucketNotificationConfigurationDetail < Struct.new( :events, :filter, :destination, :type) SENSITIVE = [] include Aws::Structure end |
#filter ⇒ Types::AwsS3BucketNotificationConfigurationFilter
The filters that determine which S3 buckets generate notifications.
18798 18799 18800 18801 18802 18803 18804 18805 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 18798 class AwsS3BucketNotificationConfigurationDetail < Struct.new( :events, :filter, :destination, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Indicates the type of notification. Notifications can be generated using Lambda functions, Amazon SQS queues or Amazon SNS topics.
18798 18799 18800 18801 18802 18803 18804 18805 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 18798 class AwsS3BucketNotificationConfigurationDetail < Struct.new( :events, :filter, :destination, :type) SENSITIVE = [] include Aws::Structure end |