Class: Aws::Macie2::Types::AllowListCriteria

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#regexString

Returns:

  • (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_listTypes::S3WordsList

Provides information about an S3 object that lists specific text to ignore.

Returns:



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