Class: Aws::ConnectCases::Types::HiddenCaseRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::HiddenCaseRule
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connectcases/types.rb
Overview
A rule that controls field visibility based on conditions. Fields can be shown or hidden dynamically based on values in other fields.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#conditions ⇒ Array<Types::BooleanCondition>
A list of conditions that determine field visibility.
-
#default_value ⇒ Boolean
Whether the field is hidden when no conditions match.
Instance Attribute Details
#conditions ⇒ Array<Types::BooleanCondition>
A list of conditions that determine field visibility.
2168 2169 2170 2171 2172 2173 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2168 class HiddenCaseRule < Struct.new( :default_value, :conditions) SENSITIVE = [] include Aws::Structure end |
#default_value ⇒ Boolean
Whether the field is hidden when no conditions match.
2168 2169 2170 2171 2172 2173 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2168 class HiddenCaseRule < Struct.new( :default_value, :conditions) SENSITIVE = [] include Aws::Structure end |