OrCondition

sealed class OrCondition

A list of conditions which would be applied together with an OR condition.

Inheritors

Types

Link copied to clipboard
data class AndConditions(val value: List<TagCondition>) : OrCondition

A list of conditions which would be applied together with an AND condition.

Link copied to clipboard
Link copied to clipboard
data class TagCondition(val value: TagCondition) : OrCondition

A leaf node condition which can be used to specify a tag condition.

Functions

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

Casts this OrCondition as a TagCondition and retrieves its aws.sdk.kotlin.services.qconnect.model.TagCondition value. Throws an exception if the OrCondition is not a TagCondition.

Link copied to clipboard