Class: Aws::AccessAnalyzer::Types::Criterion
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::Criterion
- Includes:
- Structure
- Defined in:
- 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].
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#contains ⇒ Array<String>
A “contains” operator to match for the filter used to create the rule.
-
#eq ⇒ Array<String>
An “equals” operator to match for the filter used to create the rule.
-
#exists ⇒ Boolean
An “exists” operator to match for the filter used to create the rule.
-
#neq ⇒ Array<String>
A “not equals” operator to match for the filter used to create the rule.
Instance Attribute Details
#contains ⇒ Array<String>
A “contains” operator to match for the filter used to create the rule.
1115 1116 1117 1118 1119 1120 1121 1122 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 1115 class Criterion < Struct.new( :eq, :neq, :contains, :exists) SENSITIVE = [] include Aws::Structure end |
#eq ⇒ Array<String>
An “equals” operator to match for the filter used to create the rule.
1115 1116 1117 1118 1119 1120 1121 1122 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 1115 class Criterion < Struct.new( :eq, :neq, :contains, :exists) SENSITIVE = [] include Aws::Structure end |