Class: Aws::Macie2::Types::AllowListCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::Macie2::Types::AllowListCriteria
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-macie2/types.rb
Overview
Specifies the criteria for an allow list. The criteria must specify a regular expression (regex) or an S3 object (s3WordsList). It can’t specify both.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
- #regex ⇒ String
-
#s3_words_list ⇒ Types::S3WordsList
Provides information about an S3 object that lists specific text to ignore.
Instance Attribute Details
#regex ⇒ String
152 153 154 155 156 157 |
# File 'lib/aws-sdk-macie2/types.rb', line 152 class AllowListCriteria < Struct.new( :regex, :s3_words_list) SENSITIVE = [] include Aws::Structure end |
#s3_words_list ⇒ Types::S3WordsList
Provides information about an S3 object that lists specific text to ignore.
152 153 154 155 156 157 |
# File 'lib/aws-sdk-macie2/types.rb', line 152 class AllowListCriteria < Struct.new( :regex, :s3_words_list) SENSITIVE = [] include Aws::Structure end |