Class: Aws::Connect::Types::PredefinedAttributeValues
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::PredefinedAttributeValues
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
    Note:
    
  
  PredefinedAttributeValues is a union - when making an API calls you must set exactly one of the members.
    Note:
    
  
PredefinedAttributeValues is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PredefinedAttributeValues corresponding to the set member.
Information about values of a predefined attribute.
Direct Known Subclasses
Defined Under Namespace
Classes: StringList, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #string_list  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Predefined attribute values of type string list.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#string_list ⇒ Array<String>
Predefined attribute values of type string list.
      17469 17470 17471 17472 17473 17474 17475 17476 17477 17478  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 17469 class PredefinedAttributeValues < Struct.new( :string_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class StringList < PredefinedAttributeValues; end class Unknown < PredefinedAttributeValues; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      17469 17470 17471  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 17469 def unknown @unknown end  |