EventSubscriptionFilterArgs

data class EventSubscriptionFilterArgs(val advancedFilters: Output<List<Any>>? = null, val enableAdvancedFilteringOnArrays: Output<Boolean>? = null, val includedEventTypes: Output<List<String>>? = null, val isSubjectCaseSensitive: Output<Boolean>? = null, val subjectBeginsWith: Output<String>? = null, val subjectEndsWith: Output<String>? = null) : ConvertibleToJava<EventSubscriptionFilterArgs>

Filter for the Event Subscription.

Constructors

Link copied to clipboard
constructor(advancedFilters: Output<List<Any>>? = null, enableAdvancedFilteringOnArrays: Output<Boolean>? = null, includedEventTypes: Output<List<String>>? = null, isSubjectCaseSensitive: Output<Boolean>? = null, subjectBeginsWith: Output<String>? = null, subjectEndsWith: Output<String>? = null)

Properties

Link copied to clipboard
val advancedFilters: Output<List<Any>>? = null

An array of advanced filters that are used for filtering event subscriptions.

Link copied to clipboard

Allows advanced filters to be evaluated against an array of values instead of expecting a singular value.

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

A list of applicable event types that need to be part of the event subscription. If it is desired to subscribe to all default event types, set the IncludedEventTypes to null.

Link copied to clipboard
val isSubjectCaseSensitive: Output<Boolean>? = null

Specifies if the SubjectBeginsWith and SubjectEndsWith properties of the filter should be compared in a case sensitive manner.

Link copied to clipboard
val subjectBeginsWith: Output<String>? = null

An optional string to filter events for an event subscription based on a resource path prefix. The format of this depends on the publisher of the events. Wildcard characters are not supported in this path.

Link copied to clipboard
val subjectEndsWith: Output<String>? = null

An optional string to filter events for an event subscription based on a resource path suffix. Wildcard characters are not supported in this path.

Functions

Link copied to clipboard
open override fun toJava(): EventSubscriptionFilterArgs