Class: Aws::Connect::Types::RealTimeContactAnalysisTimeData

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/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

AbsoluteTime, Unknown

Defined Under Namespace

Classes: AbsoluteTime, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#absolute_timeTime

Time represented in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

Returns:

  • (Time)


15044
15045
15046
15047
15048
15049
15050
15051
15052
15053
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15044

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

  class AbsoluteTime < RealTimeContactAnalysisTimeData; end
  class Unknown < RealTimeContactAnalysisTimeData; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



15044
15045
15046
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15044

def unknown
  @unknown
end