Class: Aws::ConnectCases::Types::OperandOne

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb

Overview

Note:

OperandOne is a union - when making an API calls you must set exactly one of the members.

Note:

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.

Direct Known Subclasses

FieldId, Unknown

Defined Under Namespace

Classes: FieldId, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#field_idString

The field ID that this operand should take the value of.

Returns:

  • (String)


2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2689

class OperandOne < Struct.new(
  :field_id,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class FieldId < OperandOne; end
  class Unknown < OperandOne; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2689
2690
2691
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2689

def unknown
  @unknown
end