CaseRuleDetails

sealed class CaseRuleDetails

Represents what rule type should take place, under what conditions. In the Amazon Connect admin website, case rules are known as case field conditions. For more information about case field conditions, see Add case field conditions to a case template.

Inheritors

Types

Link copied to clipboard

Which options are available in a child field based on the selected value in a parent field.

Link copied to clipboard
data class Hidden(val value: HiddenCaseRule) : CaseRuleDetails

Whether a field is visible, based on values in other fields.

Link copied to clipboard
data class Required(val value: RequiredCaseRule) : CaseRuleDetails

Required rule type, used to indicate whether a field is required.

Link copied to clipboard

Functions

Link copied to clipboard
Link copied to clipboard

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

Link copied to clipboard
Link copied to clipboard

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

Link copied to clipboard