aws-sdk-connect 1.165.0 → 1.167.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +206 -8
- data/lib/aws-sdk-connect/client_api.rb +111 -0
- data/lib/aws-sdk-connect/endpoints.rb +42 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-connect/types.rb +321 -7
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +37 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +61 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53402fa223cd39da12fcedf31c7ab50bc0ad3ca31b1d1459cab5b2d3c6f7cf2e
|
4
|
+
data.tar.gz: a604bf7d5c8d9e8dc87e0aa93336605f0ded0e866c0c1d9c10541c59b38b4881
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8ec2a69375a545b0d9abbbc515dfeb0f5c4bc02d1edc965d43c9ec81a7b0ada554206e330ca2586caf638f2831ba482b14f1da1970ce0abc5ab5156c6485d80
|
7
|
+
data.tar.gz: 11ed5c265c186d33b78b33eb9b548f70f176cddd1a8fff29cea5debf402d8aa17b1174ffdb56f0a10c10e4a5b4e899762111611e895ffb2a2559ad5afbc14abb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.167.0 (2024-07-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.166.0 (2024-07-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Authentication profiles are Amazon Connect resources (in gated preview) that allow you to configure authentication settings for users in your contact center. This release adds support for new ListAuthenticationProfiles, DescribeAuthenticationProfile and UpdateAuthenticationProfile APIs.
|
13
|
+
|
4
14
|
1.165.0 (2024-06-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.167.0
|
@@ -312,6 +312,15 @@ module Aws::Connect
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :stub_responses (false)
|
316
325
|
# Causes the client to return stubbed responses. By default
|
317
326
|
# fake responses are generated and returned. You can specify
|
@@ -1528,7 +1537,7 @@ module Aws::Connect
|
|
1528
1537
|
# the pre-signed URL provided in the StartAttachedFileUpload API.
|
1529
1538
|
#
|
1530
1539
|
# @option params [required, String] :instance_id
|
1531
|
-
# The unique identifier of the Connect instance.
|
1540
|
+
# The unique identifier of the Amazon Connect instance.
|
1532
1541
|
#
|
1533
1542
|
# @option params [required, String] :file_id
|
1534
1543
|
# The unique identifier of the attached file resource.
|
@@ -4508,6 +4517,60 @@ module Aws::Connect
|
|
4508
4517
|
req.send_request(options)
|
4509
4518
|
end
|
4510
4519
|
|
4520
|
+
# This API is in preview release for Amazon Connect and is subject to
|
4521
|
+
# change. To request access to this API, contact Amazon Web Services
|
4522
|
+
# Support.
|
4523
|
+
#
|
4524
|
+
# Describes the target authentication profile.
|
4525
|
+
#
|
4526
|
+
# @option params [required, String] :authentication_profile_id
|
4527
|
+
# A unique identifier for the authentication profile.
|
4528
|
+
#
|
4529
|
+
# @option params [required, String] :instance_id
|
4530
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4531
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4532
|
+
#
|
4533
|
+
#
|
4534
|
+
#
|
4535
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4536
|
+
#
|
4537
|
+
# @return [Types::DescribeAuthenticationProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4538
|
+
#
|
4539
|
+
# * {Types::DescribeAuthenticationProfileResponse#authentication_profile #authentication_profile} => Types::AuthenticationProfile
|
4540
|
+
#
|
4541
|
+
# @example Request syntax with placeholder values
|
4542
|
+
#
|
4543
|
+
# resp = client.describe_authentication_profile({
|
4544
|
+
# authentication_profile_id: "AuthenticationProfileId", # required
|
4545
|
+
# instance_id: "InstanceId", # required
|
4546
|
+
# })
|
4547
|
+
#
|
4548
|
+
# @example Response structure
|
4549
|
+
#
|
4550
|
+
# resp.authentication_profile.id #=> String
|
4551
|
+
# resp.authentication_profile.arn #=> String
|
4552
|
+
# resp.authentication_profile.name #=> String
|
4553
|
+
# resp.authentication_profile.description #=> String
|
4554
|
+
# resp.authentication_profile.allowed_ips #=> Array
|
4555
|
+
# resp.authentication_profile.allowed_ips[0] #=> String
|
4556
|
+
# resp.authentication_profile.blocked_ips #=> Array
|
4557
|
+
# resp.authentication_profile.blocked_ips[0] #=> String
|
4558
|
+
# resp.authentication_profile.is_default #=> Boolean
|
4559
|
+
# resp.authentication_profile.created_time #=> Time
|
4560
|
+
# resp.authentication_profile.last_modified_time #=> Time
|
4561
|
+
# resp.authentication_profile.last_modified_region #=> String
|
4562
|
+
# resp.authentication_profile.periodic_session_duration #=> Integer
|
4563
|
+
# resp.authentication_profile.max_session_duration #=> Integer
|
4564
|
+
#
|
4565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeAuthenticationProfile AWS API Documentation
|
4566
|
+
#
|
4567
|
+
# @overload describe_authentication_profile(params = {})
|
4568
|
+
# @param [Hash] params ({})
|
4569
|
+
def describe_authentication_profile(params = {}, options = {})
|
4570
|
+
req = build_request(:describe_authentication_profile, params)
|
4571
|
+
req.send_request(options)
|
4572
|
+
end
|
4573
|
+
|
4511
4574
|
# This API is in preview release for Amazon Connect and is subject to
|
4512
4575
|
# change.
|
4513
4576
|
#
|
@@ -9077,6 +9140,64 @@ module Aws::Connect
|
|
9077
9140
|
req.send_request(options)
|
9078
9141
|
end
|
9079
9142
|
|
9143
|
+
# This API is in preview release for Amazon Connect and is subject to
|
9144
|
+
# change. To request access to this API, contact Amazon Web Services
|
9145
|
+
# Support.
|
9146
|
+
#
|
9147
|
+
# Provides summary information about the authentication profiles in a
|
9148
|
+
# specified Amazon Connect instance.
|
9149
|
+
#
|
9150
|
+
# @option params [required, String] :instance_id
|
9151
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9152
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9153
|
+
#
|
9154
|
+
#
|
9155
|
+
#
|
9156
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9157
|
+
#
|
9158
|
+
# @option params [Integer] :max_results
|
9159
|
+
# The maximum number of results to return per page.
|
9160
|
+
#
|
9161
|
+
# @option params [String] :next_token
|
9162
|
+
# The token for the next set of results. Use the value returned in the
|
9163
|
+
# previous response in the next request to retrieve the next set of
|
9164
|
+
# results.
|
9165
|
+
#
|
9166
|
+
# @return [Types::ListAuthenticationProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9167
|
+
#
|
9168
|
+
# * {Types::ListAuthenticationProfilesResponse#authentication_profile_summary_list #authentication_profile_summary_list} => Array<Types::AuthenticationProfileSummary>
|
9169
|
+
# * {Types::ListAuthenticationProfilesResponse#next_token #next_token} => String
|
9170
|
+
#
|
9171
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9172
|
+
#
|
9173
|
+
# @example Request syntax with placeholder values
|
9174
|
+
#
|
9175
|
+
# resp = client.list_authentication_profiles({
|
9176
|
+
# instance_id: "InstanceId", # required
|
9177
|
+
# max_results: 1,
|
9178
|
+
# next_token: "NextToken",
|
9179
|
+
# })
|
9180
|
+
#
|
9181
|
+
# @example Response structure
|
9182
|
+
#
|
9183
|
+
# resp.authentication_profile_summary_list #=> Array
|
9184
|
+
# resp.authentication_profile_summary_list[0].id #=> String
|
9185
|
+
# resp.authentication_profile_summary_list[0].arn #=> String
|
9186
|
+
# resp.authentication_profile_summary_list[0].name #=> String
|
9187
|
+
# resp.authentication_profile_summary_list[0].is_default #=> Boolean
|
9188
|
+
# resp.authentication_profile_summary_list[0].last_modified_time #=> Time
|
9189
|
+
# resp.authentication_profile_summary_list[0].last_modified_region #=> String
|
9190
|
+
# resp.next_token #=> String
|
9191
|
+
#
|
9192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAuthenticationProfiles AWS API Documentation
|
9193
|
+
#
|
9194
|
+
# @overload list_authentication_profiles(params = {})
|
9195
|
+
# @param [Hash] params ({})
|
9196
|
+
def list_authentication_profiles(params = {}, options = {})
|
9197
|
+
req = build_request(:list_authentication_profiles, params)
|
9198
|
+
req.send_request(options)
|
9199
|
+
end
|
9200
|
+
|
9080
9201
|
# This API is in preview release for Amazon Connect and is subject to
|
9081
9202
|
# change.
|
9082
9203
|
#
|
@@ -13483,7 +13604,7 @@ module Aws::Connect
|
|
13483
13604
|
# Provides a pre-signed Amazon S3 URL in response for uploading your
|
13484
13605
|
# content.
|
13485
13606
|
#
|
13486
|
-
# You may only use this API to upload attachments to
|
13607
|
+
# You may only use this API to upload attachments to an [Amazon Connect
|
13487
13608
|
# Case][1].
|
13488
13609
|
#
|
13489
13610
|
#
|
@@ -13504,7 +13625,7 @@ module Aws::Connect
|
|
13504
13625
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
13505
13626
|
#
|
13506
13627
|
# @option params [required, String] :instance_id
|
13507
|
-
# The unique identifier of the Connect instance.
|
13628
|
+
# The unique identifier of the Amazon Connect instance.
|
13508
13629
|
#
|
13509
13630
|
# @option params [required, String] :file_name
|
13510
13631
|
# A case-sensitive name of the attached file being uploaded.
|
@@ -14384,10 +14505,9 @@ module Aws::Connect
|
|
14384
14505
|
# @option params [required, String] :contact_flow_id
|
14385
14506
|
# The identifier of the flow for the call. To see the ContactFlowId in
|
14386
14507
|
# the Amazon Connect admin website, on the navigation menu go to
|
14387
|
-
# **Routing**, **
|
14388
|
-
#
|
14389
|
-
#
|
14390
|
-
# here in bold:
|
14508
|
+
# **Routing**, **Flows**. Choose the flow. On the flow page, under the
|
14509
|
+
# name of the flow, choose **Show additional flow information**. The
|
14510
|
+
# ContactFlowId is the last part of the ARN, shown here in bold:
|
14391
14511
|
#
|
14392
14512
|
# arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
|
14393
14513
|
#
|
@@ -15030,6 +15150,84 @@ module Aws::Connect
|
|
15030
15150
|
req.send_request(options)
|
15031
15151
|
end
|
15032
15152
|
|
15153
|
+
# This API is in preview release for Amazon Connect and is subject to
|
15154
|
+
# change. To request access to this API, contact Amazon Web Services
|
15155
|
+
# Support.
|
15156
|
+
#
|
15157
|
+
# Updates the selected authentication profile.
|
15158
|
+
#
|
15159
|
+
# @option params [required, String] :authentication_profile_id
|
15160
|
+
# A unique identifier for the authentication profile.
|
15161
|
+
#
|
15162
|
+
# @option params [required, String] :instance_id
|
15163
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
15164
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
15165
|
+
#
|
15166
|
+
#
|
15167
|
+
#
|
15168
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
15169
|
+
#
|
15170
|
+
# @option params [String] :name
|
15171
|
+
# The name for the authentication profile.
|
15172
|
+
#
|
15173
|
+
# @option params [String] :description
|
15174
|
+
# The description for the authentication profile.
|
15175
|
+
#
|
15176
|
+
# @option params [Array<String>] :allowed_ips
|
15177
|
+
# A list of IP address range strings that are allowed to access the
|
15178
|
+
# instance. For more information on how to configure IP addresses,
|
15179
|
+
# see[Configure session timeouts][1] in the *Amazon Connect
|
15180
|
+
# Administrator Guide*.
|
15181
|
+
#
|
15182
|
+
#
|
15183
|
+
#
|
15184
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts
|
15185
|
+
#
|
15186
|
+
# @option params [Array<String>] :blocked_ips
|
15187
|
+
# A list of IP address range strings that are blocked from accessing the
|
15188
|
+
# instance. For more information on how to configure IP addresses, For
|
15189
|
+
# more information on how to configure IP addresses, see [Configure
|
15190
|
+
# IP-based access control][1] in the *Amazon Connect Administrator
|
15191
|
+
# Guide*.
|
15192
|
+
#
|
15193
|
+
#
|
15194
|
+
#
|
15195
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac
|
15196
|
+
#
|
15197
|
+
# @option params [Integer] :periodic_session_duration
|
15198
|
+
# The short lived session duration configuration for users logged in to
|
15199
|
+
# Amazon Connect, in minutes. This value determines the maximum possible
|
15200
|
+
# time before an agent is authenticated. For more information, For more
|
15201
|
+
# information on how to configure IP addresses, see [Configure session
|
15202
|
+
# timeouts][1] in the *Amazon Connect Administrator Guide*.
|
15203
|
+
#
|
15204
|
+
#
|
15205
|
+
#
|
15206
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts
|
15207
|
+
#
|
15208
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
15209
|
+
#
|
15210
|
+
# @example Request syntax with placeholder values
|
15211
|
+
#
|
15212
|
+
# resp = client.update_authentication_profile({
|
15213
|
+
# authentication_profile_id: "AuthenticationProfileId", # required
|
15214
|
+
# instance_id: "InstanceId", # required
|
15215
|
+
# name: "AuthenticationProfileName",
|
15216
|
+
# description: "AuthenticationProfileDescription",
|
15217
|
+
# allowed_ips: ["IpCidr"],
|
15218
|
+
# blocked_ips: ["IpCidr"],
|
15219
|
+
# periodic_session_duration: 1,
|
15220
|
+
# })
|
15221
|
+
#
|
15222
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateAuthenticationProfile AWS API Documentation
|
15223
|
+
#
|
15224
|
+
# @overload update_authentication_profile(params = {})
|
15225
|
+
# @param [Hash] params ({})
|
15226
|
+
def update_authentication_profile(params = {}, options = {})
|
15227
|
+
req = build_request(:update_authentication_profile, params)
|
15228
|
+
req.send_request(options)
|
15229
|
+
end
|
15230
|
+
|
15033
15231
|
# This API is in preview release for Amazon Connect and is subject to
|
15034
15232
|
# change.
|
15035
15233
|
#
|
@@ -17552,7 +17750,7 @@ module Aws::Connect
|
|
17552
17750
|
params: params,
|
17553
17751
|
config: config)
|
17554
17752
|
context[:gem_name] = 'aws-sdk-connect'
|
17555
|
-
context[:gem_version] = '1.
|
17753
|
+
context[:gem_version] = '1.167.0'
|
17556
17754
|
Seahorse::Client::Request.new(handlers, context)
|
17557
17755
|
end
|
17558
17756
|
|
@@ -16,6 +16,7 @@ module Aws::Connect
|
|
16
16
|
ARN = Shapes::StringShape.new(name: 'ARN')
|
17
17
|
AWSAccountId = Shapes::StringShape.new(name: 'AWSAccountId')
|
18
18
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
19
|
+
AccessTokenDuration = Shapes::IntegerShape.new(name: 'AccessTokenDuration')
|
19
20
|
ActionSummaries = Shapes::ListShape.new(name: 'ActionSummaries')
|
20
21
|
ActionSummary = Shapes::StructureShape.new(name: 'ActionSummary')
|
21
22
|
ActionType = Shapes::StringShape.new(name: 'ActionType')
|
@@ -108,6 +109,12 @@ module Aws::Connect
|
|
108
109
|
AudioFeatures = Shapes::StructureShape.new(name: 'AudioFeatures')
|
109
110
|
AudioQualityMetricsInfo = Shapes::StructureShape.new(name: 'AudioQualityMetricsInfo')
|
110
111
|
AudioQualityScore = Shapes::FloatShape.new(name: 'AudioQualityScore')
|
112
|
+
AuthenticationProfile = Shapes::StructureShape.new(name: 'AuthenticationProfile')
|
113
|
+
AuthenticationProfileDescription = Shapes::StringShape.new(name: 'AuthenticationProfileDescription')
|
114
|
+
AuthenticationProfileId = Shapes::StringShape.new(name: 'AuthenticationProfileId')
|
115
|
+
AuthenticationProfileName = Shapes::StringShape.new(name: 'AuthenticationProfileName')
|
116
|
+
AuthenticationProfileSummary = Shapes::StructureShape.new(name: 'AuthenticationProfileSummary')
|
117
|
+
AuthenticationProfileSummaryList = Shapes::ListShape.new(name: 'AuthenticationProfileSummaryList')
|
111
118
|
AutoAccept = Shapes::BooleanShape.new(name: 'AutoAccept')
|
112
119
|
AvailableNumberSummary = Shapes::StructureShape.new(name: 'AvailableNumberSummary')
|
113
120
|
AvailableNumbersList = Shapes::ListShape.new(name: 'AvailableNumbersList')
|
@@ -311,6 +318,8 @@ module Aws::Connect
|
|
311
318
|
DeleteVocabularyResponse = Shapes::StructureShape.new(name: 'DeleteVocabularyResponse')
|
312
319
|
DescribeAgentStatusRequest = Shapes::StructureShape.new(name: 'DescribeAgentStatusRequest')
|
313
320
|
DescribeAgentStatusResponse = Shapes::StructureShape.new(name: 'DescribeAgentStatusResponse')
|
321
|
+
DescribeAuthenticationProfileRequest = Shapes::StructureShape.new(name: 'DescribeAuthenticationProfileRequest')
|
322
|
+
DescribeAuthenticationProfileResponse = Shapes::StructureShape.new(name: 'DescribeAuthenticationProfileResponse')
|
314
323
|
DescribeContactEvaluationRequest = Shapes::StructureShape.new(name: 'DescribeContactEvaluationRequest')
|
315
324
|
DescribeContactEvaluationResponse = Shapes::StructureShape.new(name: 'DescribeContactEvaluationResponse')
|
316
325
|
DescribeContactFlowModuleRequest = Shapes::StructureShape.new(name: 'DescribeContactFlowModuleRequest')
|
@@ -599,6 +608,8 @@ module Aws::Connect
|
|
599
608
|
InvalidRequestExceptionReason = Shapes::UnionShape.new(name: 'InvalidRequestExceptionReason')
|
600
609
|
InvisibleFieldInfo = Shapes::StructureShape.new(name: 'InvisibleFieldInfo')
|
601
610
|
InvisibleTaskTemplateFields = Shapes::ListShape.new(name: 'InvisibleTaskTemplateFields')
|
611
|
+
IpCidr = Shapes::StringShape.new(name: 'IpCidr')
|
612
|
+
IpCidrList = Shapes::ListShape.new(name: 'IpCidrList')
|
602
613
|
JoinToken = Shapes::StringShape.new(name: 'JoinToken')
|
603
614
|
KeyId = Shapes::StringShape.new(name: 'KeyId')
|
604
615
|
KinesisFirehoseConfig = Shapes::StructureShape.new(name: 'KinesisFirehoseConfig')
|
@@ -619,6 +630,8 @@ module Aws::Connect
|
|
619
630
|
ListAnalyticsDataAssociationsResponse = Shapes::StructureShape.new(name: 'ListAnalyticsDataAssociationsResponse')
|
620
631
|
ListApprovedOriginsRequest = Shapes::StructureShape.new(name: 'ListApprovedOriginsRequest')
|
621
632
|
ListApprovedOriginsResponse = Shapes::StructureShape.new(name: 'ListApprovedOriginsResponse')
|
633
|
+
ListAuthenticationProfilesRequest = Shapes::StructureShape.new(name: 'ListAuthenticationProfilesRequest')
|
634
|
+
ListAuthenticationProfilesResponse = Shapes::StructureShape.new(name: 'ListAuthenticationProfilesResponse')
|
622
635
|
ListBotsRequest = Shapes::StructureShape.new(name: 'ListBotsRequest')
|
623
636
|
ListBotsResponse = Shapes::StructureShape.new(name: 'ListBotsResponse')
|
624
637
|
ListContactEvaluationsRequest = Shapes::StructureShape.new(name: 'ListContactEvaluationsRequest')
|
@@ -921,6 +934,7 @@ module Aws::Connect
|
|
921
934
|
ReferenceType = Shapes::StringShape.new(name: 'ReferenceType')
|
922
935
|
ReferenceTypes = Shapes::ListShape.new(name: 'ReferenceTypes')
|
923
936
|
ReferenceValue = Shapes::StringShape.new(name: 'ReferenceValue')
|
937
|
+
RefreshTokenDuration = Shapes::IntegerShape.new(name: 'RefreshTokenDuration')
|
924
938
|
RegionName = Shapes::StringShape.new(name: 'RegionName')
|
925
939
|
RehydrationType = Shapes::StringShape.new(name: 'RehydrationType')
|
926
940
|
ReleasePhoneNumberRequest = Shapes::StructureShape.new(name: 'ReleasePhoneNumberRequest')
|
@@ -1175,6 +1189,7 @@ module Aws::Connect
|
|
1175
1189
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
1176
1190
|
UpdateAgentStatusDescription = Shapes::StringShape.new(name: 'UpdateAgentStatusDescription')
|
1177
1191
|
UpdateAgentStatusRequest = Shapes::StructureShape.new(name: 'UpdateAgentStatusRequest')
|
1192
|
+
UpdateAuthenticationProfileRequest = Shapes::StructureShape.new(name: 'UpdateAuthenticationProfileRequest')
|
1178
1193
|
UpdateCaseActionDefinition = Shapes::StructureShape.new(name: 'UpdateCaseActionDefinition')
|
1179
1194
|
UpdateContactAttributesRequest = Shapes::StructureShape.new(name: 'UpdateContactAttributesRequest')
|
1180
1195
|
UpdateContactAttributesResponse = Shapes::StructureShape.new(name: 'UpdateContactAttributesResponse')
|
@@ -1586,6 +1601,30 @@ module Aws::Connect
|
|
1586
1601
|
AudioQualityMetricsInfo.add_member(:potential_quality_issues, Shapes::ShapeRef.new(shape: PotentialAudioQualityIssues, location_name: "PotentialQualityIssues"))
|
1587
1602
|
AudioQualityMetricsInfo.struct_class = Types::AudioQualityMetricsInfo
|
1588
1603
|
|
1604
|
+
AuthenticationProfile.add_member(:id, Shapes::ShapeRef.new(shape: AuthenticationProfileId, location_name: "Id"))
|
1605
|
+
AuthenticationProfile.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
1606
|
+
AuthenticationProfile.add_member(:name, Shapes::ShapeRef.new(shape: AuthenticationProfileName, location_name: "Name"))
|
1607
|
+
AuthenticationProfile.add_member(:description, Shapes::ShapeRef.new(shape: AuthenticationProfileDescription, location_name: "Description"))
|
1608
|
+
AuthenticationProfile.add_member(:allowed_ips, Shapes::ShapeRef.new(shape: IpCidrList, location_name: "AllowedIps"))
|
1609
|
+
AuthenticationProfile.add_member(:blocked_ips, Shapes::ShapeRef.new(shape: IpCidrList, location_name: "BlockedIps"))
|
1610
|
+
AuthenticationProfile.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
1611
|
+
AuthenticationProfile.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
|
1612
|
+
AuthenticationProfile.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
1613
|
+
AuthenticationProfile.add_member(:last_modified_region, Shapes::ShapeRef.new(shape: RegionName, location_name: "LastModifiedRegion"))
|
1614
|
+
AuthenticationProfile.add_member(:periodic_session_duration, Shapes::ShapeRef.new(shape: AccessTokenDuration, location_name: "PeriodicSessionDuration"))
|
1615
|
+
AuthenticationProfile.add_member(:max_session_duration, Shapes::ShapeRef.new(shape: RefreshTokenDuration, location_name: "MaxSessionDuration"))
|
1616
|
+
AuthenticationProfile.struct_class = Types::AuthenticationProfile
|
1617
|
+
|
1618
|
+
AuthenticationProfileSummary.add_member(:id, Shapes::ShapeRef.new(shape: AuthenticationProfileId, location_name: "Id"))
|
1619
|
+
AuthenticationProfileSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
1620
|
+
AuthenticationProfileSummary.add_member(:name, Shapes::ShapeRef.new(shape: AuthenticationProfileName, location_name: "Name"))
|
1621
|
+
AuthenticationProfileSummary.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
1622
|
+
AuthenticationProfileSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
1623
|
+
AuthenticationProfileSummary.add_member(:last_modified_region, Shapes::ShapeRef.new(shape: RegionName, location_name: "LastModifiedRegion"))
|
1624
|
+
AuthenticationProfileSummary.struct_class = Types::AuthenticationProfileSummary
|
1625
|
+
|
1626
|
+
AuthenticationProfileSummaryList.member = Shapes::ShapeRef.new(shape: AuthenticationProfileSummary)
|
1627
|
+
|
1589
1628
|
AvailableNumberSummary.add_member(:phone_number, Shapes::ShapeRef.new(shape: PhoneNumber, location_name: "PhoneNumber"))
|
1590
1629
|
AvailableNumberSummary.add_member(:phone_number_country_code, Shapes::ShapeRef.new(shape: PhoneNumberCountryCode, location_name: "PhoneNumberCountryCode"))
|
1591
1630
|
AvailableNumberSummary.add_member(:phone_number_type, Shapes::ShapeRef.new(shape: PhoneNumberType, location_name: "PhoneNumberType"))
|
@@ -2356,6 +2395,13 @@ module Aws::Connect
|
|
2356
2395
|
DescribeAgentStatusResponse.add_member(:agent_status, Shapes::ShapeRef.new(shape: AgentStatus, location_name: "AgentStatus"))
|
2357
2396
|
DescribeAgentStatusResponse.struct_class = Types::DescribeAgentStatusResponse
|
2358
2397
|
|
2398
|
+
DescribeAuthenticationProfileRequest.add_member(:authentication_profile_id, Shapes::ShapeRef.new(shape: AuthenticationProfileId, required: true, location: "uri", location_name: "AuthenticationProfileId"))
|
2399
|
+
DescribeAuthenticationProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
2400
|
+
DescribeAuthenticationProfileRequest.struct_class = Types::DescribeAuthenticationProfileRequest
|
2401
|
+
|
2402
|
+
DescribeAuthenticationProfileResponse.add_member(:authentication_profile, Shapes::ShapeRef.new(shape: AuthenticationProfile, location_name: "AuthenticationProfile"))
|
2403
|
+
DescribeAuthenticationProfileResponse.struct_class = Types::DescribeAuthenticationProfileResponse
|
2404
|
+
|
2359
2405
|
DescribeContactEvaluationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
2360
2406
|
DescribeContactEvaluationRequest.add_member(:evaluation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "EvaluationId"))
|
2361
2407
|
DescribeContactEvaluationRequest.struct_class = Types::DescribeContactEvaluationRequest
|
@@ -3290,6 +3336,8 @@ module Aws::Connect
|
|
3290
3336
|
|
3291
3337
|
InvisibleTaskTemplateFields.member = Shapes::ShapeRef.new(shape: InvisibleFieldInfo)
|
3292
3338
|
|
3339
|
+
IpCidrList.member = Shapes::ShapeRef.new(shape: IpCidr)
|
3340
|
+
|
3293
3341
|
KinesisFirehoseConfig.add_member(:firehose_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "FirehoseArn"))
|
3294
3342
|
KinesisFirehoseConfig.struct_class = Types::KinesisFirehoseConfig
|
3295
3343
|
|
@@ -3348,6 +3396,15 @@ module Aws::Connect
|
|
3348
3396
|
ListApprovedOriginsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3349
3397
|
ListApprovedOriginsResponse.struct_class = Types::ListApprovedOriginsResponse
|
3350
3398
|
|
3399
|
+
ListAuthenticationProfilesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
3400
|
+
ListAuthenticationProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult1000, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
|
3401
|
+
ListAuthenticationProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
3402
|
+
ListAuthenticationProfilesRequest.struct_class = Types::ListAuthenticationProfilesRequest
|
3403
|
+
|
3404
|
+
ListAuthenticationProfilesResponse.add_member(:authentication_profile_summary_list, Shapes::ShapeRef.new(shape: AuthenticationProfileSummaryList, location_name: "AuthenticationProfileSummaryList"))
|
3405
|
+
ListAuthenticationProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3406
|
+
ListAuthenticationProfilesResponse.struct_class = Types::ListAuthenticationProfilesResponse
|
3407
|
+
|
3351
3408
|
ListBotsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
3352
3409
|
ListBotsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
3353
3410
|
ListBotsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult25, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
|
@@ -5072,6 +5129,15 @@ module Aws::Connect
|
|
5072
5129
|
UpdateAgentStatusRequest.add_member(:reset_order_number, Shapes::ShapeRef.new(shape: Boolean, location_name: "ResetOrderNumber"))
|
5073
5130
|
UpdateAgentStatusRequest.struct_class = Types::UpdateAgentStatusRequest
|
5074
5131
|
|
5132
|
+
UpdateAuthenticationProfileRequest.add_member(:authentication_profile_id, Shapes::ShapeRef.new(shape: AuthenticationProfileId, required: true, location: "uri", location_name: "AuthenticationProfileId"))
|
5133
|
+
UpdateAuthenticationProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
5134
|
+
UpdateAuthenticationProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: AuthenticationProfileName, location_name: "Name"))
|
5135
|
+
UpdateAuthenticationProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: AuthenticationProfileDescription, location_name: "Description"))
|
5136
|
+
UpdateAuthenticationProfileRequest.add_member(:allowed_ips, Shapes::ShapeRef.new(shape: IpCidrList, location_name: "AllowedIps"))
|
5137
|
+
UpdateAuthenticationProfileRequest.add_member(:blocked_ips, Shapes::ShapeRef.new(shape: IpCidrList, location_name: "BlockedIps"))
|
5138
|
+
UpdateAuthenticationProfileRequest.add_member(:periodic_session_duration, Shapes::ShapeRef.new(shape: AccessTokenDuration, location_name: "PeriodicSessionDuration", metadata: {"box"=>true}))
|
5139
|
+
UpdateAuthenticationProfileRequest.struct_class = Types::UpdateAuthenticationProfileRequest
|
5140
|
+
|
5075
5141
|
UpdateCaseActionDefinition.add_member(:fields, Shapes::ShapeRef.new(shape: FieldValues, required: true, location_name: "Fields"))
|
5076
5142
|
UpdateCaseActionDefinition.struct_class = Types::UpdateCaseActionDefinition
|
5077
5143
|
|
@@ -6633,6 +6699,19 @@ module Aws::Connect
|
|
6633
6699
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
6634
6700
|
end)
|
6635
6701
|
|
6702
|
+
api.add_operation(:describe_authentication_profile, Seahorse::Model::Operation.new.tap do |o|
|
6703
|
+
o.name = "DescribeAuthenticationProfile"
|
6704
|
+
o.http_method = "GET"
|
6705
|
+
o.http_request_uri = "/authentication-profiles/{InstanceId}/{AuthenticationProfileId}"
|
6706
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeAuthenticationProfileRequest)
|
6707
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeAuthenticationProfileResponse)
|
6708
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
6709
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
6710
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6711
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
6712
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
6713
|
+
end)
|
6714
|
+
|
6636
6715
|
api.add_operation(:describe_contact, Seahorse::Model::Operation.new.tap do |o|
|
6637
6716
|
o.name = "DescribeContact"
|
6638
6717
|
o.http_method = "GET"
|
@@ -7347,6 +7426,25 @@ module Aws::Connect
|
|
7347
7426
|
)
|
7348
7427
|
end)
|
7349
7428
|
|
7429
|
+
api.add_operation(:list_authentication_profiles, Seahorse::Model::Operation.new.tap do |o|
|
7430
|
+
o.name = "ListAuthenticationProfiles"
|
7431
|
+
o.http_method = "GET"
|
7432
|
+
o.http_request_uri = "/authentication-profiles-summary/{InstanceId}"
|
7433
|
+
o.input = Shapes::ShapeRef.new(shape: ListAuthenticationProfilesRequest)
|
7434
|
+
o.output = Shapes::ShapeRef.new(shape: ListAuthenticationProfilesResponse)
|
7435
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
7436
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
7437
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
7438
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
7439
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
7440
|
+
o[:pager] = Aws::Pager.new(
|
7441
|
+
limit_key: "max_results",
|
7442
|
+
tokens: {
|
7443
|
+
"next_token" => "next_token"
|
7444
|
+
}
|
7445
|
+
)
|
7446
|
+
end)
|
7447
|
+
|
7350
7448
|
api.add_operation(:list_bots, Seahorse::Model::Operation.new.tap do |o|
|
7351
7449
|
o.name = "ListBots"
|
7352
7450
|
o.http_method = "GET"
|
@@ -8742,6 +8840,19 @@ module Aws::Connect
|
|
8742
8840
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8743
8841
|
end)
|
8744
8842
|
|
8843
|
+
api.add_operation(:update_authentication_profile, Seahorse::Model::Operation.new.tap do |o|
|
8844
|
+
o.name = "UpdateAuthenticationProfile"
|
8845
|
+
o.http_method = "POST"
|
8846
|
+
o.http_request_uri = "/authentication-profiles/{InstanceId}/{AuthenticationProfileId}"
|
8847
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateAuthenticationProfileRequest)
|
8848
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
8849
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
8850
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
8851
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
8852
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
8853
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8854
|
+
end)
|
8855
|
+
|
8745
8856
|
api.add_operation(:update_contact, Seahorse::Model::Operation.new.tap do |o|
|
8746
8857
|
o.name = "UpdateContact"
|
8747
8858
|
o.http_method = "POST"
|
@@ -1006,6 +1006,20 @@ module Aws::Connect
|
|
1006
1006
|
end
|
1007
1007
|
end
|
1008
1008
|
|
1009
|
+
class DescribeAuthenticationProfile
|
1010
|
+
def self.build(context)
|
1011
|
+
unless context.config.regional_endpoint
|
1012
|
+
endpoint = context.config.endpoint.to_s
|
1013
|
+
end
|
1014
|
+
Aws::Connect::EndpointParameters.new(
|
1015
|
+
region: context.config.region,
|
1016
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1017
|
+
use_fips: context.config.use_fips_endpoint,
|
1018
|
+
endpoint: endpoint,
|
1019
|
+
)
|
1020
|
+
end
|
1021
|
+
end
|
1022
|
+
|
1009
1023
|
class DescribeContact
|
1010
1024
|
def self.build(context)
|
1011
1025
|
unless context.config.regional_endpoint
|
@@ -1734,6 +1748,20 @@ module Aws::Connect
|
|
1734
1748
|
end
|
1735
1749
|
end
|
1736
1750
|
|
1751
|
+
class ListAuthenticationProfiles
|
1752
|
+
def self.build(context)
|
1753
|
+
unless context.config.regional_endpoint
|
1754
|
+
endpoint = context.config.endpoint.to_s
|
1755
|
+
end
|
1756
|
+
Aws::Connect::EndpointParameters.new(
|
1757
|
+
region: context.config.region,
|
1758
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1759
|
+
use_fips: context.config.use_fips_endpoint,
|
1760
|
+
endpoint: endpoint,
|
1761
|
+
)
|
1762
|
+
end
|
1763
|
+
end
|
1764
|
+
|
1737
1765
|
class ListBots
|
1738
1766
|
def self.build(context)
|
1739
1767
|
unless context.config.regional_endpoint
|
@@ -2882,6 +2910,20 @@ module Aws::Connect
|
|
2882
2910
|
end
|
2883
2911
|
end
|
2884
2912
|
|
2913
|
+
class UpdateAuthenticationProfile
|
2914
|
+
def self.build(context)
|
2915
|
+
unless context.config.regional_endpoint
|
2916
|
+
endpoint = context.config.endpoint.to_s
|
2917
|
+
end
|
2918
|
+
Aws::Connect::EndpointParameters.new(
|
2919
|
+
region: context.config.region,
|
2920
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2921
|
+
use_fips: context.config.use_fips_endpoint,
|
2922
|
+
endpoint: endpoint,
|
2923
|
+
)
|
2924
|
+
end
|
2925
|
+
end
|
2926
|
+
|
2885
2927
|
class UpdateContact
|
2886
2928
|
def self.build(context)
|
2887
2929
|
unless context.config.regional_endpoint
|
@@ -200,6 +200,8 @@ module Aws::Connect
|
|
200
200
|
Aws::Connect::Endpoints::DeleteVocabulary.build(context)
|
201
201
|
when :describe_agent_status
|
202
202
|
Aws::Connect::Endpoints::DescribeAgentStatus.build(context)
|
203
|
+
when :describe_authentication_profile
|
204
|
+
Aws::Connect::Endpoints::DescribeAuthenticationProfile.build(context)
|
203
205
|
when :describe_contact
|
204
206
|
Aws::Connect::Endpoints::DescribeContact.build(context)
|
205
207
|
when :describe_contact_evaluation
|
@@ -304,6 +306,8 @@ module Aws::Connect
|
|
304
306
|
Aws::Connect::Endpoints::ListAnalyticsDataAssociations.build(context)
|
305
307
|
when :list_approved_origins
|
306
308
|
Aws::Connect::Endpoints::ListApprovedOrigins.build(context)
|
309
|
+
when :list_authentication_profiles
|
310
|
+
Aws::Connect::Endpoints::ListAuthenticationProfiles.build(context)
|
307
311
|
when :list_bots
|
308
312
|
Aws::Connect::Endpoints::ListBots.build(context)
|
309
313
|
when :list_contact_evaluations
|
@@ -468,6 +472,8 @@ module Aws::Connect
|
|
468
472
|
Aws::Connect::Endpoints::UntagResource.build(context)
|
469
473
|
when :update_agent_status
|
470
474
|
Aws::Connect::Endpoints::UpdateAgentStatus.build(context)
|
475
|
+
when :update_authentication_profile
|
476
|
+
Aws::Connect::Endpoints::UpdateAuthenticationProfile.build(context)
|
471
477
|
when :update_contact
|
472
478
|
Aws::Connect::Endpoints::UpdateContact.build(context)
|
473
479
|
when :update_contact_attributes
|
@@ -1238,6 +1238,169 @@ module Aws::Connect
|
|
1238
1238
|
include Aws::Structure
|
1239
1239
|
end
|
1240
1240
|
|
1241
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1242
|
+
# change. To request access to this API, contact Amazon Web Services
|
1243
|
+
# Support.
|
1244
|
+
#
|
1245
|
+
# Information about an authentication profile. An authentication profile
|
1246
|
+
# is a resource that stores the authentication settings for users in
|
1247
|
+
# your contact center. You use authentication profiles to set up IP
|
1248
|
+
# address range restrictions and session timeouts. For more information,
|
1249
|
+
# see [Set IP address restrictions or session timeouts][1].
|
1250
|
+
#
|
1251
|
+
#
|
1252
|
+
#
|
1253
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html
|
1254
|
+
#
|
1255
|
+
# @!attribute [rw] id
|
1256
|
+
# A unique identifier for the authentication profile.
|
1257
|
+
# @return [String]
|
1258
|
+
#
|
1259
|
+
# @!attribute [rw] arn
|
1260
|
+
# The Amazon Resource Name (ARN) for the authentication profile.
|
1261
|
+
# @return [String]
|
1262
|
+
#
|
1263
|
+
# @!attribute [rw] name
|
1264
|
+
# The name for the authentication profile.
|
1265
|
+
# @return [String]
|
1266
|
+
#
|
1267
|
+
# @!attribute [rw] description
|
1268
|
+
# The description for the authentication profile.
|
1269
|
+
# @return [String]
|
1270
|
+
#
|
1271
|
+
# @!attribute [rw] allowed_ips
|
1272
|
+
# A list of IP address range strings that are allowed to access the
|
1273
|
+
# Amazon Connect instance. For more information about how to configure
|
1274
|
+
# IP addresses, see [Configure IP address based access control][1] in
|
1275
|
+
# the *Amazon Connect Administrator Guide*.
|
1276
|
+
#
|
1277
|
+
#
|
1278
|
+
#
|
1279
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac
|
1280
|
+
# @return [Array<String>]
|
1281
|
+
#
|
1282
|
+
# @!attribute [rw] blocked_ips
|
1283
|
+
# A list of IP address range strings that are blocked from accessing
|
1284
|
+
# the Amazon Connect instance. For more information about how to
|
1285
|
+
# configure IP addresses, see [Configure IP address based access
|
1286
|
+
# control][1] in the *Amazon Connect Administrator Guide*.
|
1287
|
+
#
|
1288
|
+
#
|
1289
|
+
#
|
1290
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac
|
1291
|
+
# @return [Array<String>]
|
1292
|
+
#
|
1293
|
+
# @!attribute [rw] is_default
|
1294
|
+
# Shows whether the authentication profile is the default
|
1295
|
+
# authentication profile for the Amazon Connect instance. The default
|
1296
|
+
# authentication profile applies to all agents in an Amazon Connect
|
1297
|
+
# instance, unless overridden by another authentication profile.
|
1298
|
+
# @return [Boolean]
|
1299
|
+
#
|
1300
|
+
# @!attribute [rw] created_time
|
1301
|
+
# The timestamp when the authentication profile was created.
|
1302
|
+
# @return [Time]
|
1303
|
+
#
|
1304
|
+
# @!attribute [rw] last_modified_time
|
1305
|
+
# The timestamp when the authentication profile was last modified.
|
1306
|
+
# @return [Time]
|
1307
|
+
#
|
1308
|
+
# @!attribute [rw] last_modified_region
|
1309
|
+
# The Amazon Web Services Region where the authentication profile was
|
1310
|
+
# last modified.
|
1311
|
+
# @return [String]
|
1312
|
+
#
|
1313
|
+
# @!attribute [rw] periodic_session_duration
|
1314
|
+
# The short lived session duration configuration for users logged in
|
1315
|
+
# to Amazon Connect, in minutes. This value determines the maximum
|
1316
|
+
# possible time before an agent is authenticated. For more
|
1317
|
+
# information, see [Configure the session duration][1] in the *Amazon
|
1318
|
+
# Connect Administrator Guide*.
|
1319
|
+
#
|
1320
|
+
#
|
1321
|
+
#
|
1322
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts
|
1323
|
+
# @return [Integer]
|
1324
|
+
#
|
1325
|
+
# @!attribute [rw] max_session_duration
|
1326
|
+
# The long lived session duration for users logged in to Amazon
|
1327
|
+
# Connect, in minutes. After this time period, users must log in
|
1328
|
+
# again. For more information, see [Configure the session duration][1]
|
1329
|
+
# in the *Amazon Connect Administrator Guide*.
|
1330
|
+
#
|
1331
|
+
#
|
1332
|
+
#
|
1333
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts
|
1334
|
+
# @return [Integer]
|
1335
|
+
#
|
1336
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AuthenticationProfile AWS API Documentation
|
1337
|
+
#
|
1338
|
+
class AuthenticationProfile < Struct.new(
|
1339
|
+
:id,
|
1340
|
+
:arn,
|
1341
|
+
:name,
|
1342
|
+
:description,
|
1343
|
+
:allowed_ips,
|
1344
|
+
:blocked_ips,
|
1345
|
+
:is_default,
|
1346
|
+
:created_time,
|
1347
|
+
:last_modified_time,
|
1348
|
+
:last_modified_region,
|
1349
|
+
:periodic_session_duration,
|
1350
|
+
:max_session_duration)
|
1351
|
+
SENSITIVE = []
|
1352
|
+
include Aws::Structure
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
# This API is in preview release for Amazon Connect and is subject to
|
1356
|
+
# change. To request access to this API, contact Amazon Web Services
|
1357
|
+
# Support.
|
1358
|
+
#
|
1359
|
+
# A summary of a given authentication profile.
|
1360
|
+
#
|
1361
|
+
# @!attribute [rw] id
|
1362
|
+
# The unique identifier of the authentication profile.
|
1363
|
+
# @return [String]
|
1364
|
+
#
|
1365
|
+
# @!attribute [rw] arn
|
1366
|
+
# The Amazon Resource Name (ARN) of the authentication profile
|
1367
|
+
# summary.
|
1368
|
+
# @return [String]
|
1369
|
+
#
|
1370
|
+
# @!attribute [rw] name
|
1371
|
+
# The name of the authentication profile summary.
|
1372
|
+
# @return [String]
|
1373
|
+
#
|
1374
|
+
# @!attribute [rw] is_default
|
1375
|
+
# Shows whether the authentication profile is the default
|
1376
|
+
# authentication profile for the Amazon Connect instance. The default
|
1377
|
+
# authentication profile applies to all agents in an Amazon Connect
|
1378
|
+
# instance, unless overridden by another authentication profile.
|
1379
|
+
# @return [Boolean]
|
1380
|
+
#
|
1381
|
+
# @!attribute [rw] last_modified_time
|
1382
|
+
# The timestamp when the authentication profile summary was last
|
1383
|
+
# modified.
|
1384
|
+
# @return [Time]
|
1385
|
+
#
|
1386
|
+
# @!attribute [rw] last_modified_region
|
1387
|
+
# The Amazon Web Services Region when the authentication profile
|
1388
|
+
# summary was last modified.
|
1389
|
+
# @return [String]
|
1390
|
+
#
|
1391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AuthenticationProfileSummary AWS API Documentation
|
1392
|
+
#
|
1393
|
+
class AuthenticationProfileSummary < Struct.new(
|
1394
|
+
:id,
|
1395
|
+
:arn,
|
1396
|
+
:name,
|
1397
|
+
:is_default,
|
1398
|
+
:last_modified_time,
|
1399
|
+
:last_modified_region)
|
1400
|
+
SENSITIVE = []
|
1401
|
+
include Aws::Structure
|
1402
|
+
end
|
1403
|
+
|
1241
1404
|
# Information about available phone numbers.
|
1242
1405
|
#
|
1243
1406
|
# @!attribute [rw] phone_number
|
@@ -1830,7 +1993,7 @@ module Aws::Connect
|
|
1830
1993
|
# Request to CompleteAttachedFileUpload API
|
1831
1994
|
#
|
1832
1995
|
# @!attribute [rw] instance_id
|
1833
|
-
# The unique identifier of the Connect instance.
|
1996
|
+
# The unique identifier of the Amazon Connect instance.
|
1834
1997
|
# @return [String]
|
1835
1998
|
#
|
1836
1999
|
# @!attribute [rw] file_id
|
@@ -5379,6 +5542,40 @@ module Aws::Connect
|
|
5379
5542
|
include Aws::Structure
|
5380
5543
|
end
|
5381
5544
|
|
5545
|
+
# @!attribute [rw] authentication_profile_id
|
5546
|
+
# A unique identifier for the authentication profile.
|
5547
|
+
# @return [String]
|
5548
|
+
#
|
5549
|
+
# @!attribute [rw] instance_id
|
5550
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5551
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5552
|
+
#
|
5553
|
+
#
|
5554
|
+
#
|
5555
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5556
|
+
# @return [String]
|
5557
|
+
#
|
5558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeAuthenticationProfileRequest AWS API Documentation
|
5559
|
+
#
|
5560
|
+
class DescribeAuthenticationProfileRequest < Struct.new(
|
5561
|
+
:authentication_profile_id,
|
5562
|
+
:instance_id)
|
5563
|
+
SENSITIVE = []
|
5564
|
+
include Aws::Structure
|
5565
|
+
end
|
5566
|
+
|
5567
|
+
# @!attribute [rw] authentication_profile
|
5568
|
+
# The authentication profile object being described.
|
5569
|
+
# @return [Types::AuthenticationProfile]
|
5570
|
+
#
|
5571
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeAuthenticationProfileResponse AWS API Documentation
|
5572
|
+
#
|
5573
|
+
class DescribeAuthenticationProfileResponse < Struct.new(
|
5574
|
+
:authentication_profile)
|
5575
|
+
SENSITIVE = []
|
5576
|
+
include Aws::Structure
|
5577
|
+
end
|
5578
|
+
|
5382
5579
|
# @!attribute [rw] instance_id
|
5383
5580
|
# The identifier of the Amazon Connect instance. You can [find the
|
5384
5581
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -11544,6 +11741,53 @@ module Aws::Connect
|
|
11544
11741
|
include Aws::Structure
|
11545
11742
|
end
|
11546
11743
|
|
11744
|
+
# @!attribute [rw] instance_id
|
11745
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
11746
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
11747
|
+
#
|
11748
|
+
#
|
11749
|
+
#
|
11750
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
11751
|
+
# @return [String]
|
11752
|
+
#
|
11753
|
+
# @!attribute [rw] max_results
|
11754
|
+
# The maximum number of results to return per page.
|
11755
|
+
# @return [Integer]
|
11756
|
+
#
|
11757
|
+
# @!attribute [rw] next_token
|
11758
|
+
# The token for the next set of results. Use the value returned in the
|
11759
|
+
# previous response in the next request to retrieve the next set of
|
11760
|
+
# results.
|
11761
|
+
# @return [String]
|
11762
|
+
#
|
11763
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAuthenticationProfilesRequest AWS API Documentation
|
11764
|
+
#
|
11765
|
+
class ListAuthenticationProfilesRequest < Struct.new(
|
11766
|
+
:instance_id,
|
11767
|
+
:max_results,
|
11768
|
+
:next_token)
|
11769
|
+
SENSITIVE = []
|
11770
|
+
include Aws::Structure
|
11771
|
+
end
|
11772
|
+
|
11773
|
+
# @!attribute [rw] authentication_profile_summary_list
|
11774
|
+
# A summary of a given authentication profile.
|
11775
|
+
# @return [Array<Types::AuthenticationProfileSummary>]
|
11776
|
+
#
|
11777
|
+
# @!attribute [rw] next_token
|
11778
|
+
# If there are additional results, this is the token for the next set
|
11779
|
+
# of results.
|
11780
|
+
# @return [String]
|
11781
|
+
#
|
11782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAuthenticationProfilesResponse AWS API Documentation
|
11783
|
+
#
|
11784
|
+
class ListAuthenticationProfilesResponse < Struct.new(
|
11785
|
+
:authentication_profile_summary_list,
|
11786
|
+
:next_token)
|
11787
|
+
SENSITIVE = []
|
11788
|
+
include Aws::Structure
|
11789
|
+
end
|
11790
|
+
|
11547
11791
|
# @!attribute [rw] instance_id
|
11548
11792
|
# The identifier of the Amazon Connect instance. You can [find the
|
11549
11793
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -16930,7 +17174,7 @@ module Aws::Connect
|
|
16930
17174
|
end
|
16931
17175
|
|
16932
17176
|
# @!attribute [rw] contact_flows
|
16933
|
-
# Information about the
|
17177
|
+
# Information about the flows.
|
16934
17178
|
# @return [Array<Types::ContactFlow>]
|
16935
17179
|
#
|
16936
17180
|
# @!attribute [rw] next_token
|
@@ -18266,7 +18510,7 @@ module Aws::Connect
|
|
18266
18510
|
# @return [String]
|
18267
18511
|
#
|
18268
18512
|
# @!attribute [rw] instance_id
|
18269
|
-
# The unique identifier of the Connect instance.
|
18513
|
+
# The unique identifier of the Amazon Connect instance.
|
18270
18514
|
# @return [String]
|
18271
18515
|
#
|
18272
18516
|
# @!attribute [rw] file_name
|
@@ -19004,10 +19248,9 @@ module Aws::Connect
|
|
19004
19248
|
# @!attribute [rw] contact_flow_id
|
19005
19249
|
# The identifier of the flow for the call. To see the ContactFlowId in
|
19006
19250
|
# the Amazon Connect admin website, on the navigation menu go to
|
19007
|
-
# **Routing**, **
|
19008
|
-
#
|
19009
|
-
#
|
19010
|
-
# here in bold:
|
19251
|
+
# **Routing**, **Flows**. Choose the flow. On the flow page, under the
|
19252
|
+
# name of the flow, choose **Show additional flow information**. The
|
19253
|
+
# ContactFlowId is the last part of the ARN, shown here in bold:
|
19011
19254
|
#
|
19012
19255
|
# arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
|
19013
19256
|
# @return [String]
|
@@ -20180,6 +20423,77 @@ module Aws::Connect
|
|
20180
20423
|
include Aws::Structure
|
20181
20424
|
end
|
20182
20425
|
|
20426
|
+
# @!attribute [rw] authentication_profile_id
|
20427
|
+
# A unique identifier for the authentication profile.
|
20428
|
+
# @return [String]
|
20429
|
+
#
|
20430
|
+
# @!attribute [rw] instance_id
|
20431
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
20432
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
20433
|
+
#
|
20434
|
+
#
|
20435
|
+
#
|
20436
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
20437
|
+
# @return [String]
|
20438
|
+
#
|
20439
|
+
# @!attribute [rw] name
|
20440
|
+
# The name for the authentication profile.
|
20441
|
+
# @return [String]
|
20442
|
+
#
|
20443
|
+
# @!attribute [rw] description
|
20444
|
+
# The description for the authentication profile.
|
20445
|
+
# @return [String]
|
20446
|
+
#
|
20447
|
+
# @!attribute [rw] allowed_ips
|
20448
|
+
# A list of IP address range strings that are allowed to access the
|
20449
|
+
# instance. For more information on how to configure IP addresses,
|
20450
|
+
# see[Configure session timeouts][1] in the *Amazon Connect
|
20451
|
+
# Administrator Guide*.
|
20452
|
+
#
|
20453
|
+
#
|
20454
|
+
#
|
20455
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts
|
20456
|
+
# @return [Array<String>]
|
20457
|
+
#
|
20458
|
+
# @!attribute [rw] blocked_ips
|
20459
|
+
# A list of IP address range strings that are blocked from accessing
|
20460
|
+
# the instance. For more information on how to configure IP addresses,
|
20461
|
+
# For more information on how to configure IP addresses, see
|
20462
|
+
# [Configure IP-based access control][1] in the *Amazon Connect
|
20463
|
+
# Administrator Guide*.
|
20464
|
+
#
|
20465
|
+
#
|
20466
|
+
#
|
20467
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac
|
20468
|
+
# @return [Array<String>]
|
20469
|
+
#
|
20470
|
+
# @!attribute [rw] periodic_session_duration
|
20471
|
+
# The short lived session duration configuration for users logged in
|
20472
|
+
# to Amazon Connect, in minutes. This value determines the maximum
|
20473
|
+
# possible time before an agent is authenticated. For more
|
20474
|
+
# information, For more information on how to configure IP addresses,
|
20475
|
+
# see [Configure session timeouts][1] in the *Amazon Connect
|
20476
|
+
# Administrator Guide*.
|
20477
|
+
#
|
20478
|
+
#
|
20479
|
+
#
|
20480
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts
|
20481
|
+
# @return [Integer]
|
20482
|
+
#
|
20483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateAuthenticationProfileRequest AWS API Documentation
|
20484
|
+
#
|
20485
|
+
class UpdateAuthenticationProfileRequest < Struct.new(
|
20486
|
+
:authentication_profile_id,
|
20487
|
+
:instance_id,
|
20488
|
+
:name,
|
20489
|
+
:description,
|
20490
|
+
:allowed_ips,
|
20491
|
+
:blocked_ips,
|
20492
|
+
:periodic_session_duration)
|
20493
|
+
SENSITIVE = []
|
20494
|
+
include Aws::Structure
|
20495
|
+
end
|
20496
|
+
|
20183
20497
|
# The `UpdateCase` action definition.
|
20184
20498
|
#
|
20185
20499
|
# @!attribute [rw] fields
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -1210,6 +1211,17 @@ module Aws
|
|
1210
1211
|
) -> _DescribeAgentStatusResponseSuccess
|
1211
1212
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAgentStatusResponseSuccess
|
1212
1213
|
|
1214
|
+
interface _DescribeAuthenticationProfileResponseSuccess
|
1215
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAuthenticationProfileResponse]
|
1216
|
+
def authentication_profile: () -> Types::AuthenticationProfile
|
1217
|
+
end
|
1218
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_authentication_profile-instance_method
|
1219
|
+
def describe_authentication_profile: (
|
1220
|
+
authentication_profile_id: ::String,
|
1221
|
+
instance_id: ::String
|
1222
|
+
) -> _DescribeAuthenticationProfileResponseSuccess
|
1223
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAuthenticationProfileResponseSuccess
|
1224
|
+
|
1213
1225
|
interface _DescribeContactResponseSuccess
|
1214
1226
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContactResponse]
|
1215
1227
|
def contact: () -> Types::Contact
|
@@ -1896,6 +1908,19 @@ module Aws
|
|
1896
1908
|
) -> _ListApprovedOriginsResponseSuccess
|
1897
1909
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApprovedOriginsResponseSuccess
|
1898
1910
|
|
1911
|
+
interface _ListAuthenticationProfilesResponseSuccess
|
1912
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAuthenticationProfilesResponse]
|
1913
|
+
def authentication_profile_summary_list: () -> ::Array[Types::AuthenticationProfileSummary]
|
1914
|
+
def next_token: () -> ::String
|
1915
|
+
end
|
1916
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_authentication_profiles-instance_method
|
1917
|
+
def list_authentication_profiles: (
|
1918
|
+
instance_id: ::String,
|
1919
|
+
?max_results: ::Integer,
|
1920
|
+
?next_token: ::String
|
1921
|
+
) -> _ListAuthenticationProfilesResponseSuccess
|
1922
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAuthenticationProfilesResponseSuccess
|
1923
|
+
|
1899
1924
|
interface _ListBotsResponseSuccess
|
1900
1925
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListBotsResponse]
|
1901
1926
|
def lex_bots: () -> ::Array[Types::LexBotConfig]
|
@@ -3522,6 +3547,18 @@ module Aws
|
|
3522
3547
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3523
3548
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3524
3549
|
|
3550
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_authentication_profile-instance_method
|
3551
|
+
def update_authentication_profile: (
|
3552
|
+
authentication_profile_id: ::String,
|
3553
|
+
instance_id: ::String,
|
3554
|
+
?name: ::String,
|
3555
|
+
?description: ::String,
|
3556
|
+
?allowed_ips: Array[::String],
|
3557
|
+
?blocked_ips: Array[::String],
|
3558
|
+
?periodic_session_duration: ::Integer
|
3559
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3560
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3561
|
+
|
3525
3562
|
interface _UpdateContactResponseSuccess
|
3526
3563
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContactResponse]
|
3527
3564
|
end
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -330,6 +330,32 @@ module Aws::Connect
|
|
330
330
|
SENSITIVE: []
|
331
331
|
end
|
332
332
|
|
333
|
+
class AuthenticationProfile
|
334
|
+
attr_accessor id: ::String
|
335
|
+
attr_accessor arn: ::String
|
336
|
+
attr_accessor name: ::String
|
337
|
+
attr_accessor description: ::String
|
338
|
+
attr_accessor allowed_ips: ::Array[::String]
|
339
|
+
attr_accessor blocked_ips: ::Array[::String]
|
340
|
+
attr_accessor is_default: bool
|
341
|
+
attr_accessor created_time: ::Time
|
342
|
+
attr_accessor last_modified_time: ::Time
|
343
|
+
attr_accessor last_modified_region: ::String
|
344
|
+
attr_accessor periodic_session_duration: ::Integer
|
345
|
+
attr_accessor max_session_duration: ::Integer
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class AuthenticationProfileSummary
|
350
|
+
attr_accessor id: ::String
|
351
|
+
attr_accessor arn: ::String
|
352
|
+
attr_accessor name: ::String
|
353
|
+
attr_accessor is_default: bool
|
354
|
+
attr_accessor last_modified_time: ::Time
|
355
|
+
attr_accessor last_modified_region: ::String
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
333
359
|
class AvailableNumberSummary
|
334
360
|
attr_accessor phone_number: ::String
|
335
361
|
attr_accessor phone_number_country_code: ("AF" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BR" | "IO" | "VG" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CK" | "CR" | "HR" | "CU" | "CW" | "CY" | "CZ" | "CD" | "DK" | "DJ" | "DM" | "DO" | "TL" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "PF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "CI" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "KP" | "MP" | "NO" | "OM" | "PK" | "PW" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "CG" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "KR" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "VI" | "UG" | "UA" | "AE" | "GB" | "US" | "UY" | "UZ" | "VU" | "VA" | "VE" | "VN" | "WF" | "EH" | "YE" | "ZM" | "ZW")
|
@@ -1321,6 +1347,17 @@ module Aws::Connect
|
|
1321
1347
|
SENSITIVE: []
|
1322
1348
|
end
|
1323
1349
|
|
1350
|
+
class DescribeAuthenticationProfileRequest
|
1351
|
+
attr_accessor authentication_profile_id: ::String
|
1352
|
+
attr_accessor instance_id: ::String
|
1353
|
+
SENSITIVE: []
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
class DescribeAuthenticationProfileResponse
|
1357
|
+
attr_accessor authentication_profile: Types::AuthenticationProfile
|
1358
|
+
SENSITIVE: []
|
1359
|
+
end
|
1360
|
+
|
1324
1361
|
class DescribeContactEvaluationRequest
|
1325
1362
|
attr_accessor instance_id: ::String
|
1326
1363
|
attr_accessor evaluation_id: ::String
|
@@ -2605,6 +2642,19 @@ module Aws::Connect
|
|
2605
2642
|
SENSITIVE: []
|
2606
2643
|
end
|
2607
2644
|
|
2645
|
+
class ListAuthenticationProfilesRequest
|
2646
|
+
attr_accessor instance_id: ::String
|
2647
|
+
attr_accessor max_results: ::Integer
|
2648
|
+
attr_accessor next_token: ::String
|
2649
|
+
SENSITIVE: []
|
2650
|
+
end
|
2651
|
+
|
2652
|
+
class ListAuthenticationProfilesResponse
|
2653
|
+
attr_accessor authentication_profile_summary_list: ::Array[Types::AuthenticationProfileSummary]
|
2654
|
+
attr_accessor next_token: ::String
|
2655
|
+
SENSITIVE: []
|
2656
|
+
end
|
2657
|
+
|
2608
2658
|
class ListBotsRequest
|
2609
2659
|
attr_accessor instance_id: ::String
|
2610
2660
|
attr_accessor next_token: ::String
|
@@ -4756,6 +4806,17 @@ module Aws::Connect
|
|
4756
4806
|
SENSITIVE: []
|
4757
4807
|
end
|
4758
4808
|
|
4809
|
+
class UpdateAuthenticationProfileRequest
|
4810
|
+
attr_accessor authentication_profile_id: ::String
|
4811
|
+
attr_accessor instance_id: ::String
|
4812
|
+
attr_accessor name: ::String
|
4813
|
+
attr_accessor description: ::String
|
4814
|
+
attr_accessor allowed_ips: ::Array[::String]
|
4815
|
+
attr_accessor blocked_ips: ::Array[::String]
|
4816
|
+
attr_accessor periodic_session_duration: ::Integer
|
4817
|
+
SENSITIVE: []
|
4818
|
+
end
|
4819
|
+
|
4759
4820
|
class UpdateCaseActionDefinition
|
4760
4821
|
attr_accessor fields: ::Array[Types::FieldValue]
|
4761
4822
|
SENSITIVE: []
|
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.167.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-
|
11
|
+
date: 2024-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon Connect Service (Amazon Connect). This
|
48
48
|
gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|