aws-sdk-connect 1.168.0 → 1.169.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 +260 -139
- data/lib/aws-sdk-connect/client_api.rb +11 -0
- data/lib/aws-sdk-connect/types.rb +310 -138
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +11 -1
- metadata +2 -2
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -2254,7 +2254,7 @@ module Aws
|
|
2254
2254
|
?max_results: ::Integer,
|
2255
2255
|
?next_token: ::String,
|
2256
2256
|
output_type: ("Raw" | "Redacted"),
|
2257
|
-
segment_types: Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments")]
|
2257
|
+
segment_types: Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments" | "PostContactSummary")]
|
2258
2258
|
) -> _ListRealtimeContactAnalysisSegmentsV2ResponseSuccess
|
2259
2259
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRealtimeContactAnalysisSegmentsV2ResponseSuccess
|
2260
2260
|
|
data/sig/types.rbs
CHANGED
@@ -3029,7 +3029,7 @@ module Aws::Connect
|
|
3029
3029
|
attr_accessor max_results: ::Integer
|
3030
3030
|
attr_accessor next_token: ::String
|
3031
3031
|
attr_accessor output_type: ("Raw" | "Redacted")
|
3032
|
-
attr_accessor segment_types: ::Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments")]
|
3032
|
+
attr_accessor segment_types: ::Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments" | "PostContactSummary")]
|
3033
3033
|
SENSITIVE: []
|
3034
3034
|
end
|
3035
3035
|
|
@@ -3756,6 +3756,13 @@ module Aws::Connect
|
|
3756
3756
|
SENSITIVE: []
|
3757
3757
|
end
|
3758
3758
|
|
3759
|
+
class RealTimeContactAnalysisSegmentPostContactSummary
|
3760
|
+
attr_accessor content: ::String
|
3761
|
+
attr_accessor status: ("FAILED" | "COMPLETED")
|
3762
|
+
attr_accessor failure_code: ("QUOTA_EXCEEDED" | "INSUFFICIENT_CONVERSATION_CONTENT" | "FAILED_SAFETY_GUIDELINES" | "INVALID_ANALYSIS_CONFIGURATION" | "INTERNAL_ERROR")
|
3763
|
+
SENSITIVE: []
|
3764
|
+
end
|
3765
|
+
|
3759
3766
|
class RealTimeContactAnalysisSegmentTranscript
|
3760
3767
|
attr_accessor id: ::String
|
3761
3768
|
attr_accessor participant_id: ::String
|
@@ -3804,6 +3811,7 @@ module Aws::Connect
|
|
3804
3811
|
attr_accessor issues: Types::RealTimeContactAnalysisSegmentIssues
|
3805
3812
|
attr_accessor event: Types::RealTimeContactAnalysisSegmentEvent
|
3806
3813
|
attr_accessor attachments: Types::RealTimeContactAnalysisSegmentAttachments
|
3814
|
+
attr_accessor post_contact_summary: Types::RealTimeContactAnalysisSegmentPostContactSummary
|
3807
3815
|
attr_accessor unknown: untyped
|
3808
3816
|
SENSITIVE: []
|
3809
3817
|
|
@@ -3817,6 +3825,8 @@ module Aws::Connect
|
|
3817
3825
|
end
|
3818
3826
|
class Attachments < RealtimeContactAnalysisSegment
|
3819
3827
|
end
|
3828
|
+
class PostContactSummary < RealtimeContactAnalysisSegment
|
3829
|
+
end
|
3820
3830
|
class Unknown < RealtimeContactAnalysisSegment
|
3821
3831
|
end
|
3822
3832
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.169.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|