Class: Aws::Connect::Types::RealTimeContactAnalysisTimeData
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::RealTimeContactAnalysisTimeData
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
    Note:
    
  
RealTimeContactAnalysisTimeData is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RealTimeContactAnalysisTimeData corresponding to the set member.
Object describing time with which the segment is associated. It can have different representations of time. Currently supported: absoluteTime
Direct Known Subclasses
Defined Under Namespace
Classes: AbsoluteTime, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #absolute_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Time represented in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#absolute_time ⇒ Time
Time represented in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
      18522 18523 18524 18525 18526 18527 18528 18529 18530 18531  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18522 class RealTimeContactAnalysisTimeData < Struct.new( :absolute_time, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AbsoluteTime < RealTimeContactAnalysisTimeData; end class Unknown < RealTimeContactAnalysisTimeData; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      18522 18523 18524  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18522 def unknown @unknown end  |