You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Criterion as input to an Aws::Client method, you can use a vanilla Hash:

{
  contains: ["String"],
  eq: ["String"],
  exists: false,
  neq: ["String"],
}

The criteria to use in the filter that defines the archive rule.

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>)

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

#eqArray<String>

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

Returns:

  • (Array<String>)

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

#existsBoolean

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

Returns:

  • (Boolean)

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

#neqArray<String>

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

Returns:

  • (Array<String>)

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