FindingsFilterFindingCriteriaCriterion

data class FindingsFilterFindingCriteriaCriterion(val eqExactMatches: List<String>? = null, val eqs: List<String>? = null, val field: String, val gt: String? = null, val gte: String? = null, val lt: String? = null, val lte: String? = null, val neqs: List<String>? = null)

Constructors

Link copied to clipboard
constructor(eqExactMatches: List<String>? = null, eqs: List<String>? = null, field: String, gt: String? = null, gte: String? = null, lt: String? = null, lte: String? = null, neqs: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val eqExactMatches: List<String>? = null

The value for the property exclusively matches (equals an exact match for) all the specified values. If you specify multiple values, Amazon Macie uses AND logic to join the values.

Link copied to clipboard
val eqs: List<String>? = null

The value for the property matches (equals) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.

Link copied to clipboard

The name of the field to be evaluated.

Link copied to clipboard
val gt: String? = null

The value for the property is greater than the specified value.

Link copied to clipboard
val gte: String? = null

The value for the property is greater than or equal to the specified value.

Link copied to clipboard
val lt: String? = null

The value for the property is less than the specified value.

Link copied to clipboard
val lte: String? = null

The value for the property is less than or equal to the specified value.

Link copied to clipboard
val neqs: List<String>? = null

The value for the property doesn't match (doesn't equal) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.