Class: Aws::Connect::Types::EvaluationFormItemEnablementConditionOperand

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

Overview

Note:

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

Note:

EvaluationFormItemEnablementConditionOperand is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluationFormItemEnablementConditionOperand corresponding to the set member.

An operand of the enablement condition.

Direct Known Subclasses

Condition, Expression, Unknown

Defined Under Namespace

Classes: Condition, Expression, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#conditionTypes::EvaluationFormItemEnablementCondition

A condition for item enablement.



11895
11896
11897
11898
11899
11900
11901
11902
11903
11904
11905
11906
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 11895

class EvaluationFormItemEnablementConditionOperand < Struct.new(
  :expression,
  :condition,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Expression < EvaluationFormItemEnablementConditionOperand; end
  class Condition < EvaluationFormItemEnablementConditionOperand; end
  class Unknown < EvaluationFormItemEnablementConditionOperand; end
end

#expressionTypes::EvaluationFormItemEnablementExpression

An expression of the enablement condition.



11895
11896
11897
11898
11899
11900
11901
11902
11903
11904
11905
11906
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 11895

class EvaluationFormItemEnablementConditionOperand < Struct.new(
  :expression,
  :condition,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Expression < EvaluationFormItemEnablementConditionOperand; end
  class Condition < EvaluationFormItemEnablementConditionOperand; end
  class Unknown < EvaluationFormItemEnablementConditionOperand; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



11895
11896
11897
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 11895

def unknown
  @unknown
end