FilterFindingCriteriaCriterion

data class FilterFindingCriteriaCriterion(val equals: List<String>? = null, val field: String, val greaterThan: String? = null, val greaterThanOrEqual: String? = null, val lessThan: String? = null, val lessThanOrEqual: String? = null, val notEquals: List<String>? = null)

Constructors

Link copied to clipboard
constructor(equals: List<String>? = null, field: String, greaterThan: String? = null, greaterThanOrEqual: String? = null, lessThan: String? = null, lessThanOrEqual: String? = null, notEquals: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

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

List of string values to be evaluated.

Link copied to clipboard

The name of the field to be evaluated. The full list of field names can be found in AWS documentation.

Link copied to clipboard
val greaterThan: String? = null

A value to be evaluated. Accepts either an integer or a date in RFC 3339 format.

Link copied to clipboard

A value to be evaluated. Accepts either an integer or a date in RFC 3339 format.

Link copied to clipboard
val lessThan: String? = null

A value to be evaluated. Accepts either an integer or a date in RFC 3339 format.

Link copied to clipboard
val lessThanOrEqual: String? = null

A value to be evaluated. Accepts either an integer or a date in RFC 3339 format.

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

List of string values to be evaluated.