Class: Aws::SecurityHub::Types::AwsS3BucketNotificationConfigurationFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsS3BucketNotificationConfigurationFilter
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsS3BucketNotificationConfigurationFilter data as a hash:
{
s3_key_filter: {
filter_rules: [
{
name: "Prefix", # accepts Prefix, Suffix
value: "NonEmptyString",
},
],
},
}
Filtering information for the notifications. The filtering is based on Amazon S3 key names.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_key_filter ⇒ Types::AwsS3BucketNotificationConfigurationS3KeyFilter
Details for an Amazon S3 filter.
Instance Attribute Details
#s3_key_filter ⇒ Types::AwsS3BucketNotificationConfigurationS3KeyFilter
Details for an Amazon S3 filter.
17320 17321 17322 17323 17324 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 17320 class AwsS3BucketNotificationConfigurationFilter < Struct.new( :s3_key_filter) SENSITIVE = [] include Aws::Structure end |