aws-sdk-connect 1.113.0 → 1.114.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 +16 -13
- data/lib/aws-sdk-connect/client_api.rb +2 -0
- data/lib/aws-sdk-connect/types.rb +14 -2
- 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: 0ea5bd061e7c68064ee7ef6b878de20b9d204fff181c4ab83e2a04a2654ddb91
|
4
|
+
data.tar.gz: a120ded06bb66a1f232827334ce9dabebb4192aaa87169894f91ab3fe9c145c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa5566da677ff79d29b80d0d4724b30f1a8b5ac16530d60e7bff3341cb7fa12aefd0347fcb5aa5f4e7e8b192bb521eaa5f10ded188ce8306518b657c5ed090ef
|
7
|
+
data.tar.gz: 30c81fbbcce1ee1e41b39b667e88ce1b2d01caa282d205cd4cb129c77918220eadee343c7845e13c12f5dd8e58c8761b7f843eaed14877d358084c41109f6d9f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.114.0 (2023-06-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates the *InstanceStorageConfig APIs to support a new ResourceType: SCREEN_RECORDINGS to enable screen recording and specify the storage configurations for publishing the recordings. Also updates DescribeInstance and ListInstances APIs to include InstanceAccessUrl attribute in the API response.
|
8
|
+
|
4
9
|
1.113.0 (2023-06-15)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.114.0
|
@@ -579,7 +579,7 @@ module Aws::Connect
|
|
579
579
|
#
|
580
580
|
# resp = client.associate_instance_storage_config({
|
581
581
|
# instance_id: "InstanceId", # required
|
582
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS
|
582
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS
|
583
583
|
# storage_config: { # required
|
584
584
|
# association_id: "AssociationId",
|
585
585
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -3671,6 +3671,7 @@ module Aws::Connect
|
|
3671
3671
|
# resp.instance.status_reason.message #=> String
|
3672
3672
|
# resp.instance.inbound_calls_enabled #=> Boolean
|
3673
3673
|
# resp.instance.outbound_calls_enabled #=> Boolean
|
3674
|
+
# resp.instance.instance_access_url #=> String
|
3674
3675
|
#
|
3675
3676
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstance AWS API Documentation
|
3676
3677
|
#
|
@@ -3752,7 +3753,7 @@ module Aws::Connect
|
|
3752
3753
|
# resp = client.describe_instance_storage_config({
|
3753
3754
|
# instance_id: "InstanceId", # required
|
3754
3755
|
# association_id: "AssociationId", # required
|
3755
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS
|
3756
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS
|
3756
3757
|
# })
|
3757
3758
|
#
|
3758
3759
|
# @example Response structure
|
@@ -4491,7 +4492,7 @@ module Aws::Connect
|
|
4491
4492
|
# resp = client.disassociate_instance_storage_config({
|
4492
4493
|
# instance_id: "InstanceId", # required
|
4493
4494
|
# association_id: "AssociationId", # required
|
4494
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS
|
4495
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS
|
4495
4496
|
# })
|
4496
4497
|
#
|
4497
4498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateInstanceStorageConfig AWS API Documentation
|
@@ -6810,7 +6811,7 @@ module Aws::Connect
|
|
6810
6811
|
#
|
6811
6812
|
# resp = client.list_instance_storage_configs({
|
6812
6813
|
# instance_id: "InstanceId", # required
|
6813
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS
|
6814
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS
|
6814
6815
|
# next_token: "NextToken",
|
6815
6816
|
# max_results: 1,
|
6816
6817
|
# })
|
@@ -6883,6 +6884,7 @@ module Aws::Connect
|
|
6883
6884
|
# resp.instance_summary_list[0].instance_status #=> String, one of "CREATION_IN_PROGRESS", "ACTIVE", "CREATION_FAILED"
|
6884
6885
|
# resp.instance_summary_list[0].inbound_calls_enabled #=> Boolean
|
6885
6886
|
# resp.instance_summary_list[0].outbound_calls_enabled #=> Boolean
|
6887
|
+
# resp.instance_summary_list[0].instance_access_url #=> String
|
6886
6888
|
# resp.next_token #=> String
|
6887
6889
|
#
|
6888
6890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListInstances AWS API Documentation
|
@@ -8357,9 +8359,10 @@ module Aws::Connect
|
|
8357
8359
|
end
|
8358
8360
|
|
8359
8361
|
# When a contact is being recorded, and the recording has been suspended
|
8360
|
-
# using SuspendContactRecording, this API resumes recording the call
|
8362
|
+
# using SuspendContactRecording, this API resumes recording the call or
|
8363
|
+
# screen.
|
8361
8364
|
#
|
8362
|
-
#
|
8365
|
+
# Voice and screen recordings are supported.
|
8363
8366
|
#
|
8364
8367
|
# @option params [required, String] :instance_id
|
8365
8368
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -10135,15 +10138,15 @@ module Aws::Connect
|
|
10135
10138
|
req.send_request(options)
|
10136
10139
|
end
|
10137
10140
|
|
10138
|
-
# When a contact is being recorded, this API suspends recording the
|
10139
|
-
#
|
10140
|
-
# collecting sensitive information, such as a credit card number.
|
10141
|
-
# use ResumeContactRecording to restart recording.
|
10141
|
+
# When a contact is being recorded, this API suspends recording the call
|
10142
|
+
# or screen. For example, you might suspend the call or screen recording
|
10143
|
+
# while collecting sensitive information, such as a credit card number.
|
10144
|
+
# Then use ResumeContactRecording to restart recording.
|
10142
10145
|
#
|
10143
10146
|
# The period of time that the recording is suspended is filled with
|
10144
10147
|
# silence in the final recording.
|
10145
10148
|
#
|
10146
|
-
#
|
10149
|
+
# Voice and screen recordings are supported.
|
10147
10150
|
#
|
10148
10151
|
# @option params [required, String] :instance_id
|
10149
10152
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -11101,7 +11104,7 @@ module Aws::Connect
|
|
11101
11104
|
# resp = client.update_instance_storage_config({
|
11102
11105
|
# instance_id: "InstanceId", # required
|
11103
11106
|
# association_id: "AssociationId", # required
|
11104
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS
|
11107
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS, ATTACHMENTS, CONTACT_EVALUATIONS, SCREEN_RECORDINGS
|
11105
11108
|
# storage_config: { # required
|
11106
11109
|
# association_id: "AssociationId",
|
11107
11110
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -12429,7 +12432,7 @@ module Aws::Connect
|
|
12429
12432
|
params: params,
|
12430
12433
|
config: config)
|
12431
12434
|
context[:gem_name] = 'aws-sdk-connect'
|
12432
|
-
context[:gem_version] = '1.
|
12435
|
+
context[:gem_version] = '1.114.0'
|
12433
12436
|
Seahorse::Client::Request.new(handlers, context)
|
12434
12437
|
end
|
12435
12438
|
|
@@ -2265,6 +2265,7 @@ module Aws::Connect
|
|
2265
2265
|
Instance.add_member(:status_reason, Shapes::ShapeRef.new(shape: InstanceStatusReason, location_name: "StatusReason"))
|
2266
2266
|
Instance.add_member(:inbound_calls_enabled, Shapes::ShapeRef.new(shape: InboundCallsEnabled, location_name: "InboundCallsEnabled"))
|
2267
2267
|
Instance.add_member(:outbound_calls_enabled, Shapes::ShapeRef.new(shape: OutboundCallsEnabled, location_name: "OutboundCallsEnabled"))
|
2268
|
+
Instance.add_member(:instance_access_url, Shapes::ShapeRef.new(shape: Url, location_name: "InstanceAccessUrl"))
|
2268
2269
|
Instance.struct_class = Types::Instance
|
2269
2270
|
|
2270
2271
|
InstanceStatusReason.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -2289,6 +2290,7 @@ module Aws::Connect
|
|
2289
2290
|
InstanceSummary.add_member(:instance_status, Shapes::ShapeRef.new(shape: InstanceStatus, location_name: "InstanceStatus"))
|
2290
2291
|
InstanceSummary.add_member(:inbound_calls_enabled, Shapes::ShapeRef.new(shape: InboundCallsEnabled, location_name: "InboundCallsEnabled"))
|
2291
2292
|
InstanceSummary.add_member(:outbound_calls_enabled, Shapes::ShapeRef.new(shape: OutboundCallsEnabled, location_name: "OutboundCallsEnabled"))
|
2293
|
+
InstanceSummary.add_member(:instance_access_url, Shapes::ShapeRef.new(shape: Url, location_name: "InstanceAccessUrl"))
|
2292
2294
|
InstanceSummary.struct_class = Types::InstanceSummary
|
2293
2295
|
|
2294
2296
|
InstanceSummaryList.member = Shapes::ShapeRef.new(shape: InstanceSummary)
|
@@ -7089,6 +7089,11 @@ module Aws::Connect
|
|
7089
7089
|
# Whether outbound calls are enabled.
|
7090
7090
|
# @return [Boolean]
|
7091
7091
|
#
|
7092
|
+
# @!attribute [rw] instance_access_url
|
7093
|
+
# This URL allows contact center users to access Amazon Connect admin
|
7094
|
+
# website.
|
7095
|
+
# @return [String]
|
7096
|
+
#
|
7092
7097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Instance AWS API Documentation
|
7093
7098
|
#
|
7094
7099
|
class Instance < Struct.new(
|
@@ -7101,7 +7106,8 @@ module Aws::Connect
|
|
7101
7106
|
:instance_status,
|
7102
7107
|
:status_reason,
|
7103
7108
|
:inbound_calls_enabled,
|
7104
|
-
:outbound_calls_enabled
|
7109
|
+
:outbound_calls_enabled,
|
7110
|
+
:instance_access_url)
|
7105
7111
|
SENSITIVE = [:instance_alias]
|
7106
7112
|
include Aws::Structure
|
7107
7113
|
end
|
@@ -7198,6 +7204,11 @@ module Aws::Connect
|
|
7198
7204
|
# Whether outbound calls are enabled.
|
7199
7205
|
# @return [Boolean]
|
7200
7206
|
#
|
7207
|
+
# @!attribute [rw] instance_access_url
|
7208
|
+
# This URL allows contact center users to access Amazon Connect admin
|
7209
|
+
# website.
|
7210
|
+
# @return [String]
|
7211
|
+
#
|
7201
7212
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InstanceSummary AWS API Documentation
|
7202
7213
|
#
|
7203
7214
|
class InstanceSummary < Struct.new(
|
@@ -7209,7 +7220,8 @@ module Aws::Connect
|
|
7209
7220
|
:service_role,
|
7210
7221
|
:instance_status,
|
7211
7222
|
:inbound_calls_enabled,
|
7212
|
-
:outbound_calls_enabled
|
7223
|
+
:outbound_calls_enabled,
|
7224
|
+
:instance_access_url)
|
7213
7225
|
SENSITIVE = [:instance_alias]
|
7214
7226
|
include Aws::Structure
|
7215
7227
|
end
|
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.114.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: 2023-06-
|
11
|
+
date: 2023-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|