aws-sdk-connect 1.272.0 → 1.273.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +12 -2
- data/lib/aws-sdk-connect/client_api.rb +20 -0
- data/lib/aws-sdk-connect/types.rb +82 -0
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +19 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6def0c025a8df96803c126a375249fe0f0cf2c2345791864cfac1ba4679de4c
|
|
4
|
+
data.tar.gz: 8cc8e19fcc0b0d2d4fb2960d3e3dd4b85e11d78c359daa31577344c303447ef5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b68a1efade1ba7f754666eeea6c2a7d4116be761bd3fecf5683fa94165c3f5bf6283c0e3fe2eb0d8a13847050681e190fda9b7951713bb4902feae8b1767a126
|
|
7
|
+
data.tar.gz: c12a03cf4e6a1262cc95739950b8346724f6d54b5d862bd5182e9dbbe046bb89f383d08930d2c5d337470c466d954377872ac053421016fda941e8795317583d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.273.0 (2026-08-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds the ExtractedInformation segment to the ListRealtimeContactAnalysisSegmentsV2 API, enabling customers to retrieve information extracted from real-time contact analysis.
|
|
8
|
+
|
|
4
9
|
1.272.0 (2026-08-17)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.273.0
|
|
@@ -18332,7 +18332,7 @@ module Aws::Connect
|
|
|
18332
18332
|
# max_results: 1,
|
|
18333
18333
|
# next_token: "LargeNextToken",
|
|
18334
18334
|
# output_type: "Raw", # required, accepts Raw, Redacted
|
|
18335
|
-
# segment_types: ["Transcript"], # required, accepts Transcript, Categories, Issues, Event, Attachments, PostContactSummary
|
|
18335
|
+
# segment_types: ["Transcript"], # required, accepts Transcript, Categories, Issues, Event, Attachments, PostContactSummary, ExtractedInformation
|
|
18336
18336
|
# })
|
|
18337
18337
|
#
|
|
18338
18338
|
# @example Response structure
|
|
@@ -18382,6 +18382,16 @@ module Aws::Connect
|
|
|
18382
18382
|
# resp.segments[0].post_contact_summary.content #=> String
|
|
18383
18383
|
# resp.segments[0].post_contact_summary.status #=> String, one of "FAILED", "COMPLETED"
|
|
18384
18384
|
# resp.segments[0].post_contact_summary.failure_code #=> String, one of "QUOTA_EXCEEDED", "INSUFFICIENT_CONVERSATION_CONTENT", "FAILED_SAFETY_GUIDELINES", "INVALID_ANALYSIS_CONFIGURATION", "INTERNAL_ERROR"
|
|
18385
|
+
# resp.segments[0].extracted_information.extraction_definition_id #=> String
|
|
18386
|
+
# resp.segments[0].extracted_information.extraction_definition_name #=> String
|
|
18387
|
+
# resp.segments[0].extracted_information.extraction_definition_display_label #=> String
|
|
18388
|
+
# resp.segments[0].extracted_information.extracted_values #=> Array
|
|
18389
|
+
# resp.segments[0].extracted_information.extracted_values[0].content #=> String
|
|
18390
|
+
# resp.segments[0].extracted_information.extracted_values[0].points_of_interest #=> Array
|
|
18391
|
+
# resp.segments[0].extracted_information.extracted_values[0].points_of_interest[0].id #=> String
|
|
18392
|
+
# resp.segments[0].extracted_information.extracted_values[0].points_of_interest[0].character_offsets.begin_offset_char #=> Integer
|
|
18393
|
+
# resp.segments[0].extracted_information.extracted_values[0].points_of_interest[0].character_offsets.end_offset_char #=> Integer
|
|
18394
|
+
# resp.segments[0].extracted_information.failure_code #=> String, one of "QUOTA_EXCEEDED", "INSUFFICIENT_CONVERSATION_CONTENT", "FAILED_SAFETY_GUIDELINES", "INTERNAL_ERROR", "MAX_PACKAGE_FEATURE_ONLY"
|
|
18385
18395
|
# resp.next_token #=> String
|
|
18386
18396
|
#
|
|
18387
18397
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRealtimeContactAnalysisSegmentsV2 AWS API Documentation
|
|
@@ -31284,7 +31294,7 @@ module Aws::Connect
|
|
|
31284
31294
|
tracer: tracer
|
|
31285
31295
|
)
|
|
31286
31296
|
context[:gem_name] = 'aws-sdk-connect'
|
|
31287
|
-
context[:gem_version] = '1.
|
|
31297
|
+
context[:gem_version] = '1.273.0'
|
|
31288
31298
|
Seahorse::Client::Request.new(handlers, context)
|
|
31289
31299
|
end
|
|
31290
31300
|
|
|
@@ -1613,6 +1613,10 @@ module Aws::Connect
|
|
|
1613
1613
|
RealTimeContactAnalysisCharacterIntervals = Shapes::ListShape.new(name: 'RealTimeContactAnalysisCharacterIntervals')
|
|
1614
1614
|
RealTimeContactAnalysisContentType = Shapes::StringShape.new(name: 'RealTimeContactAnalysisContentType')
|
|
1615
1615
|
RealTimeContactAnalysisEventType = Shapes::StringShape.new(name: 'RealTimeContactAnalysisEventType')
|
|
1616
|
+
RealTimeContactAnalysisExtractedInformationContent = Shapes::StringShape.new(name: 'RealTimeContactAnalysisExtractedInformationContent')
|
|
1617
|
+
RealTimeContactAnalysisExtractedInformationFailureCode = Shapes::StringShape.new(name: 'RealTimeContactAnalysisExtractedInformationFailureCode')
|
|
1618
|
+
RealTimeContactAnalysisExtractedInformationValue = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisExtractedInformationValue')
|
|
1619
|
+
RealTimeContactAnalysisExtractedInformationValues = Shapes::ListShape.new(name: 'RealTimeContactAnalysisExtractedInformationValues')
|
|
1616
1620
|
RealTimeContactAnalysisId256 = Shapes::StringShape.new(name: 'RealTimeContactAnalysisId256')
|
|
1617
1621
|
RealTimeContactAnalysisIssueDetected = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisIssueDetected')
|
|
1618
1622
|
RealTimeContactAnalysisIssuesDetected = Shapes::ListShape.new(name: 'RealTimeContactAnalysisIssuesDetected')
|
|
@@ -1627,6 +1631,7 @@ module Aws::Connect
|
|
|
1627
1631
|
RealTimeContactAnalysisSegmentAttachments = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentAttachments')
|
|
1628
1632
|
RealTimeContactAnalysisSegmentCategories = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentCategories')
|
|
1629
1633
|
RealTimeContactAnalysisSegmentEvent = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentEvent')
|
|
1634
|
+
RealTimeContactAnalysisSegmentExtractedInformation = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentExtractedInformation')
|
|
1630
1635
|
RealTimeContactAnalysisSegmentIssues = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentIssues')
|
|
1631
1636
|
RealTimeContactAnalysisSegmentPostContactSummary = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentPostContactSummary')
|
|
1632
1637
|
RealTimeContactAnalysisSegmentTranscript = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentTranscript')
|
|
@@ -7614,6 +7619,12 @@ module Aws::Connect
|
|
|
7614
7619
|
|
|
7615
7620
|
RealTimeContactAnalysisCharacterIntervals.member = Shapes::ShapeRef.new(shape: RealTimeContactAnalysisCharacterInterval)
|
|
7616
7621
|
|
|
7622
|
+
RealTimeContactAnalysisExtractedInformationValue.add_member(:content, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisExtractedInformationContent, required: true, location_name: "Content"))
|
|
7623
|
+
RealTimeContactAnalysisExtractedInformationValue.add_member(:points_of_interest, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisTranscriptItemsWithCharacterOffsets, required: true, location_name: "PointsOfInterest"))
|
|
7624
|
+
RealTimeContactAnalysisExtractedInformationValue.struct_class = Types::RealTimeContactAnalysisExtractedInformationValue
|
|
7625
|
+
|
|
7626
|
+
RealTimeContactAnalysisExtractedInformationValues.member = Shapes::ShapeRef.new(shape: RealTimeContactAnalysisExtractedInformationValue)
|
|
7627
|
+
|
|
7617
7628
|
RealTimeContactAnalysisIssueDetected.add_member(:transcript_items, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisTranscriptItemsWithContent, required: true, location_name: "TranscriptItems"))
|
|
7618
7629
|
RealTimeContactAnalysisIssueDetected.struct_class = Types::RealTimeContactAnalysisIssueDetected
|
|
7619
7630
|
|
|
@@ -7646,6 +7657,13 @@ module Aws::Connect
|
|
|
7646
7657
|
RealTimeContactAnalysisSegmentEvent.add_member(:time, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisTimeData, required: true, location_name: "Time"))
|
|
7647
7658
|
RealTimeContactAnalysisSegmentEvent.struct_class = Types::RealTimeContactAnalysisSegmentEvent
|
|
7648
7659
|
|
|
7660
|
+
RealTimeContactAnalysisSegmentExtractedInformation.add_member(:extraction_definition_id, Shapes::ShapeRef.new(shape: ExtractionDefinitionId, required: true, location_name: "ExtractionDefinitionId"))
|
|
7661
|
+
RealTimeContactAnalysisSegmentExtractedInformation.add_member(:extraction_definition_name, Shapes::ShapeRef.new(shape: ExtractionDefinitionName, required: true, location_name: "ExtractionDefinitionName"))
|
|
7662
|
+
RealTimeContactAnalysisSegmentExtractedInformation.add_member(:extraction_definition_display_label, Shapes::ShapeRef.new(shape: ExtractionDefinitionDisplayLabel, location_name: "ExtractionDefinitionDisplayLabel"))
|
|
7663
|
+
RealTimeContactAnalysisSegmentExtractedInformation.add_member(:extracted_values, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisExtractedInformationValues, location_name: "ExtractedValues"))
|
|
7664
|
+
RealTimeContactAnalysisSegmentExtractedInformation.add_member(:failure_code, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisExtractedInformationFailureCode, location_name: "FailureCode"))
|
|
7665
|
+
RealTimeContactAnalysisSegmentExtractedInformation.struct_class = Types::RealTimeContactAnalysisSegmentExtractedInformation
|
|
7666
|
+
|
|
7649
7667
|
RealTimeContactAnalysisSegmentIssues.add_member(:issues_detected, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisIssuesDetected, required: true, location_name: "IssuesDetected"))
|
|
7650
7668
|
RealTimeContactAnalysisSegmentIssues.struct_class = Types::RealTimeContactAnalysisSegmentIssues
|
|
7651
7669
|
|
|
@@ -7695,6 +7713,7 @@ module Aws::Connect
|
|
|
7695
7713
|
RealtimeContactAnalysisSegment.add_member(:event, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentEvent, location_name: "Event"))
|
|
7696
7714
|
RealtimeContactAnalysisSegment.add_member(:attachments, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentAttachments, location_name: "Attachments"))
|
|
7697
7715
|
RealtimeContactAnalysisSegment.add_member(:post_contact_summary, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentPostContactSummary, location_name: "PostContactSummary"))
|
|
7716
|
+
RealtimeContactAnalysisSegment.add_member(:extracted_information, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentExtractedInformation, location_name: "ExtractedInformation"))
|
|
7698
7717
|
RealtimeContactAnalysisSegment.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
7699
7718
|
RealtimeContactAnalysisSegment.add_member_subclass(:transcript, Types::RealtimeContactAnalysisSegment::Transcript)
|
|
7700
7719
|
RealtimeContactAnalysisSegment.add_member_subclass(:categories, Types::RealtimeContactAnalysisSegment::Categories)
|
|
@@ -7702,6 +7721,7 @@ module Aws::Connect
|
|
|
7702
7721
|
RealtimeContactAnalysisSegment.add_member_subclass(:event, Types::RealtimeContactAnalysisSegment::Event)
|
|
7703
7722
|
RealtimeContactAnalysisSegment.add_member_subclass(:attachments, Types::RealtimeContactAnalysisSegment::Attachments)
|
|
7704
7723
|
RealtimeContactAnalysisSegment.add_member_subclass(:post_contact_summary, Types::RealtimeContactAnalysisSegment::PostContactSummary)
|
|
7724
|
+
RealtimeContactAnalysisSegment.add_member_subclass(:extracted_information, Types::RealtimeContactAnalysisSegment::ExtractedInformation)
|
|
7705
7725
|
RealtimeContactAnalysisSegment.add_member_subclass(:unknown, Types::RealtimeContactAnalysisSegment::Unknown)
|
|
7706
7726
|
RealtimeContactAnalysisSegment.struct_class = Types::RealtimeContactAnalysisSegment
|
|
7707
7727
|
|
|
@@ -28624,6 +28624,27 @@ module Aws::Connect
|
|
|
28624
28624
|
include Aws::Structure
|
|
28625
28625
|
end
|
|
28626
28626
|
|
|
28627
|
+
# An individual value extracted from the conversation, including its
|
|
28628
|
+
# content and the locations where it was found.
|
|
28629
|
+
#
|
|
28630
|
+
# @!attribute [rw] content
|
|
28631
|
+
# The text content of the extracted value.
|
|
28632
|
+
# @return [String]
|
|
28633
|
+
#
|
|
28634
|
+
# @!attribute [rw] points_of_interest
|
|
28635
|
+
# The sections in the conversation that indicate where the extracted
|
|
28636
|
+
# value was found.
|
|
28637
|
+
# @return [Array<Types::RealTimeContactAnalysisTranscriptItemWithCharacterOffsets>]
|
|
28638
|
+
#
|
|
28639
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RealTimeContactAnalysisExtractedInformationValue AWS API Documentation
|
|
28640
|
+
#
|
|
28641
|
+
class RealTimeContactAnalysisExtractedInformationValue < Struct.new(
|
|
28642
|
+
:content,
|
|
28643
|
+
:points_of_interest)
|
|
28644
|
+
SENSITIVE = []
|
|
28645
|
+
include Aws::Structure
|
|
28646
|
+
end
|
|
28647
|
+
|
|
28627
28648
|
# Potential issues that are detected based on an artificial intelligence
|
|
28628
28649
|
# analysis of each turn in the conversation.
|
|
28629
28650
|
#
|
|
@@ -28754,6 +28775,61 @@ module Aws::Connect
|
|
|
28754
28775
|
include Aws::Structure
|
|
28755
28776
|
end
|
|
28756
28777
|
|
|
28778
|
+
# Segment containing information extracted from the conversation. Each
|
|
28779
|
+
# segment represents the results for a single extraction definition.
|
|
28780
|
+
#
|
|
28781
|
+
# @!attribute [rw] extraction_definition_id
|
|
28782
|
+
# The identifier of the extraction definition that produced this
|
|
28783
|
+
# result.
|
|
28784
|
+
# @return [String]
|
|
28785
|
+
#
|
|
28786
|
+
# @!attribute [rw] extraction_definition_name
|
|
28787
|
+
# The name of the extraction definition that produced this result.
|
|
28788
|
+
# @return [String]
|
|
28789
|
+
#
|
|
28790
|
+
# @!attribute [rw] extraction_definition_display_label
|
|
28791
|
+
# The display label of the extraction definition that produced this
|
|
28792
|
+
# result.
|
|
28793
|
+
# @return [String]
|
|
28794
|
+
#
|
|
28795
|
+
# @!attribute [rw] extracted_values
|
|
28796
|
+
# The list of values extracted from the conversation for this
|
|
28797
|
+
# extraction definition. This field is empty when a `FailureCode` is
|
|
28798
|
+
# present.
|
|
28799
|
+
# @return [Array<Types::RealTimeContactAnalysisExtractedInformationValue>]
|
|
28800
|
+
#
|
|
28801
|
+
# @!attribute [rw] failure_code
|
|
28802
|
+
# If the information failed to be extracted, one of the following
|
|
28803
|
+
# failure codes occurs:
|
|
28804
|
+
#
|
|
28805
|
+
# * `QUOTA_EXCEEDED`: The number of concurrent analytics jobs reached
|
|
28806
|
+
# your service quota.
|
|
28807
|
+
#
|
|
28808
|
+
# * `INSUFFICIENT_CONVERSATION_CONTENT`: Information extraction
|
|
28809
|
+
# requires a conversation with at least one turn from each
|
|
28810
|
+
# participant.
|
|
28811
|
+
#
|
|
28812
|
+
# * `FAILED_SAFETY_GUIDELINES`: The extracted information cannot be
|
|
28813
|
+
# provided because it failed to meet system safety guidelines.
|
|
28814
|
+
#
|
|
28815
|
+
# * `INTERNAL_ERROR`: Internal system error.
|
|
28816
|
+
#
|
|
28817
|
+
# * `MAX_PACKAGE_FEATURE_ONLY`: Information extraction is only
|
|
28818
|
+
# available in Amazon Connect Customer instances.
|
|
28819
|
+
# @return [String]
|
|
28820
|
+
#
|
|
28821
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RealTimeContactAnalysisSegmentExtractedInformation AWS API Documentation
|
|
28822
|
+
#
|
|
28823
|
+
class RealTimeContactAnalysisSegmentExtractedInformation < Struct.new(
|
|
28824
|
+
:extraction_definition_id,
|
|
28825
|
+
:extraction_definition_name,
|
|
28826
|
+
:extraction_definition_display_label,
|
|
28827
|
+
:extracted_values,
|
|
28828
|
+
:failure_code)
|
|
28829
|
+
SENSITIVE = []
|
|
28830
|
+
include Aws::Structure
|
|
28831
|
+
end
|
|
28832
|
+
|
|
28757
28833
|
# Segment type containing a list of detected issues.
|
|
28758
28834
|
#
|
|
28759
28835
|
# @!attribute [rw] issues_detected
|
|
@@ -28996,6 +29072,10 @@ module Aws::Connect
|
|
|
28996
29072
|
# Information about the post-contact summary.
|
|
28997
29073
|
# @return [Types::RealTimeContactAnalysisSegmentPostContactSummary]
|
|
28998
29074
|
#
|
|
29075
|
+
# @!attribute [rw] extracted_information
|
|
29076
|
+
# The extracted information from the conversation.
|
|
29077
|
+
# @return [Types::RealTimeContactAnalysisSegmentExtractedInformation]
|
|
29078
|
+
#
|
|
28999
29079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RealtimeContactAnalysisSegment AWS API Documentation
|
|
29000
29080
|
#
|
|
29001
29081
|
class RealtimeContactAnalysisSegment < Struct.new(
|
|
@@ -29005,6 +29085,7 @@ module Aws::Connect
|
|
|
29005
29085
|
:event,
|
|
29006
29086
|
:attachments,
|
|
29007
29087
|
:post_contact_summary,
|
|
29088
|
+
:extracted_information,
|
|
29008
29089
|
:unknown)
|
|
29009
29090
|
SENSITIVE = []
|
|
29010
29091
|
include Aws::Structure
|
|
@@ -29016,6 +29097,7 @@ module Aws::Connect
|
|
|
29016
29097
|
class Event < RealtimeContactAnalysisSegment; end
|
|
29017
29098
|
class Attachments < RealtimeContactAnalysisSegment; end
|
|
29018
29099
|
class PostContactSummary < RealtimeContactAnalysisSegment; end
|
|
29100
|
+
class ExtractedInformation < RealtimeContactAnalysisSegment; end
|
|
29019
29101
|
class Unknown < RealtimeContactAnalysisSegment; end
|
|
29020
29102
|
end
|
|
29021
29103
|
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -3351,7 +3351,7 @@ module Aws
|
|
|
3351
3351
|
?max_results: ::Integer,
|
|
3352
3352
|
?next_token: ::String,
|
|
3353
3353
|
output_type: ("Raw" | "Redacted"),
|
|
3354
|
-
segment_types: Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments" | "PostContactSummary")]
|
|
3354
|
+
segment_types: Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments" | "PostContactSummary" | "ExtractedInformation")]
|
|
3355
3355
|
) -> _ListRealtimeContactAnalysisSegmentsV2ResponseSuccess
|
|
3356
3356
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRealtimeContactAnalysisSegmentsV2ResponseSuccess
|
|
3357
3357
|
|
data/sig/types.rbs
CHANGED
|
@@ -5432,7 +5432,7 @@ module Aws::Connect
|
|
|
5432
5432
|
attr_accessor max_results: ::Integer
|
|
5433
5433
|
attr_accessor next_token: ::String
|
|
5434
5434
|
attr_accessor output_type: ("Raw" | "Redacted")
|
|
5435
|
-
attr_accessor segment_types: ::Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments" | "PostContactSummary")]
|
|
5435
|
+
attr_accessor segment_types: ::Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments" | "PostContactSummary" | "ExtractedInformation")]
|
|
5436
5436
|
SENSITIVE: []
|
|
5437
5437
|
end
|
|
5438
5438
|
|
|
@@ -6633,6 +6633,12 @@ module Aws::Connect
|
|
|
6633
6633
|
SENSITIVE: []
|
|
6634
6634
|
end
|
|
6635
6635
|
|
|
6636
|
+
class RealTimeContactAnalysisExtractedInformationValue
|
|
6637
|
+
attr_accessor content: ::String
|
|
6638
|
+
attr_accessor points_of_interest: ::Array[Types::RealTimeContactAnalysisTranscriptItemWithCharacterOffsets]
|
|
6639
|
+
SENSITIVE: []
|
|
6640
|
+
end
|
|
6641
|
+
|
|
6636
6642
|
class RealTimeContactAnalysisIssueDetected
|
|
6637
6643
|
attr_accessor transcript_items: ::Array[Types::RealTimeContactAnalysisTranscriptItemWithContent]
|
|
6638
6644
|
SENSITIVE: []
|
|
@@ -6668,6 +6674,15 @@ module Aws::Connect
|
|
|
6668
6674
|
SENSITIVE: []
|
|
6669
6675
|
end
|
|
6670
6676
|
|
|
6677
|
+
class RealTimeContactAnalysisSegmentExtractedInformation
|
|
6678
|
+
attr_accessor extraction_definition_id: ::String
|
|
6679
|
+
attr_accessor extraction_definition_name: ::String
|
|
6680
|
+
attr_accessor extraction_definition_display_label: ::String
|
|
6681
|
+
attr_accessor extracted_values: ::Array[Types::RealTimeContactAnalysisExtractedInformationValue]
|
|
6682
|
+
attr_accessor failure_code: ("QUOTA_EXCEEDED" | "INSUFFICIENT_CONVERSATION_CONTENT" | "FAILED_SAFETY_GUIDELINES" | "INTERNAL_ERROR" | "MAX_PACKAGE_FEATURE_ONLY")
|
|
6683
|
+
SENSITIVE: []
|
|
6684
|
+
end
|
|
6685
|
+
|
|
6671
6686
|
class RealTimeContactAnalysisSegmentIssues
|
|
6672
6687
|
attr_accessor issues_detected: ::Array[Types::RealTimeContactAnalysisIssueDetected]
|
|
6673
6688
|
SENSITIVE: []
|
|
@@ -6729,6 +6744,7 @@ module Aws::Connect
|
|
|
6729
6744
|
attr_accessor event: Types::RealTimeContactAnalysisSegmentEvent
|
|
6730
6745
|
attr_accessor attachments: Types::RealTimeContactAnalysisSegmentAttachments
|
|
6731
6746
|
attr_accessor post_contact_summary: Types::RealTimeContactAnalysisSegmentPostContactSummary
|
|
6747
|
+
attr_accessor extracted_information: Types::RealTimeContactAnalysisSegmentExtractedInformation
|
|
6732
6748
|
attr_accessor unknown: untyped
|
|
6733
6749
|
SENSITIVE: []
|
|
6734
6750
|
|
|
@@ -6744,6 +6760,8 @@ module Aws::Connect
|
|
|
6744
6760
|
end
|
|
6745
6761
|
class PostContactSummary < RealtimeContactAnalysisSegment
|
|
6746
6762
|
end
|
|
6763
|
+
class ExtractedInformation < RealtimeContactAnalysisSegment
|
|
6764
|
+
end
|
|
6747
6765
|
class Unknown < RealtimeContactAnalysisSegment
|
|
6748
6766
|
end
|
|
6749
6767
|
end
|