aws-sdk-connect 1.52.0 → 1.56.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +338 -26
- data/lib/aws-sdk-connect/client_api.rb +190 -0
- data/lib/aws-sdk-connect/errors.rb +16 -0
- data/lib/aws-sdk-connect/types.rb +425 -15
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bcf3e184dc1a019a6a1dea87257dd1a125d53541ec8afdf34d5718fb8e019fa
|
4
|
+
data.tar.gz: 6ab5be4f6f7d5a89abafc2eabdecd0e0ec949674e73c06fac027be6f521400a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80903657153664f8947368a184be6d9c57c0e283ecfa1f2d92339a339c7dbb0037b9cef4e592921ff8f79d17617b24868f9af244edb10815e839e5bc2ab2b91f
|
7
|
+
data.tar.gz: 80005542307e4144376f850390a35891f1f93b10731f51c491a384b5d7f4ead477ba780043a51c8cc43cd01fbf830e07ec7c4dd1d02fdeb26fab70a152727068
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.56.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds CRUD operation support for Security profile resource in Amazon Connect
|
8
|
+
|
9
|
+
1.55.0 (2021-11-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon Connect Chat now supports real-time message streaming.
|
13
|
+
|
14
|
+
1.54.0 (2021-10-29)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Amazon Connect Chat now supports real-time message streaming.
|
18
|
+
|
19
|
+
1.53.0 (2021-10-21)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Released Amazon Connect hours of operation API for general availability (GA). This API also supports AWS CloudFormation. For more information, see Amazon Connect Resource Type Reference in the AWS CloudFormation User Guide.
|
23
|
+
|
4
24
|
1.52.0 (2021-10-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.56.0
|
@@ -275,6 +275,15 @@ module Aws::Connect
|
|
275
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
276
|
# requests are made, and retries are disabled.
|
277
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
278
287
|
# @option options [Boolean] :validate_params (true)
|
279
288
|
# When `true`, request parameters are validated before
|
280
289
|
# sending the request.
|
@@ -668,7 +677,7 @@ module Aws::Connect
|
|
668
677
|
# The display order of the status.
|
669
678
|
#
|
670
679
|
# @option params [Hash<String,String>] :tags
|
671
|
-
#
|
680
|
+
# The tags used to organize, track, or control access for this resource.
|
672
681
|
#
|
673
682
|
# @return [Types::CreateAgentStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
674
683
|
#
|
@@ -767,9 +776,6 @@ module Aws::Connect
|
|
767
776
|
req.send_request(options)
|
768
777
|
end
|
769
778
|
|
770
|
-
# This API is in preview release for Amazon Connect and is subject to
|
771
|
-
# change.
|
772
|
-
#
|
773
779
|
# Creates hours of operation.
|
774
780
|
#
|
775
781
|
# @option params [required, String] :instance_id
|
@@ -790,7 +796,7 @@ module Aws::Connect
|
|
790
796
|
# and end time.
|
791
797
|
#
|
792
798
|
# @option params [Hash<String,String>] :tags
|
793
|
-
#
|
799
|
+
# The tags used to organize, track, or control access for this resource.
|
794
800
|
#
|
795
801
|
# @return [Types::CreateHoursOfOperationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
796
802
|
#
|
@@ -899,7 +905,8 @@ module Aws::Connect
|
|
899
905
|
req.send_request(options)
|
900
906
|
end
|
901
907
|
|
902
|
-
# Creates an
|
908
|
+
# Creates an Amazon Web Services resource association with an Amazon
|
909
|
+
# Connect instance.
|
903
910
|
#
|
904
911
|
# @option params [required, String] :instance_id
|
905
912
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -924,7 +931,7 @@ module Aws::Connect
|
|
924
931
|
# integration type.
|
925
932
|
#
|
926
933
|
# @option params [Hash<String,String>] :tags
|
927
|
-
#
|
934
|
+
# The tags used to organize, track, or control access for this resource.
|
928
935
|
#
|
929
936
|
# @return [Types::CreateIntegrationAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
930
937
|
#
|
@@ -988,7 +995,7 @@ module Aws::Connect
|
|
988
995
|
# The quick connects available to agents who are working the queue.
|
989
996
|
#
|
990
997
|
# @option params [Hash<String,String>] :tags
|
991
|
-
#
|
998
|
+
# The tags used to organize, track, or control access for this resource.
|
992
999
|
#
|
993
1000
|
# @return [Types::CreateQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
994
1001
|
#
|
@@ -1044,7 +1051,7 @@ module Aws::Connect
|
|
1044
1051
|
# Configuration settings for the quick connect.
|
1045
1052
|
#
|
1046
1053
|
# @option params [Hash<String,String>] :tags
|
1047
|
-
#
|
1054
|
+
# The tags used to organize, track, or control access for this resource.
|
1048
1055
|
#
|
1049
1056
|
# @return [Types::CreateQuickConnectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1050
1057
|
#
|
@@ -1164,6 +1171,58 @@ module Aws::Connect
|
|
1164
1171
|
req.send_request(options)
|
1165
1172
|
end
|
1166
1173
|
|
1174
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1175
|
+
# change.
|
1176
|
+
#
|
1177
|
+
# Creates a security profile.
|
1178
|
+
#
|
1179
|
+
# @option params [required, String] :security_profile_name
|
1180
|
+
# The name of the security profile.
|
1181
|
+
#
|
1182
|
+
# @option params [String] :description
|
1183
|
+
# The description of the security profile.
|
1184
|
+
#
|
1185
|
+
# @option params [Array<String>] :permissions
|
1186
|
+
# Permissions assigned to the security profile.
|
1187
|
+
#
|
1188
|
+
# @option params [required, String] :instance_id
|
1189
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1190
|
+
# instanceId in the ARN of the instance.
|
1191
|
+
#
|
1192
|
+
# @option params [Hash<String,String>] :tags
|
1193
|
+
# The tags used to organize, track, or control access for this resource.
|
1194
|
+
#
|
1195
|
+
# @return [Types::CreateSecurityProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1196
|
+
#
|
1197
|
+
# * {Types::CreateSecurityProfileResponse#security_profile_id #security_profile_id} => String
|
1198
|
+
# * {Types::CreateSecurityProfileResponse#security_profile_arn #security_profile_arn} => String
|
1199
|
+
#
|
1200
|
+
# @example Request syntax with placeholder values
|
1201
|
+
#
|
1202
|
+
# resp = client.create_security_profile({
|
1203
|
+
# security_profile_name: "SecurityProfileName", # required
|
1204
|
+
# description: "SecurityProfileDescription",
|
1205
|
+
# permissions: ["SecurityProfilePermission"],
|
1206
|
+
# instance_id: "InstanceId", # required
|
1207
|
+
# tags: {
|
1208
|
+
# "TagKey" => "TagValue",
|
1209
|
+
# },
|
1210
|
+
# })
|
1211
|
+
#
|
1212
|
+
# @example Response structure
|
1213
|
+
#
|
1214
|
+
# resp.security_profile_id #=> String
|
1215
|
+
# resp.security_profile_arn #=> String
|
1216
|
+
#
|
1217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfile AWS API Documentation
|
1218
|
+
#
|
1219
|
+
# @overload create_security_profile(params = {})
|
1220
|
+
# @param [Hash] params ({})
|
1221
|
+
def create_security_profile(params = {}, options = {})
|
1222
|
+
req = build_request(:create_security_profile, params)
|
1223
|
+
req.send_request(options)
|
1224
|
+
end
|
1225
|
+
|
1167
1226
|
# Creates a use case for an integration association.
|
1168
1227
|
#
|
1169
1228
|
# @option params [required, String] :instance_id
|
@@ -1178,7 +1237,7 @@ module Aws::Connect
|
|
1178
1237
|
# integration association can have only one of each use case type.
|
1179
1238
|
#
|
1180
1239
|
# @option params [Hash<String,String>] :tags
|
1181
|
-
#
|
1240
|
+
# The tags used to organize, track, or control access for this resource.
|
1182
1241
|
#
|
1183
1242
|
# @return [Types::CreateUseCaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1184
1243
|
#
|
@@ -1352,9 +1411,6 @@ module Aws::Connect
|
|
1352
1411
|
req.send_request(options)
|
1353
1412
|
end
|
1354
1413
|
|
1355
|
-
# This API is in preview release for Amazon Connect and is subject to
|
1356
|
-
# change.
|
1357
|
-
#
|
1358
1414
|
# Deletes an hours of operation.
|
1359
1415
|
#
|
1360
1416
|
# @option params [required, String] :instance_id
|
@@ -1415,8 +1471,9 @@ module Aws::Connect
|
|
1415
1471
|
req.send_request(options)
|
1416
1472
|
end
|
1417
1473
|
|
1418
|
-
# Deletes an
|
1419
|
-
# The association must not have any use cases
|
1474
|
+
# Deletes an Amazon Web Services resource association from an Amazon
|
1475
|
+
# Connect instance. The association must not have any use cases
|
1476
|
+
# associated with it.
|
1420
1477
|
#
|
1421
1478
|
# @option params [required, String] :instance_id
|
1422
1479
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -1470,6 +1527,36 @@ module Aws::Connect
|
|
1470
1527
|
req.send_request(options)
|
1471
1528
|
end
|
1472
1529
|
|
1530
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1531
|
+
# change.
|
1532
|
+
#
|
1533
|
+
# Deletes a security profile.
|
1534
|
+
#
|
1535
|
+
# @option params [required, String] :instance_id
|
1536
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1537
|
+
# instanceId in the ARN of the instance.
|
1538
|
+
#
|
1539
|
+
# @option params [required, String] :security_profile_id
|
1540
|
+
# The identifier for the security profle.
|
1541
|
+
#
|
1542
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1543
|
+
#
|
1544
|
+
# @example Request syntax with placeholder values
|
1545
|
+
#
|
1546
|
+
# resp = client.delete_security_profile({
|
1547
|
+
# instance_id: "InstanceId", # required
|
1548
|
+
# security_profile_id: "SecurityProfileId", # required
|
1549
|
+
# })
|
1550
|
+
#
|
1551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteSecurityProfile AWS API Documentation
|
1552
|
+
#
|
1553
|
+
# @overload delete_security_profile(params = {})
|
1554
|
+
# @param [Hash] params ({})
|
1555
|
+
def delete_security_profile(params = {}, options = {})
|
1556
|
+
req = build_request(:delete_security_profile, params)
|
1557
|
+
req.send_request(options)
|
1558
|
+
end
|
1559
|
+
|
1473
1560
|
# Deletes a use case from an integration association.
|
1474
1561
|
#
|
1475
1562
|
# @option params [required, String] :instance_id
|
@@ -1654,9 +1741,6 @@ module Aws::Connect
|
|
1654
1741
|
req.send_request(options)
|
1655
1742
|
end
|
1656
1743
|
|
1657
|
-
# This API is in preview release for Amazon Connect and is subject to
|
1658
|
-
# change.
|
1659
|
-
#
|
1660
1744
|
# Describes the hours of operation.
|
1661
1745
|
#
|
1662
1746
|
# @option params [required, String] :instance_id
|
@@ -1974,6 +2058,48 @@ module Aws::Connect
|
|
1974
2058
|
req.send_request(options)
|
1975
2059
|
end
|
1976
2060
|
|
2061
|
+
# This API is in preview release for Amazon Connect and is subject to
|
2062
|
+
# change.
|
2063
|
+
#
|
2064
|
+
# Gets basic information about the security profle.
|
2065
|
+
#
|
2066
|
+
# @option params [required, String] :security_profile_id
|
2067
|
+
# The identifier for the security profle.
|
2068
|
+
#
|
2069
|
+
# @option params [required, String] :instance_id
|
2070
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2071
|
+
# instanceId in the ARN of the instance.
|
2072
|
+
#
|
2073
|
+
# @return [Types::DescribeSecurityProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2074
|
+
#
|
2075
|
+
# * {Types::DescribeSecurityProfileResponse#security_profile #security_profile} => Types::SecurityProfile
|
2076
|
+
#
|
2077
|
+
# @example Request syntax with placeholder values
|
2078
|
+
#
|
2079
|
+
# resp = client.describe_security_profile({
|
2080
|
+
# security_profile_id: "SecurityProfileId", # required
|
2081
|
+
# instance_id: "InstanceId", # required
|
2082
|
+
# })
|
2083
|
+
#
|
2084
|
+
# @example Response structure
|
2085
|
+
#
|
2086
|
+
# resp.security_profile.id #=> String
|
2087
|
+
# resp.security_profile.organization_resource_id #=> String
|
2088
|
+
# resp.security_profile.arn #=> String
|
2089
|
+
# resp.security_profile.security_profile_name #=> String
|
2090
|
+
# resp.security_profile.description #=> String
|
2091
|
+
# resp.security_profile.tags #=> Hash
|
2092
|
+
# resp.security_profile.tags["TagKey"] #=> String
|
2093
|
+
#
|
2094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeSecurityProfile AWS API Documentation
|
2095
|
+
#
|
2096
|
+
# @overload describe_security_profile(params = {})
|
2097
|
+
# @param [Hash] params ({})
|
2098
|
+
def describe_security_profile(params = {}, options = {})
|
2099
|
+
req = build_request(:describe_security_profile, params)
|
2100
|
+
req.send_request(options)
|
2101
|
+
end
|
2102
|
+
|
1977
2103
|
# Describes the specified user account. You can find the instance ID in
|
1978
2104
|
# the console (it’s the final part of the ARN). The console does not
|
1979
2105
|
# display the user IDs. Instead, list the users and note the IDs
|
@@ -3400,14 +3526,15 @@ module Aws::Connect
|
|
3400
3526
|
req.send_request(options)
|
3401
3527
|
end
|
3402
3528
|
|
3403
|
-
# Provides summary information about the
|
3404
|
-
# the specified Amazon Connect instance.
|
3529
|
+
# Provides summary information about the Amazon Web Services resource
|
3530
|
+
# associations for the specified Amazon Connect instance.
|
3405
3531
|
#
|
3406
3532
|
# @option params [required, String] :instance_id
|
3407
3533
|
# The identifier of the Amazon Connect instance. You can find the
|
3408
3534
|
# instanceId in the ARN of the instance.
|
3409
3535
|
#
|
3410
3536
|
# @option params [String] :integration_type
|
3537
|
+
# The type of integration.
|
3411
3538
|
#
|
3412
3539
|
# @option params [String] :next_token
|
3413
3540
|
# The token for the next set of results. Use the value returned in the
|
@@ -3519,7 +3646,8 @@ module Aws::Connect
|
|
3519
3646
|
# results.
|
3520
3647
|
#
|
3521
3648
|
# @option params [Integer] :max_results
|
3522
|
-
# The maximum number of results to return per page.
|
3649
|
+
# The maximum number of results to return per page. If no value is
|
3650
|
+
# specified, the default is 10.
|
3523
3651
|
#
|
3524
3652
|
# @return [Types::ListLexBotsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3525
3653
|
#
|
@@ -3995,6 +4123,60 @@ module Aws::Connect
|
|
3995
4123
|
req.send_request(options)
|
3996
4124
|
end
|
3997
4125
|
|
4126
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4127
|
+
# change.
|
4128
|
+
#
|
4129
|
+
# Lists the permissions granted to a security profile.
|
4130
|
+
#
|
4131
|
+
# @option params [required, String] :security_profile_id
|
4132
|
+
# The identifier for the security profle.
|
4133
|
+
#
|
4134
|
+
# @option params [required, String] :instance_id
|
4135
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4136
|
+
# instanceId in the ARN of the instance.
|
4137
|
+
#
|
4138
|
+
# @option params [String] :next_token
|
4139
|
+
# The token for the next set of results. Use the value returned in the
|
4140
|
+
# previous response in the next request to retrieve the next set of
|
4141
|
+
# results.
|
4142
|
+
#
|
4143
|
+
# @option params [Integer] :max_results
|
4144
|
+
# The maximum number of results to return per page.
|
4145
|
+
#
|
4146
|
+
# @return [Types::ListSecurityProfilePermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4147
|
+
#
|
4148
|
+
# * {Types::ListSecurityProfilePermissionsResponse#permissions #permissions} => Array<String>
|
4149
|
+
# * {Types::ListSecurityProfilePermissionsResponse#next_token #next_token} => String
|
4150
|
+
#
|
4151
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4152
|
+
#
|
4153
|
+
# @example Request syntax with placeholder values
|
4154
|
+
#
|
4155
|
+
# resp = client.list_security_profile_permissions({
|
4156
|
+
# security_profile_id: "SecurityProfileId", # required
|
4157
|
+
# instance_id: "InstanceId", # required
|
4158
|
+
# next_token: "NextToken",
|
4159
|
+
# max_results: 1,
|
4160
|
+
# })
|
4161
|
+
#
|
4162
|
+
# @example Response structure
|
4163
|
+
#
|
4164
|
+
# resp.permissions #=> Array
|
4165
|
+
# resp.permissions[0] #=> String
|
4166
|
+
# resp.next_token #=> String
|
4167
|
+
#
|
4168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfilePermissions AWS API Documentation
|
4169
|
+
#
|
4170
|
+
# @overload list_security_profile_permissions(params = {})
|
4171
|
+
# @param [Hash] params ({})
|
4172
|
+
def list_security_profile_permissions(params = {}, options = {})
|
4173
|
+
req = build_request(:list_security_profile_permissions, params)
|
4174
|
+
req.send_request(options)
|
4175
|
+
end
|
4176
|
+
|
4177
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4178
|
+
# change.
|
4179
|
+
#
|
3998
4180
|
# Provides summary information about the security profiles for the
|
3999
4181
|
# specified Amazon Connect instance.
|
4000
4182
|
#
|
@@ -4427,6 +4609,63 @@ module Aws::Connect
|
|
4427
4609
|
req.send_request(options)
|
4428
4610
|
end
|
4429
4611
|
|
4612
|
+
# Initiates real-time message streaming for a new chat contact.
|
4613
|
+
#
|
4614
|
+
# For more information about message streaming, see [Enable real-time
|
4615
|
+
# chat message streaming][1] in the *Amazon Connect Administrator
|
4616
|
+
# Guide*.
|
4617
|
+
#
|
4618
|
+
#
|
4619
|
+
#
|
4620
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-message-streaming.html
|
4621
|
+
#
|
4622
|
+
# @option params [required, String] :instance_id
|
4623
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4624
|
+
# instanceId in the ARN of the instance.
|
4625
|
+
#
|
4626
|
+
# @option params [required, String] :contact_id
|
4627
|
+
# The identifier of the contact. This is the identifier of the contact
|
4628
|
+
# associated with the first interaction with the contact center.
|
4629
|
+
#
|
4630
|
+
# @option params [required, Types::ChatStreamingConfiguration] :chat_streaming_configuration
|
4631
|
+
# The streaming configuration, such as the Amazon SNS streaming
|
4632
|
+
# endpoint.
|
4633
|
+
#
|
4634
|
+
# @option params [required, String] :client_token
|
4635
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
4636
|
+
# idempotency of the request.
|
4637
|
+
#
|
4638
|
+
# **A suitable default value is auto-generated.** You should normally
|
4639
|
+
# not need to pass this option.**
|
4640
|
+
#
|
4641
|
+
# @return [Types::StartContactStreamingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4642
|
+
#
|
4643
|
+
# * {Types::StartContactStreamingResponse#streaming_id #streaming_id} => String
|
4644
|
+
#
|
4645
|
+
# @example Request syntax with placeholder values
|
4646
|
+
#
|
4647
|
+
# resp = client.start_contact_streaming({
|
4648
|
+
# instance_id: "InstanceId", # required
|
4649
|
+
# contact_id: "ContactId", # required
|
4650
|
+
# chat_streaming_configuration: { # required
|
4651
|
+
# streaming_endpoint_arn: "ChatStreamingEndpointARN", # required
|
4652
|
+
# },
|
4653
|
+
# client_token: "ClientToken", # required
|
4654
|
+
# })
|
4655
|
+
#
|
4656
|
+
# @example Response structure
|
4657
|
+
#
|
4658
|
+
# resp.streaming_id #=> String
|
4659
|
+
#
|
4660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactStreaming AWS API Documentation
|
4661
|
+
#
|
4662
|
+
# @overload start_contact_streaming(params = {})
|
4663
|
+
# @param [Hash] params ({})
|
4664
|
+
def start_contact_streaming(params = {}, options = {})
|
4665
|
+
req = build_request(:start_contact_streaming, params)
|
4666
|
+
req.send_request(options)
|
4667
|
+
end
|
4668
|
+
|
4430
4669
|
# Places an outbound call to a contact, and then initiates the contact
|
4431
4670
|
# flow. It performs the actions in the contact flow that's specified
|
4432
4671
|
# (in `ContactFlowId`).
|
@@ -4703,6 +4942,43 @@ module Aws::Connect
|
|
4703
4942
|
req.send_request(options)
|
4704
4943
|
end
|
4705
4944
|
|
4945
|
+
# Ends message streaming on a specified contact. To restart message
|
4946
|
+
# streaming on that contact, call the [StartContactStreaming][1] API.
|
4947
|
+
#
|
4948
|
+
#
|
4949
|
+
#
|
4950
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartContactStreaming.html
|
4951
|
+
#
|
4952
|
+
# @option params [required, String] :instance_id
|
4953
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4954
|
+
# instanceId in the ARN of the instance.
|
4955
|
+
#
|
4956
|
+
# @option params [required, String] :contact_id
|
4957
|
+
# The identifier of the contact. This is the identifier of the contact
|
4958
|
+
# that is associated with the first interaction with the contact center.
|
4959
|
+
#
|
4960
|
+
# @option params [required, String] :streaming_id
|
4961
|
+
# The identifier of the streaming configuration enabled.
|
4962
|
+
#
|
4963
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4964
|
+
#
|
4965
|
+
# @example Request syntax with placeholder values
|
4966
|
+
#
|
4967
|
+
# resp = client.stop_contact_streaming({
|
4968
|
+
# instance_id: "InstanceId", # required
|
4969
|
+
# contact_id: "ContactId", # required
|
4970
|
+
# streaming_id: "StreamingId", # required
|
4971
|
+
# })
|
4972
|
+
#
|
4973
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContactStreaming AWS API Documentation
|
4974
|
+
#
|
4975
|
+
# @overload stop_contact_streaming(params = {})
|
4976
|
+
# @param [Hash] params ({})
|
4977
|
+
def stop_contact_streaming(params = {}, options = {})
|
4978
|
+
req = build_request(:stop_contact_streaming, params)
|
4979
|
+
req.send_request(options)
|
4980
|
+
end
|
4981
|
+
|
4706
4982
|
# When a contact is being recorded, this API suspends recording the
|
4707
4983
|
# call. For example, you might suspend the call recording while
|
4708
4984
|
# collecting sensitive information, such as a credit card number. Then
|
@@ -5010,9 +5286,6 @@ module Aws::Connect
|
|
5010
5286
|
req.send_request(options)
|
5011
5287
|
end
|
5012
5288
|
|
5013
|
-
# This API is in preview release for Amazon Connect and is subject to
|
5014
|
-
# change.
|
5015
|
-
#
|
5016
5289
|
# Updates the hours of operation.
|
5017
5290
|
#
|
5018
5291
|
# @option params [required, String] :instance_id
|
@@ -5081,7 +5354,8 @@ module Aws::Connect
|
|
5081
5354
|
# The type of attribute.
|
5082
5355
|
#
|
5083
5356
|
# <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
|
5084
|
-
# access this feature, contact
|
5357
|
+
# access this feature, contact Amazon Web Services Support for
|
5358
|
+
# allowlisting.
|
5085
5359
|
#
|
5086
5360
|
# </note>
|
5087
5361
|
#
|
@@ -5585,6 +5859,44 @@ module Aws::Connect
|
|
5585
5859
|
req.send_request(options)
|
5586
5860
|
end
|
5587
5861
|
|
5862
|
+
# This API is in preview release for Amazon Connect and is subject to
|
5863
|
+
# change.
|
5864
|
+
#
|
5865
|
+
# Updates a security profile.
|
5866
|
+
#
|
5867
|
+
# @option params [String] :description
|
5868
|
+
# The description of the security profile.
|
5869
|
+
#
|
5870
|
+
# @option params [Array<String>] :permissions
|
5871
|
+
# The permissions granted to a security profile.
|
5872
|
+
#
|
5873
|
+
# @option params [required, String] :security_profile_id
|
5874
|
+
# The identifier for the security profle.
|
5875
|
+
#
|
5876
|
+
# @option params [required, String] :instance_id
|
5877
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5878
|
+
# instanceId in the ARN of the instance.
|
5879
|
+
#
|
5880
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5881
|
+
#
|
5882
|
+
# @example Request syntax with placeholder values
|
5883
|
+
#
|
5884
|
+
# resp = client.update_security_profile({
|
5885
|
+
# description: "SecurityProfileDescription",
|
5886
|
+
# permissions: ["SecurityProfilePermission"],
|
5887
|
+
# security_profile_id: "SecurityProfileId", # required
|
5888
|
+
# instance_id: "InstanceId", # required
|
5889
|
+
# })
|
5890
|
+
#
|
5891
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfile AWS API Documentation
|
5892
|
+
#
|
5893
|
+
# @overload update_security_profile(params = {})
|
5894
|
+
# @param [Hash] params ({})
|
5895
|
+
def update_security_profile(params = {}, options = {})
|
5896
|
+
req = build_request(:update_security_profile, params)
|
5897
|
+
req.send_request(options)
|
5898
|
+
end
|
5899
|
+
|
5588
5900
|
# Assigns the specified hierarchy group to the specified user.
|
5589
5901
|
#
|
5590
5902
|
# @option params [String] :hierarchy_group_id
|
@@ -5849,7 +6161,7 @@ module Aws::Connect
|
|
5849
6161
|
params: params,
|
5850
6162
|
config: config)
|
5851
6163
|
context[:gem_name] = 'aws-sdk-connect'
|
5852
|
-
context[:gem_version] = '1.
|
6164
|
+
context[:gem_version] = '1.56.0'
|
5853
6165
|
Seahorse::Client::Request.new(handlers, context)
|
5854
6166
|
end
|
5855
6167
|
|