FilterClause

sealed class FilterClause

A search filter clause in Amazon DataZone.

Inheritors

Types

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

The 'and' search filter clause in Amazon DataZone.

Link copied to clipboard
data class Filter(val value: Filter) : FilterClause

A search filter in Amazon DataZone.

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

The 'or' search filter clause in Amazon DataZone.

Link copied to clipboard

Functions

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

Casts this FilterClause as a Filter and retrieves its aws.sdk.kotlin.services.datazone.model.Filter value. Returns null if the FilterClause is not a Filter.

Link copied to clipboard

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

Link copied to clipboard

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