Class: Aws::Connect::Types::EvaluationFormSingleSelectQuestionAutomationOption
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Connect::Types::EvaluationFormSingleSelectQuestionAutomationOption
 
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
    Note:
    
  
  EvaluationFormSingleSelectQuestionAutomationOption is a union - when making an API calls you must set exactly one of the members.
    Note:
    
  
EvaluationFormSingleSelectQuestionAutomationOption is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluationFormSingleSelectQuestionAutomationOption corresponding to the set member.
Information about the automation option of a single select question.
Direct Known Subclasses
Defined Under Namespace
Classes: RuleCategory, Unknown
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #rule_category  ⇒ Types::SingleSelectQuestionRuleCategoryAutomation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The automation option based on a rule category for the single select question. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#rule_category ⇒ Types::SingleSelectQuestionRuleCategoryAutomation
The automation option based on a rule category for the single select question.
| 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 | # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9643 class EvaluationFormSingleSelectQuestionAutomationOption < Struct.new( :rule_category, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RuleCategory < EvaluationFormSingleSelectQuestionAutomationOption; end class Unknown < EvaluationFormSingleSelectQuestionAutomationOption; end end | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 9643 9644 9645 | # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9643 def unknown @unknown end |