Class: Aws::SecurityHub::Types::AwsS3BucketNotificationConfigurationDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsS3BucketNotificationConfigurationDetail
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
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.
18948 18949 18950 18951 18952 18953 18954 18955 |
# File 'lib/aws-sdk-securityhub/types.rb', line 18948 class AwsS3BucketNotificationConfigurationDetail < Struct.new( :events, :filter, :destination, :type) SENSITIVE = [] include Aws::Structure end |
#events ⇒ Array<String>
The list of events that trigger a notification.
18948 18949 18950 18951 18952 18953 18954 18955 |
# File 'lib/aws-sdk-securityhub/types.rb', line 18948 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.
18948 18949 18950 18951 18952 18953 18954 18955 |
# File 'lib/aws-sdk-securityhub/types.rb', line 18948 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, with corresponding valid values as follows:
-
‘LambdaConfiguration`
-
‘QueueConfiguration`
-
‘TopicConfiguration`
18948 18949 18950 18951 18952 18953 18954 18955 |
# File 'lib/aws-sdk-securityhub/types.rb', line 18948 class AwsS3BucketNotificationConfigurationDetail < Struct.new( :events, :filter, :destination, :type) SENSITIVE = [] include Aws::Structure end |