aws-sdk-connect 1.165.0 → 1.166.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea7980d48285f64af20a1ad66529e0e315988fa50424155094487dede6a9f7b4
4
- data.tar.gz: e869b75cd034abd9a46f1ce53107c600a8f718755f93f1bb3c3719207757ad0f
3
+ metadata.gz: 7566d86da467fd0113485aa43132fe6894ce8203a48ee530d29ada6c4de7204c
4
+ data.tar.gz: 2b0bad53d4503e534155901f6747263e46296fb8110f575029bda66774b089fb
5
5
  SHA512:
6
- metadata.gz: 428e9fb4dd1fd173330134f612386068d3010d6bc01d10767011c9dc4843a69f2a8df42c8e009ca12d8244474df076a408a82ec4c2c6f29390387a16a0a238b2
7
- data.tar.gz: 0fcbbdffe9c707c20fa63fd2e3fdcefeba2629b2753d60314868336bab83d690c9d34f54335809b8381f6f8f70b0bad00d0a1b6ff1803d27926d623949c95f70
6
+ metadata.gz: 4d0ab3b8bdbdc7b974ad1fb32ac68f95f19e4d55e313725e152c94d43e712608e3fd5c637d75339da53ced56266b005a0dd41dcda3193d276c9ec98deac73b3a
7
+ data.tar.gz: 8e7e1011d04fce8ac56484d615d8a16aa6b90daaac24a2d1c9b50819547e1e22f0d1da489dc2ed33157c06bc7a8c56f29a1f52147bc5581f5ae5f3101678bda0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.166.0 (2024-07-01)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.165.0 (2024-06-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.165.0
1
+ 1.166.0
@@ -1528,7 +1528,7 @@ module Aws::Connect
1528
1528
  # the pre-signed URL provided in the StartAttachedFileUpload API.
1529
1529
  #
1530
1530
  # @option params [required, String] :instance_id
1531
- # The unique identifier of the Connect instance.
1531
+ # The unique identifier of the Amazon Connect instance.
1532
1532
  #
1533
1533
  # @option params [required, String] :file_id
1534
1534
  # The unique identifier of the attached file resource.
@@ -4508,6 +4508,60 @@ module Aws::Connect
4508
4508
  req.send_request(options)
4509
4509
  end
4510
4510
 
4511
+ # This API is in preview release for Amazon Connect and is subject to
4512
+ # change. To request access to this API, contact Amazon Web Services
4513
+ # Support.
4514
+ #
4515
+ # Describes the target authentication profile.
4516
+ #
4517
+ # @option params [required, String] :authentication_profile_id
4518
+ # A unique identifier for the authentication profile.
4519
+ #
4520
+ # @option params [required, String] :instance_id
4521
+ # The identifier of the Amazon Connect instance. You can [find the
4522
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
4523
+ #
4524
+ #
4525
+ #
4526
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
4527
+ #
4528
+ # @return [Types::DescribeAuthenticationProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4529
+ #
4530
+ # * {Types::DescribeAuthenticationProfileResponse#authentication_profile #authentication_profile} => Types::AuthenticationProfile
4531
+ #
4532
+ # @example Request syntax with placeholder values
4533
+ #
4534
+ # resp = client.describe_authentication_profile({
4535
+ # authentication_profile_id: "AuthenticationProfileId", # required
4536
+ # instance_id: "InstanceId", # required
4537
+ # })
4538
+ #
4539
+ # @example Response structure
4540
+ #
4541
+ # resp.authentication_profile.id #=> String
4542
+ # resp.authentication_profile.arn #=> String
4543
+ # resp.authentication_profile.name #=> String
4544
+ # resp.authentication_profile.description #=> String
4545
+ # resp.authentication_profile.allowed_ips #=> Array
4546
+ # resp.authentication_profile.allowed_ips[0] #=> String
4547
+ # resp.authentication_profile.blocked_ips #=> Array
4548
+ # resp.authentication_profile.blocked_ips[0] #=> String
4549
+ # resp.authentication_profile.is_default #=> Boolean
4550
+ # resp.authentication_profile.created_time #=> Time
4551
+ # resp.authentication_profile.last_modified_time #=> Time
4552
+ # resp.authentication_profile.last_modified_region #=> String
4553
+ # resp.authentication_profile.periodic_session_duration #=> Integer
4554
+ # resp.authentication_profile.max_session_duration #=> Integer
4555
+ #
4556
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeAuthenticationProfile AWS API Documentation
4557
+ #
4558
+ # @overload describe_authentication_profile(params = {})
4559
+ # @param [Hash] params ({})
4560
+ def describe_authentication_profile(params = {}, options = {})
4561
+ req = build_request(:describe_authentication_profile, params)
4562
+ req.send_request(options)
4563
+ end
4564
+
4511
4565
  # This API is in preview release for Amazon Connect and is subject to
4512
4566
  # change.
4513
4567
  #
@@ -9077,6 +9131,64 @@ module Aws::Connect
9077
9131
  req.send_request(options)
9078
9132
  end
9079
9133
 
9134
+ # This API is in preview release for Amazon Connect and is subject to
9135
+ # change. To request access to this API, contact Amazon Web Services
9136
+ # Support.
9137
+ #
9138
+ # Provides summary information about the authentication profiles in a
9139
+ # specified Amazon Connect instance.
9140
+ #
9141
+ # @option params [required, String] :instance_id
9142
+ # The identifier of the Amazon Connect instance. You can [find the
9143
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9144
+ #
9145
+ #
9146
+ #
9147
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9148
+ #
9149
+ # @option params [Integer] :max_results
9150
+ # The maximum number of results to return per page.
9151
+ #
9152
+ # @option params [String] :next_token
9153
+ # The token for the next set of results. Use the value returned in the
9154
+ # previous response in the next request to retrieve the next set of
9155
+ # results.
9156
+ #
9157
+ # @return [Types::ListAuthenticationProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9158
+ #
9159
+ # * {Types::ListAuthenticationProfilesResponse#authentication_profile_summary_list #authentication_profile_summary_list} => Array<Types::AuthenticationProfileSummary>
9160
+ # * {Types::ListAuthenticationProfilesResponse#next_token #next_token} => String
9161
+ #
9162
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
9163
+ #
9164
+ # @example Request syntax with placeholder values
9165
+ #
9166
+ # resp = client.list_authentication_profiles({
9167
+ # instance_id: "InstanceId", # required
9168
+ # max_results: 1,
9169
+ # next_token: "NextToken",
9170
+ # })
9171
+ #
9172
+ # @example Response structure
9173
+ #
9174
+ # resp.authentication_profile_summary_list #=> Array
9175
+ # resp.authentication_profile_summary_list[0].id #=> String
9176
+ # resp.authentication_profile_summary_list[0].arn #=> String
9177
+ # resp.authentication_profile_summary_list[0].name #=> String
9178
+ # resp.authentication_profile_summary_list[0].is_default #=> Boolean
9179
+ # resp.authentication_profile_summary_list[0].last_modified_time #=> Time
9180
+ # resp.authentication_profile_summary_list[0].last_modified_region #=> String
9181
+ # resp.next_token #=> String
9182
+ #
9183
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAuthenticationProfiles AWS API Documentation
9184
+ #
9185
+ # @overload list_authentication_profiles(params = {})
9186
+ # @param [Hash] params ({})
9187
+ def list_authentication_profiles(params = {}, options = {})
9188
+ req = build_request(:list_authentication_profiles, params)
9189
+ req.send_request(options)
9190
+ end
9191
+
9080
9192
  # This API is in preview release for Amazon Connect and is subject to
9081
9193
  # change.
9082
9194
  #
@@ -13483,7 +13595,7 @@ module Aws::Connect
13483
13595
  # Provides a pre-signed Amazon S3 URL in response for uploading your
13484
13596
  # content.
13485
13597
  #
13486
- # You may only use this API to upload attachments to a [Connect
13598
+ # You may only use this API to upload attachments to an [Amazon Connect
13487
13599
  # Case][1].
13488
13600
  #
13489
13601
  #
@@ -13504,7 +13616,7 @@ module Aws::Connect
13504
13616
  # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
13505
13617
  #
13506
13618
  # @option params [required, String] :instance_id
13507
- # The unique identifier of the Connect instance.
13619
+ # The unique identifier of the Amazon Connect instance.
13508
13620
  #
13509
13621
  # @option params [required, String] :file_name
13510
13622
  # A case-sensitive name of the attached file being uploaded.
@@ -14384,10 +14496,9 @@ module Aws::Connect
14384
14496
  # @option params [required, String] :contact_flow_id
14385
14497
  # The identifier of the flow for the call. To see the ContactFlowId in
14386
14498
  # the Amazon Connect admin website, on the navigation menu go to
14387
- # **Routing**, **Contact Flows**. Choose the flow. On the flow page,
14388
- # under the name of the flow, choose **Show additional flow
14389
- # information**. The ContactFlowId is the last part of the ARN, shown
14390
- # here in bold:
14499
+ # **Routing**, **Flows**. Choose the flow. On the flow page, under the
14500
+ # name of the flow, choose **Show additional flow information**. The
14501
+ # ContactFlowId is the last part of the ARN, shown here in bold:
14391
14502
  #
14392
14503
  # arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
14393
14504
  #
@@ -15030,6 +15141,84 @@ module Aws::Connect
15030
15141
  req.send_request(options)
15031
15142
  end
15032
15143
 
15144
+ # This API is in preview release for Amazon Connect and is subject to
15145
+ # change. To request access to this API, contact Amazon Web Services
15146
+ # Support.
15147
+ #
15148
+ # Updates the selected authentication profile.
15149
+ #
15150
+ # @option params [required, String] :authentication_profile_id
15151
+ # A unique identifier for the authentication profile.
15152
+ #
15153
+ # @option params [required, String] :instance_id
15154
+ # The identifier of the Amazon Connect instance. You can [find the
15155
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
15156
+ #
15157
+ #
15158
+ #
15159
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
15160
+ #
15161
+ # @option params [String] :name
15162
+ # The name for the authentication profile.
15163
+ #
15164
+ # @option params [String] :description
15165
+ # The description for the authentication profile.
15166
+ #
15167
+ # @option params [Array<String>] :allowed_ips
15168
+ # A list of IP address range strings that are allowed to access the
15169
+ # instance. For more information on how to configure IP addresses,
15170
+ # see[Configure session timeouts][1] in the *Amazon Connect
15171
+ # Administrator Guide*.
15172
+ #
15173
+ #
15174
+ #
15175
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts
15176
+ #
15177
+ # @option params [Array<String>] :blocked_ips
15178
+ # A list of IP address range strings that are blocked from accessing the
15179
+ # instance. For more information on how to configure IP addresses, For
15180
+ # more information on how to configure IP addresses, see [Configure
15181
+ # IP-based access control][1] in the *Amazon Connect Administrator
15182
+ # Guide*.
15183
+ #
15184
+ #
15185
+ #
15186
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac
15187
+ #
15188
+ # @option params [Integer] :periodic_session_duration
15189
+ # The short lived session duration configuration for users logged in to
15190
+ # Amazon Connect, in minutes. This value determines the maximum possible
15191
+ # time before an agent is authenticated. For more information, For more
15192
+ # information on how to configure IP addresses, see [Configure session
15193
+ # timeouts][1] in the *Amazon Connect Administrator Guide*.
15194
+ #
15195
+ #
15196
+ #
15197
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts
15198
+ #
15199
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
15200
+ #
15201
+ # @example Request syntax with placeholder values
15202
+ #
15203
+ # resp = client.update_authentication_profile({
15204
+ # authentication_profile_id: "AuthenticationProfileId", # required
15205
+ # instance_id: "InstanceId", # required
15206
+ # name: "AuthenticationProfileName",
15207
+ # description: "AuthenticationProfileDescription",
15208
+ # allowed_ips: ["IpCidr"],
15209
+ # blocked_ips: ["IpCidr"],
15210
+ # periodic_session_duration: 1,
15211
+ # })
15212
+ #
15213
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateAuthenticationProfile AWS API Documentation
15214
+ #
15215
+ # @overload update_authentication_profile(params = {})
15216
+ # @param [Hash] params ({})
15217
+ def update_authentication_profile(params = {}, options = {})
15218
+ req = build_request(:update_authentication_profile, params)
15219
+ req.send_request(options)
15220
+ end
15221
+
15033
15222
  # This API is in preview release for Amazon Connect and is subject to
15034
15223
  # change.
15035
15224
  #
@@ -17552,7 +17741,7 @@ module Aws::Connect
17552
17741
  params: params,
17553
17742
  config: config)
17554
17743
  context[:gem_name] = 'aws-sdk-connect'
17555
- context[:gem_version] = '1.165.0'
17744
+ context[:gem_version] = '1.166.0'
17556
17745
  Seahorse::Client::Request.new(handlers, context)
17557
17746
  end
17558
17747
 
@@ -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 contact flows.
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**, **Contact Flows**. Choose the flow. On the flow page,
19008
- # under the name of the flow, choose **Show additional flow
19009
- # information**. The ContactFlowId is the last part of the ARN, shown
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connect/customizations'
52
52
  # @!group service
53
53
  module Aws::Connect
54
54
 
55
- GEM_VERSION = '1.165.0'
55
+ GEM_VERSION = '1.166.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -1210,6 +1210,17 @@ module Aws
1210
1210
  ) -> _DescribeAgentStatusResponseSuccess
1211
1211
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAgentStatusResponseSuccess
1212
1212
 
1213
+ interface _DescribeAuthenticationProfileResponseSuccess
1214
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAuthenticationProfileResponse]
1215
+ def authentication_profile: () -> Types::AuthenticationProfile
1216
+ end
1217
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_authentication_profile-instance_method
1218
+ def describe_authentication_profile: (
1219
+ authentication_profile_id: ::String,
1220
+ instance_id: ::String
1221
+ ) -> _DescribeAuthenticationProfileResponseSuccess
1222
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAuthenticationProfileResponseSuccess
1223
+
1213
1224
  interface _DescribeContactResponseSuccess
1214
1225
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContactResponse]
1215
1226
  def contact: () -> Types::Contact
@@ -1896,6 +1907,19 @@ module Aws
1896
1907
  ) -> _ListApprovedOriginsResponseSuccess
1897
1908
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApprovedOriginsResponseSuccess
1898
1909
 
1910
+ interface _ListAuthenticationProfilesResponseSuccess
1911
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAuthenticationProfilesResponse]
1912
+ def authentication_profile_summary_list: () -> ::Array[Types::AuthenticationProfileSummary]
1913
+ def next_token: () -> ::String
1914
+ end
1915
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_authentication_profiles-instance_method
1916
+ def list_authentication_profiles: (
1917
+ instance_id: ::String,
1918
+ ?max_results: ::Integer,
1919
+ ?next_token: ::String
1920
+ ) -> _ListAuthenticationProfilesResponseSuccess
1921
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAuthenticationProfilesResponseSuccess
1922
+
1899
1923
  interface _ListBotsResponseSuccess
1900
1924
  include ::Seahorse::Client::_ResponseSuccess[Types::ListBotsResponse]
1901
1925
  def lex_bots: () -> ::Array[Types::LexBotConfig]
@@ -3522,6 +3546,18 @@ module Aws
3522
3546
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
3523
3547
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
3524
3548
 
3549
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_authentication_profile-instance_method
3550
+ def update_authentication_profile: (
3551
+ authentication_profile_id: ::String,
3552
+ instance_id: ::String,
3553
+ ?name: ::String,
3554
+ ?description: ::String,
3555
+ ?allowed_ips: Array[::String],
3556
+ ?blocked_ips: Array[::String],
3557
+ ?periodic_session_duration: ::Integer
3558
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
3559
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
3560
+
3525
3561
  interface _UpdateContactResponseSuccess
3526
3562
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContactResponse]
3527
3563
  end
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.165.0
4
+ version: 1.166.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-06-28 00:00:00.000000000 Z
11
+ date: 2024-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core