CustomFieldsFilter

sealed class CustomFieldsFilter

A filter for fields in Custom type related items. Only one value can be provided.

Inheritors

Types

Link copied to clipboard

Provides "and all" filtering.

Link copied to clipboard
data class Field(val value: FieldFilter) : CustomFieldsFilter

A filter for fields. Only one value can be provided.

Link copied to clipboard
data class Not(val value: CustomFieldsFilter) : CustomFieldsFilter

Excludes items matching the filter.

Link copied to clipboard

Provides "or all" filtering.

Link copied to clipboard

Functions

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

Casts this CustomFieldsFilter as a Field and retrieves its aws.sdk.kotlin.services.connectcases.model.FieldFilter value. Throws an exception if the CustomFieldsFilter is not a Field.

Link copied to clipboard

Casts this CustomFieldsFilter as a Field and retrieves its aws.sdk.kotlin.services.connectcases.model.FieldFilter value. Returns null if the CustomFieldsFilter is not a Field.

Link copied to clipboard

Casts this CustomFieldsFilter as a Not and retrieves its aws.sdk.kotlin.services.connectcases.model.CustomFieldsFilter value. Throws an exception if the CustomFieldsFilter is not a Not.

Link copied to clipboard
Link copied to clipboard

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

Link copied to clipboard

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