aws-sdk-connect 1.65.0 → 1.68.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +31 -12
- data/lib/aws-sdk-connect/client_api.rb +5 -0
- data/lib/aws-sdk-connect/types.rb +16 -9
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2836a963304554f4a8e5e577313e89df314b399bcd104c936260c5fc60ce0b0f
|
4
|
+
data.tar.gz: b7ca8cb8338944f0f4c38f2b4c46e72af65e5fc8b8453cf7bf8769ab33be052e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 165bffcd5f86407095f5b61332d0e65fceabc5468c3e0831b7925cbeb79b6291de25b1bc2c6cd9ae574e1275604367a0b2f684cdf53b673e13988d1af715c759
|
7
|
+
data.tar.gz: d96e0727f9e8400fa68803600911c57dcd5ee52b51aba3fb00c901d9b367a9598ad7455eb7ed19f9c47fd60b7a59c0a6d6e280e35d3323595abb59ec51fd187f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.68.0 (2022-04-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release updates these APIs: UpdateInstanceAttribute, DescribeInstanceAttribute and ListInstanceAttributes. You can use it to programmatically enable/disable multi-party conferencing using attribute type MULTI_PARTY_CONFERENCING on the specified Amazon Connect instance.
|
8
|
+
|
9
|
+
1.67.0 (2022-03-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for enabling Rich Messaging when starting a new chat session via the StartChatContact API. Rich Messaging enables the following formatting options: bold, italics, hyperlinks, bulleted lists, and numbered lists.
|
13
|
+
|
14
|
+
1.66.0 (2022-03-04)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release updates the *InstanceStorageConfig APIs so they support a new ResourceType: REAL_TIME_CONTACT_ANALYSIS_SEGMENTS. Use this resource type to enable streaming for real-time contact analysis and to associate the Kinesis stream where real-time contact analysis segments will be published.
|
18
|
+
|
4
19
|
1.65.0 (2022-02-24)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.68.0
|
@@ -492,7 +492,7 @@ module Aws::Connect
|
|
492
492
|
#
|
493
493
|
# resp = client.associate_instance_storage_config({
|
494
494
|
# instance_id: "InstanceId", # required
|
495
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
495
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
496
496
|
# storage_config: { # required
|
497
497
|
# association_id: "AssociationId",
|
498
498
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -2248,12 +2248,12 @@ module Aws::Connect
|
|
2248
2248
|
#
|
2249
2249
|
# resp = client.describe_instance_attribute({
|
2250
2250
|
# instance_id: "InstanceId", # required
|
2251
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA
|
2251
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE
|
2252
2252
|
# })
|
2253
2253
|
#
|
2254
2254
|
# @example Response structure
|
2255
2255
|
#
|
2256
|
-
# resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA"
|
2256
|
+
# resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE"
|
2257
2257
|
# resp.attribute.value #=> String
|
2258
2258
|
#
|
2259
2259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstanceAttribute AWS API Documentation
|
@@ -2291,7 +2291,7 @@ module Aws::Connect
|
|
2291
2291
|
# resp = client.describe_instance_storage_config({
|
2292
2292
|
# instance_id: "InstanceId", # required
|
2293
2293
|
# association_id: "AssociationId", # required
|
2294
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
2294
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
2295
2295
|
# })
|
2296
2296
|
#
|
2297
2297
|
# @example Response structure
|
@@ -2779,7 +2779,7 @@ module Aws::Connect
|
|
2779
2779
|
# resp = client.disassociate_instance_storage_config({
|
2780
2780
|
# instance_id: "InstanceId", # required
|
2781
2781
|
# association_id: "AssociationId", # required
|
2782
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
2782
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
2783
2783
|
# })
|
2784
2784
|
#
|
2785
2785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateInstanceStorageConfig AWS API Documentation
|
@@ -4005,7 +4005,7 @@ module Aws::Connect
|
|
4005
4005
|
# @example Response structure
|
4006
4006
|
#
|
4007
4007
|
# resp.attributes #=> Array
|
4008
|
-
# resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA"
|
4008
|
+
# resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE"
|
4009
4009
|
# resp.attributes[0].value #=> String
|
4010
4010
|
# resp.next_token #=> String
|
4011
4011
|
#
|
@@ -4050,7 +4050,7 @@ module Aws::Connect
|
|
4050
4050
|
#
|
4051
4051
|
# resp = client.list_instance_storage_configs({
|
4052
4052
|
# instance_id: "InstanceId", # required
|
4053
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
4053
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
4054
4054
|
# next_token: "NextToken",
|
4055
4055
|
# max_results: 1,
|
4056
4056
|
# })
|
@@ -5202,6 +5202,10 @@ module Aws::Connect
|
|
5202
5202
|
# configurable time is 60 minutes. The maximum configurable time is
|
5203
5203
|
# 10,080 minutes (7 days).
|
5204
5204
|
#
|
5205
|
+
# @option params [Array<String>] :supported_messaging_content_types
|
5206
|
+
# The supported chat message content types. Content types can be
|
5207
|
+
# text/plain or both text/plain and text/markdown.
|
5208
|
+
#
|
5205
5209
|
# @return [Types::StartChatContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5206
5210
|
#
|
5207
5211
|
# * {Types::StartChatContactResponse#contact_id #contact_id} => String
|
@@ -5225,6 +5229,7 @@ module Aws::Connect
|
|
5225
5229
|
# },
|
5226
5230
|
# client_token: "ClientToken",
|
5227
5231
|
# chat_duration_in_minutes: 1,
|
5232
|
+
# supported_messaging_content_types: ["SupportedMessagingContentType"],
|
5228
5233
|
# })
|
5229
5234
|
#
|
5230
5235
|
# @example Response structure
|
@@ -5242,7 +5247,14 @@ module Aws::Connect
|
|
5242
5247
|
req.send_request(options)
|
5243
5248
|
end
|
5244
5249
|
|
5245
|
-
# Starts recording the contact
|
5250
|
+
# Starts recording the contact:
|
5251
|
+
#
|
5252
|
+
# * If the API is called *before* the agent joins the call, recording
|
5253
|
+
# starts when the agent joins the call.
|
5254
|
+
#
|
5255
|
+
# * If the API is called *after* the agent joins the call, recording
|
5256
|
+
# starts at the time of the API call.
|
5257
|
+
#
|
5246
5258
|
# StartContactRecording is a one-time action. For example, if you use
|
5247
5259
|
# StopContactRecording to stop recording an ongoing call, you can't use
|
5248
5260
|
# StartContactRecording to restart it. For scenarios where the recording
|
@@ -5567,7 +5579,14 @@ module Aws::Connect
|
|
5567
5579
|
req.send_request(options)
|
5568
5580
|
end
|
5569
5581
|
|
5570
|
-
# Ends the specified contact.
|
5582
|
+
# Ends the specified contact. This call does not work for the following
|
5583
|
+
# initiation methods:
|
5584
|
+
#
|
5585
|
+
# * DISCONNECT
|
5586
|
+
#
|
5587
|
+
# * TRANSFER
|
5588
|
+
#
|
5589
|
+
# * QUEUE\_TRANSFER
|
5571
5590
|
#
|
5572
5591
|
# @option params [required, String] :contact_id
|
5573
5592
|
# The ID of the contact.
|
@@ -6261,7 +6280,7 @@ module Aws::Connect
|
|
6261
6280
|
#
|
6262
6281
|
# resp = client.update_instance_attribute({
|
6263
6282
|
# instance_id: "InstanceId", # required
|
6264
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA
|
6283
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE
|
6265
6284
|
# value: "InstanceAttributeValue", # required
|
6266
6285
|
# })
|
6267
6286
|
#
|
@@ -6301,7 +6320,7 @@ module Aws::Connect
|
|
6301
6320
|
# resp = client.update_instance_storage_config({
|
6302
6321
|
# instance_id: "InstanceId", # required
|
6303
6322
|
# association_id: "AssociationId", # required
|
6304
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
6323
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
6305
6324
|
# storage_config: { # required
|
6306
6325
|
# association_id: "AssociationId",
|
6307
6326
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -7054,7 +7073,7 @@ module Aws::Connect
|
|
7054
7073
|
params: params,
|
7055
7074
|
config: config)
|
7056
7075
|
context[:gem_name] = 'aws-sdk-connect'
|
7057
|
-
context[:gem_version] = '1.
|
7076
|
+
context[:gem_version] = '1.68.0'
|
7058
7077
|
Seahorse::Client::Request.new(handlers, context)
|
7059
7078
|
end
|
7060
7079
|
|
@@ -462,6 +462,8 @@ module Aws::Connect
|
|
462
462
|
StorageType = Shapes::StringShape.new(name: 'StorageType')
|
463
463
|
StreamingId = Shapes::StringShape.new(name: 'StreamingId')
|
464
464
|
String = Shapes::StringShape.new(name: 'String')
|
465
|
+
SupportedMessagingContentType = Shapes::StringShape.new(name: 'SupportedMessagingContentType')
|
466
|
+
SupportedMessagingContentTypes = Shapes::ListShape.new(name: 'SupportedMessagingContentTypes')
|
465
467
|
SuspendContactRecordingRequest = Shapes::StructureShape.new(name: 'SuspendContactRecordingRequest')
|
466
468
|
SuspendContactRecordingResponse = Shapes::StructureShape.new(name: 'SuspendContactRecordingResponse')
|
467
469
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
@@ -1864,6 +1866,7 @@ module Aws::Connect
|
|
1864
1866
|
StartChatContactRequest.add_member(:initial_message, Shapes::ShapeRef.new(shape: ChatMessage, location_name: "InitialMessage"))
|
1865
1867
|
StartChatContactRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
1866
1868
|
StartChatContactRequest.add_member(:chat_duration_in_minutes, Shapes::ShapeRef.new(shape: ChatDurationInMinutes, location_name: "ChatDurationInMinutes"))
|
1869
|
+
StartChatContactRequest.add_member(:supported_messaging_content_types, Shapes::ShapeRef.new(shape: SupportedMessagingContentTypes, location_name: "SupportedMessagingContentTypes"))
|
1867
1870
|
StartChatContactRequest.struct_class = Types::StartChatContactRequest
|
1868
1871
|
|
1869
1872
|
StartChatContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
@@ -1937,6 +1940,8 @@ module Aws::Connect
|
|
1937
1940
|
|
1938
1941
|
StopContactStreamingResponse.struct_class = Types::StopContactStreamingResponse
|
1939
1942
|
|
1943
|
+
SupportedMessagingContentTypes.member = Shapes::ShapeRef.new(shape: SupportedMessagingContentType)
|
1944
|
+
|
1940
1945
|
SuspendContactRecordingRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
1941
1946
|
SuspendContactRecordingRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "ContactId"))
|
1942
1947
|
SuspendContactRecordingRequest.add_member(:initial_contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "InitialContactId"))
|
@@ -261,7 +261,7 @@ module Aws::Connect
|
|
261
261
|
#
|
262
262
|
# {
|
263
263
|
# instance_id: "InstanceId", # required
|
264
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
264
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
265
265
|
# storage_config: { # required
|
266
266
|
# association_id: "AssociationId",
|
267
267
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -549,7 +549,7 @@ module Aws::Connect
|
|
549
549
|
# }
|
550
550
|
#
|
551
551
|
# @!attribute [rw] content_type
|
552
|
-
# The type of the content. Supported types are text
|
552
|
+
# The type of the content. Supported types are `text/plain`.
|
553
553
|
# @return [String]
|
554
554
|
#
|
555
555
|
# @!attribute [rw] content
|
@@ -2626,7 +2626,7 @@ module Aws::Connect
|
|
2626
2626
|
#
|
2627
2627
|
# {
|
2628
2628
|
# instance_id: "InstanceId", # required
|
2629
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA
|
2629
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE
|
2630
2630
|
# }
|
2631
2631
|
#
|
2632
2632
|
# @!attribute [rw] instance_id
|
@@ -2697,7 +2697,7 @@ module Aws::Connect
|
|
2697
2697
|
# {
|
2698
2698
|
# instance_id: "InstanceId", # required
|
2699
2699
|
# association_id: "AssociationId", # required
|
2700
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
2700
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
2701
2701
|
# }
|
2702
2702
|
#
|
2703
2703
|
# @!attribute [rw] instance_id
|
@@ -3139,7 +3139,7 @@ module Aws::Connect
|
|
3139
3139
|
# {
|
3140
3140
|
# instance_id: "InstanceId", # required
|
3141
3141
|
# association_id: "AssociationId", # required
|
3142
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
3142
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
3143
3143
|
# }
|
3144
3144
|
#
|
3145
3145
|
# @!attribute [rw] instance_id
|
@@ -5445,7 +5445,7 @@ module Aws::Connect
|
|
5445
5445
|
#
|
5446
5446
|
# {
|
5447
5447
|
# instance_id: "InstanceId", # required
|
5448
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
5448
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
5449
5449
|
# next_token: "NextToken",
|
5450
5450
|
# max_results: 1,
|
5451
5451
|
# }
|
@@ -7527,6 +7527,7 @@ module Aws::Connect
|
|
7527
7527
|
# },
|
7528
7528
|
# client_token: "ClientToken",
|
7529
7529
|
# chat_duration_in_minutes: 1,
|
7530
|
+
# supported_messaging_content_types: ["SupportedMessagingContentType"],
|
7530
7531
|
# }
|
7531
7532
|
#
|
7532
7533
|
# @!attribute [rw] instance_id
|
@@ -7578,6 +7579,11 @@ module Aws::Connect
|
|
7578
7579
|
# time is 10,080 minutes (7 days).
|
7579
7580
|
# @return [Integer]
|
7580
7581
|
#
|
7582
|
+
# @!attribute [rw] supported_messaging_content_types
|
7583
|
+
# The supported chat message content types. Content types can be
|
7584
|
+
# text/plain or both text/plain and text/markdown.
|
7585
|
+
# @return [Array<String>]
|
7586
|
+
#
|
7581
7587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContactRequest AWS API Documentation
|
7582
7588
|
#
|
7583
7589
|
class StartChatContactRequest < Struct.new(
|
@@ -7587,7 +7593,8 @@ module Aws::Connect
|
|
7587
7593
|
:participant_details,
|
7588
7594
|
:initial_message,
|
7589
7595
|
:client_token,
|
7590
|
-
:chat_duration_in_minutes
|
7596
|
+
:chat_duration_in_minutes,
|
7597
|
+
:supported_messaging_content_types)
|
7591
7598
|
SENSITIVE = []
|
7592
7599
|
include Aws::Structure
|
7593
7600
|
end
|
@@ -8651,7 +8658,7 @@ module Aws::Connect
|
|
8651
8658
|
#
|
8652
8659
|
# {
|
8653
8660
|
# instance_id: "InstanceId", # required
|
8654
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA
|
8661
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE
|
8655
8662
|
# value: "InstanceAttributeValue", # required
|
8656
8663
|
# }
|
8657
8664
|
#
|
@@ -8690,7 +8697,7 @@ module Aws::Connect
|
|
8690
8697
|
# {
|
8691
8698
|
# instance_id: "InstanceId", # required
|
8692
8699
|
# association_id: "AssociationId", # required
|
8693
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
8700
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
8694
8701
|
# storage_config: { # required
|
8695
8702
|
# association_id: "AssociationId",
|
8696
8703
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
data/lib/aws-sdk-connect.rb
CHANGED
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.68.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: 2022-
|
11
|
+
date: 2022-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|