RowFilter

sealed class RowFilter

The row filter.

Inheritors

Types

Link copied to clipboard
data class And(val value: List<RowFilter>) : RowFilter

The 'and' clause of the row filter.

Link copied to clipboard
data class Expression(val value: RowFilterExpression) : RowFilter

The expression of the row filter.

Link copied to clipboard
data class Or(val value: List<RowFilter>) : RowFilter

The 'or' clause of the row filter.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this RowFilter as a And and retrieves its kotlin.collections.List value. Throws an exception if the RowFilter is not a And.

Link copied to clipboard

Casts this RowFilter as a And and retrieves its kotlin.collections.List value. Returns null if the RowFilter is not a And.

Link copied to clipboard

Casts this RowFilter as a Expression and retrieves its aws.sdk.kotlin.services.datazone.model.RowFilterExpression value. Throws an exception if the RowFilter is not a Expression.

Link copied to clipboard
Link copied to clipboard

Casts this RowFilter as a Or and retrieves its kotlin.collections.List value. Throws an exception if the RowFilter is not a Or.

Link copied to clipboard

Casts this RowFilter as a Or and retrieves its kotlin.collections.List value. Returns null if the RowFilter is not a Or.