Class: Aws::AccessAnalyzer::Types::Criterion

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb

Overview

The criteria to use in the filter that defines the archive rule. For more information on available filter keys, see IAM Access Analyzer filter keys.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#containsArray<String>

A "contains" operator to match for the filter used to create the rule.

Returns:

  • (Array<String>)


1053
1054
1055
1056
1057
1058
1059
1060
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 1053

class Criterion < Struct.new(
  :eq,
  :neq,
  :contains,
  :exists)
  SENSITIVE = []
  include Aws::Structure
end

#eqArray<String>

An "equals" operator to match for the filter used to create the rule.

Returns:

  • (Array<String>)


1053
1054
1055
1056
1057
1058
1059
1060
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 1053

class Criterion < Struct.new(
  :eq,
  :neq,
  :contains,
  :exists)
  SENSITIVE = []
  include Aws::Structure
end

#existsBoolean

An "exists" operator to match for the filter used to create the rule.

Returns:

  • (Boolean)


1053
1054
1055
1056
1057
1058
1059
1060
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 1053

class Criterion < Struct.new(
  :eq,
  :neq,
  :contains,
  :exists)
  SENSITIVE = []
  include Aws::Structure
end

#neqArray<String>

A "not equals" operator to match for the filter used to create the rule.

Returns:

  • (Array<String>)


1053
1054
1055
1056
1057
1058
1059
1060
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 1053

class Criterion < Struct.new(
  :eq,
  :neq,
  :contains,
  :exists)
  SENSITIVE = []
  include Aws::Structure
end