EventDataStoreAdvancedEventSelectorFieldSelector

data class EventDataStoreAdvancedEventSelectorFieldSelector(val endsWiths: List<String>? = null, val equals: List<String>? = null, val field: String? = null, val notEndsWiths: List<String>? = null, val notEquals: List<String>? = null, val notStartsWiths: List<String>? = null, val startsWiths: List<String>? = null)

Constructors

constructor(endsWiths: List<String>? = null, equals: List<String>? = null, field: String? = null, notEndsWiths: List<String>? = null, notEquals: List<String>? = null, notStartsWiths: List<String>? = null, startsWiths: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

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

A list of values that includes events that match the last few characters of the event record field specified as the value of field.

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

A list of values that includes events that match the exact value of the event record field specified as the value of field. This is the only valid operator that you can use with the readOnly, eventCategory, and resources.type fields.

Link copied to clipboard
val field: String? = null

Specifies a field in an event record on which to filter events to be logged. You can specify only the following values: readOnly, eventSource, eventName, eventCategory, resources.type, resources.ARN.

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

A list of values that excludes events that match the last few characters of the event record field specified as the value of field.

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

A list of values that excludes events that match the exact value of the event record field specified as the value of field.

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

A list of values that excludes events that match the first few characters of the event record field specified as the value of field.

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

A list of values that includes events that match the first few characters of the event record field specified as the value of field.