Class: Aws::ConnectCases::Types::OperandOne
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::OperandOne
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connectcases/types.rb
Overview
OperandOne is a union - when making an API calls you must set exactly one of the members.
OperandOne is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OperandOne corresponding to the set member.
Represents the left hand operand in the condition. 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].
[1]: docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field_id ⇒ String
The field ID that this operand should take the value of.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#field_id ⇒ String
The field ID that this operand should take the value of.
2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2391 class OperandOne < Struct.new( :field_id, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class FieldId < OperandOne; end class Unknown < OperandOne; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2391 2392 2393 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2391 def unknown @unknown end |