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.
1180 1181 1182 1183 1184 1185 1186 1187 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 1180 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.
1180 1181 1182 1183 1184 1185 1186 1187 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 1180 class Criterion < Struct.new( :eq, :neq, :contains, :exists) SENSITIVE = [] include Aws::Structure end |