aws-sdk-connect 1.275.0 → 1.277.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ea2ddefb29fc73631631d6d83e3424560b51714c1f7ad3e24ab1c8034fdf053
4
- data.tar.gz: f1676bf67985b35ff0b806e6de69021e489a37e374c7d0cbcbe1746c2507b791
3
+ metadata.gz: 7b432d1a7e3e35bd2cf6b7806f542b3c691592d94808b0b1461b9a861e8a842a
4
+ data.tar.gz: 46413b190e094e8dbeebcb7a1f03a558b546f9a3ee28cd7bbe0d69bdb192398c
5
5
  SHA512:
6
- metadata.gz: eb9ec276d78d1671689a0b926052120a8e6564a49fd732ce9096133afc8cbb157d3e263a3df758a211ad8d00ae116682b99b973251e63094423ff7f364b96991
7
- data.tar.gz: 9c031025cc901ad0b46e495d034c96935466eb215b20f9c8e8de7891f2807f731f39bcff1aa52f1f38b882ad74f7a77ec090d17922f19660d4582a94f9c39fa1
6
+ metadata.gz: 705cbdd9c87d89134b1394515cbd24df68b3170442fab9e5955ddb2ff055263b753710ef3679ecc36d7db7a482d180a4a00d28b4dbde2f516aa3d7fe6435df99
7
+ data.tar.gz: b997adbba1e777ceaa08ce03e843a0df97357c22556c37856c60b85bf97942a6848e2425a6895a7d48091d1fcef632e08265941fa822b29a29a6b34a6da2133b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.277.0 (2026-09-09)
5
+ ------------------
6
+
7
+ * Feature - Add metric configuration field to evaluation forms and ListEvaluationFormAIVersions API for retrieving AI-generated evaluation form versions
8
+
9
+ 1.276.0 (2026-09-08)
10
+ ------------------
11
+
12
+ * Feature - Releasing workload types feature. A proper launch announcement or details will follow up.
13
+
4
14
  1.275.0 (2026-09-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.275.0
1
+ 1.277.0
@@ -3505,6 +3505,10 @@ module Aws::Connect
3505
3505
  # @option params [Types::EvaluationFormLanguageConfiguration] :language_configuration
3506
3506
  # Configuration for language settings of the evaluation form.
3507
3507
  #
3508
+ # @option params [String] :ai_version
3509
+ # The AI version to use for the evaluation form. This specifies which AI
3510
+ # model version is used for automated evaluations.
3511
+ #
3508
3512
  # @return [Types::CreateEvaluationFormResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3509
3513
  #
3510
3514
  # * {Types::CreateEvaluationFormResponse#evaluation_form_id #evaluation_form_id} => String
@@ -3686,6 +3690,10 @@ module Aws::Connect
3686
3690
  # },
3687
3691
  # ],
3688
3692
  # },
3693
+ # metric_configuration: {
3694
+ # metric_type: "BUSINESS_OUTCOME", # required, accepts BUSINESS_OUTCOME
3695
+ # metric_name: "EvaluationFormMetricName", # required
3696
+ # },
3689
3697
  # },
3690
3698
  # },
3691
3699
  # ],
@@ -3725,6 +3733,7 @@ module Aws::Connect
3725
3733
  # language_configuration: {
3726
3734
  # form_language: "de-DE", # accepts de-DE, en-US, es-ES, fr-FR, it-IT, pt-BR, ja-JP, ko-KR, zh-CN, ms-MY
3727
3735
  # },
3736
+ # ai_version: "EvaluationFormAIVersion",
3728
3737
  # })
3729
3738
  #
3730
3739
  # @example Response structure
@@ -5053,10 +5062,19 @@ module Aws::Connect
5053
5062
  # media_concurrencies: [ # required
5054
5063
  # {
5055
5064
  # channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
5056
- # concurrency: 1, # required
5065
+ # concurrency: 1,
5057
5066
  # cross_channel_behavior: {
5058
5067
  # behavior_type: "ROUTE_CURRENT_CHANNEL_ONLY", # required, accepts ROUTE_CURRENT_CHANNEL_ONLY, ROUTE_ANY_CHANNEL
5059
5068
  # },
5069
+ # workload_type_concurrencies: [
5070
+ # {
5071
+ # workload_type: "WorkloadType", # required
5072
+ # concurrency: 1, # required
5073
+ # cross_channel_workload_behavior: {
5074
+ # channel_workload_behavior_type: "ROUTE_CURRENT_CHANNEL_CURRENT_WORKLOADTYPE_ONLY", # accepts ROUTE_CURRENT_CHANNEL_CURRENT_WORKLOADTYPE_ONLY, ROUTE_CURRENT_CHANNEL_ANY_WORKLOADTYPE_ONLY, ROUTE_ANY_CHANNEL_ANY_WORKLOAD_TYPE
5075
+ # },
5076
+ # },
5077
+ # ],
5060
5078
  # },
5061
5079
  # ],
5062
5080
  # tags: {
@@ -8531,6 +8549,8 @@ module Aws::Connect
8531
8549
  # resp.evaluation_form.items[0].question.scoring_configuration.score_thresholds[0].performance_category #=> String, one of "NEEDS_IMPROVEMENT", "EXCEEDS_EXPECTATIONS"
8532
8550
  # resp.evaluation_form.items[0].question.scoring_configuration.score_thresholds[0].min_score_percentage #=> Float
8533
8551
  # resp.evaluation_form.items[0].question.scoring_configuration.score_thresholds[0].max_score_percentage #=> Float
8552
+ # resp.evaluation_form.items[0].question.metric_configuration.metric_type #=> String, one of "BUSINESS_OUTCOME"
8553
+ # resp.evaluation_form.items[0].question.metric_configuration.metric_name #=> String
8534
8554
  # resp.evaluation_form.scoring_strategy.mode #=> String, one of "QUESTION_ONLY", "SECTION_ONLY", "POINTS_BASED"
8535
8555
  # resp.evaluation_form.scoring_strategy.status #=> String, one of "ENABLED", "DISABLED"
8536
8556
  # resp.evaluation_form.scoring_strategy.score_thresholds #=> Array
@@ -8544,6 +8564,7 @@ module Aws::Connect
8544
8564
  # resp.evaluation_form.review_configuration.review_notification_recipients[0].type #=> String, one of "USER_ID"
8545
8565
  # resp.evaluation_form.review_configuration.review_notification_recipients[0].value.user_id #=> String
8546
8566
  # resp.evaluation_form.review_configuration.eligibility_days #=> Integer
8567
+ # resp.evaluation_form.ai_version #=> String
8547
8568
  #
8548
8569
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactEvaluation AWS API Documentation
8549
8570
  #
@@ -9020,6 +9041,8 @@ module Aws::Connect
9020
9041
  # resp.evaluation_form.items[0].question.scoring_configuration.score_thresholds[0].performance_category #=> String, one of "NEEDS_IMPROVEMENT", "EXCEEDS_EXPECTATIONS"
9021
9042
  # resp.evaluation_form.items[0].question.scoring_configuration.score_thresholds[0].min_score_percentage #=> Float
9022
9043
  # resp.evaluation_form.items[0].question.scoring_configuration.score_thresholds[0].max_score_percentage #=> Float
9044
+ # resp.evaluation_form.items[0].question.metric_configuration.metric_type #=> String, one of "BUSINESS_OUTCOME"
9045
+ # resp.evaluation_form.items[0].question.metric_configuration.metric_name #=> String
9023
9046
  # resp.evaluation_form.scoring_strategy.mode #=> String, one of "QUESTION_ONLY", "SECTION_ONLY", "POINTS_BASED"
9024
9047
  # resp.evaluation_form.scoring_strategy.status #=> String, one of "ENABLED", "DISABLED"
9025
9048
  # resp.evaluation_form.scoring_strategy.score_thresholds #=> Array
@@ -9041,6 +9064,7 @@ module Aws::Connect
9041
9064
  # resp.evaluation_form.language_configuration.form_language #=> String, one of "de-DE", "en-US", "es-ES", "fr-FR", "it-IT", "pt-BR", "ja-JP", "ko-KR", "zh-CN", "ms-MY"
9042
9065
  # resp.evaluation_form.latest_validation_status #=> String, one of "IN_PROGRESS", "COMPLETED", "FAILED"
9043
9066
  # resp.evaluation_form.last_validation_time #=> Time
9067
+ # resp.evaluation_form.ai_version #=> String
9044
9068
  #
9045
9069
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeEvaluationForm AWS API Documentation
9046
9070
  #
@@ -9816,6 +9840,10 @@ module Aws::Connect
9816
9840
  # resp.routing_profile.media_concurrencies[0].channel #=> String, one of "VOICE", "CHAT", "TASK", "EMAIL"
9817
9841
  # resp.routing_profile.media_concurrencies[0].concurrency #=> Integer
9818
9842
  # resp.routing_profile.media_concurrencies[0].cross_channel_behavior.behavior_type #=> String, one of "ROUTE_CURRENT_CHANNEL_ONLY", "ROUTE_ANY_CHANNEL"
9843
+ # resp.routing_profile.media_concurrencies[0].workload_type_concurrencies #=> Array
9844
+ # resp.routing_profile.media_concurrencies[0].workload_type_concurrencies[0].workload_type #=> String
9845
+ # resp.routing_profile.media_concurrencies[0].workload_type_concurrencies[0].concurrency #=> Integer
9846
+ # resp.routing_profile.media_concurrencies[0].workload_type_concurrencies[0].cross_channel_workload_behavior.channel_workload_behavior_type #=> String, one of "ROUTE_CURRENT_CHANNEL_CURRENT_WORKLOADTYPE_ONLY", "ROUTE_CURRENT_CHANNEL_ANY_WORKLOADTYPE_ONLY", "ROUTE_ANY_CHANNEL_ANY_WORKLOAD_TYPE"
9819
9847
  # resp.routing_profile.default_outbound_queue_id #=> String
9820
9848
  # resp.routing_profile.tags #=> Hash
9821
9849
  # resp.routing_profile.tags["TagKey"] #=> String
@@ -16939,6 +16967,60 @@ module Aws::Connect
16939
16967
  req.send_request(options)
16940
16968
  end
16941
16969
 
16970
+ # Lists the available AI versions for evaluation forms in the specified
16971
+ # Connect Customer instance.
16972
+ #
16973
+ # @option params [required, String] :instance_id
16974
+ # The identifier of the Connect Customer instance. You can [find the
16975
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
16976
+ #
16977
+ #
16978
+ #
16979
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
16980
+ #
16981
+ # @option params [required, String] :contact_interaction_type
16982
+ # The contact interaction type for the evaluation form.
16983
+ #
16984
+ # @option params [Integer] :max_results
16985
+ # The maximum number of results to return per page.
16986
+ #
16987
+ # @option params [String] :next_token
16988
+ # The token for the next set of results. Use the value returned in the
16989
+ # previous response in the next request to retrieve the next set of
16990
+ # results.
16991
+ #
16992
+ # @return [Types::ListEvaluationFormAIVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16993
+ #
16994
+ # * {Types::ListEvaluationFormAIVersionsResponse#ai_version_summaries #ai_version_summaries} => Array<Types::EvaluationFormAIVersionSummary>
16995
+ # * {Types::ListEvaluationFormAIVersionsResponse#next_token #next_token} => String
16996
+ #
16997
+ # @example Request syntax with placeholder values
16998
+ #
16999
+ # resp = client.list_evaluation_form_ai_versions({
17000
+ # instance_id: "InstanceId", # required
17001
+ # contact_interaction_type: "AGENT", # required, accepts AGENT, AUTOMATED, CUSTOMER
17002
+ # max_results: 1,
17003
+ # next_token: "NextToken",
17004
+ # })
17005
+ #
17006
+ # @example Response structure
17007
+ #
17008
+ # resp.ai_version_summaries #=> Array
17009
+ # resp.ai_version_summaries[0].ai_version_name #=> String
17010
+ # resp.ai_version_summaries[0].ai_version_lifecycle.status #=> String, one of "LATEST", "PREVIEW", "ACTIVE", "DEPRECATED"
17011
+ # resp.ai_version_summaries[0].ai_version_lifecycle.start_of_life_time #=> Time
17012
+ # resp.ai_version_summaries[0].ai_version_lifecycle.end_of_life_time #=> Time
17013
+ # resp.next_token #=> String
17014
+ #
17015
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListEvaluationFormAIVersions AWS API Documentation
17016
+ #
17017
+ # @overload list_evaluation_form_ai_versions(params = {})
17018
+ # @param [Hash] params ({})
17019
+ def list_evaluation_form_ai_versions(params = {}, options = {})
17020
+ req = build_request(:list_evaluation_form_ai_versions, params)
17021
+ req.send_request(options)
17022
+ end
17023
+
16942
17024
  # Lists versions of an evaluation form in the specified Connect Customer
16943
17025
  # instance.
16944
17026
  #
@@ -21593,6 +21675,7 @@ module Aws::Connect
21593
21675
  # resp.evaluation_form_search_summary_list[0].contact_interaction_type #=> String, one of "AGENT", "AUTOMATED", "CUSTOMER"
21594
21676
  # resp.evaluation_form_search_summary_list[0].tags #=> Hash
21595
21677
  # resp.evaluation_form_search_summary_list[0].tags["TagKey"] #=> String
21678
+ # resp.evaluation_form_search_summary_list[0].ai_version #=> String
21596
21679
  # resp.next_token #=> String
21597
21680
  # resp.approximate_total_count #=> Integer
21598
21681
  #
@@ -22724,6 +22807,10 @@ module Aws::Connect
22724
22807
  # resp.routing_profiles[0].media_concurrencies[0].channel #=> String, one of "VOICE", "CHAT", "TASK", "EMAIL"
22725
22808
  # resp.routing_profiles[0].media_concurrencies[0].concurrency #=> Integer
22726
22809
  # resp.routing_profiles[0].media_concurrencies[0].cross_channel_behavior.behavior_type #=> String, one of "ROUTE_CURRENT_CHANNEL_ONLY", "ROUTE_ANY_CHANNEL"
22810
+ # resp.routing_profiles[0].media_concurrencies[0].workload_type_concurrencies #=> Array
22811
+ # resp.routing_profiles[0].media_concurrencies[0].workload_type_concurrencies[0].workload_type #=> String
22812
+ # resp.routing_profiles[0].media_concurrencies[0].workload_type_concurrencies[0].concurrency #=> Integer
22813
+ # resp.routing_profiles[0].media_concurrencies[0].workload_type_concurrencies[0].cross_channel_workload_behavior.channel_workload_behavior_type #=> String, one of "ROUTE_CURRENT_CHANNEL_CURRENT_WORKLOADTYPE_ONLY", "ROUTE_CURRENT_CHANNEL_ANY_WORKLOADTYPE_ONLY", "ROUTE_ANY_CHANNEL_ANY_WORKLOAD_TYPE"
22727
22814
  # resp.routing_profiles[0].default_outbound_queue_id #=> String
22728
22815
  # resp.routing_profiles[0].tags #=> Hash
22729
22816
  # resp.routing_profiles[0].tags["TagKey"] #=> String
@@ -24744,11 +24831,6 @@ module Aws::Connect
24744
24831
  # the currently activated version. If no version is activated for the
24745
24832
  # evaluation form, the contact evaluation cannot be started.
24746
24833
  #
24747
- # <note markdown="1"> Evaluations created through the public API do not contain answer
24748
- # values suggested from automation.
24749
- #
24750
- # </note>
24751
- #
24752
24834
  # @option params [required, String] :instance_id
24753
24835
  # The identifier of the Connect Customer instance. You can [find the
24754
24836
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -28269,6 +28351,10 @@ module Aws::Connect
28269
28351
  # @option params [Types::EvaluationFormLanguageConfiguration] :language_configuration
28270
28352
  # Configuration for language settings of the evaluation form.
28271
28353
  #
28354
+ # @option params [String] :ai_version
28355
+ # The AI version to use for the evaluation form. This specifies which AI
28356
+ # model version is used for automated evaluations.
28357
+ #
28272
28358
  # @return [Types::UpdateEvaluationFormResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
28273
28359
  #
28274
28360
  # * {Types::UpdateEvaluationFormResponse#evaluation_form_id #evaluation_form_id} => String
@@ -28454,6 +28540,10 @@ module Aws::Connect
28454
28540
  # },
28455
28541
  # ],
28456
28542
  # },
28543
+ # metric_configuration: {
28544
+ # metric_type: "BUSINESS_OUTCOME", # required, accepts BUSINESS_OUTCOME
28545
+ # metric_name: "EvaluationFormMetricName", # required
28546
+ # },
28457
28547
  # },
28458
28548
  # },
28459
28549
  # ],
@@ -28490,6 +28580,7 @@ module Aws::Connect
28490
28580
  # language_configuration: {
28491
28581
  # form_language: "de-DE", # accepts de-DE, en-US, es-ES, fr-FR, it-IT, pt-BR, ja-JP, ko-KR, zh-CN, ms-MY
28492
28582
  # },
28583
+ # ai_version: "EvaluationFormAIVersion",
28493
28584
  # })
28494
28585
  #
28495
28586
  # @example Response structure
@@ -29813,10 +29904,19 @@ module Aws::Connect
29813
29904
  # media_concurrencies: [ # required
29814
29905
  # {
29815
29906
  # channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
29816
- # concurrency: 1, # required
29907
+ # concurrency: 1,
29817
29908
  # cross_channel_behavior: {
29818
29909
  # behavior_type: "ROUTE_CURRENT_CHANNEL_ONLY", # required, accepts ROUTE_CURRENT_CHANNEL_ONLY, ROUTE_ANY_CHANNEL
29819
29910
  # },
29911
+ # workload_type_concurrencies: [
29912
+ # {
29913
+ # workload_type: "WorkloadType", # required
29914
+ # concurrency: 1, # required
29915
+ # cross_channel_workload_behavior: {
29916
+ # channel_workload_behavior_type: "ROUTE_CURRENT_CHANNEL_CURRENT_WORKLOADTYPE_ONLY", # accepts ROUTE_CURRENT_CHANNEL_CURRENT_WORKLOADTYPE_ONLY, ROUTE_CURRENT_CHANNEL_ANY_WORKLOADTYPE_ONLY, ROUTE_ANY_CHANNEL_ANY_WORKLOAD_TYPE
29917
+ # },
29918
+ # },
29919
+ # ],
29820
29920
  # },
29821
29921
  # ],
29822
29922
  # })
@@ -31436,7 +31536,7 @@ module Aws::Connect
31436
31536
  tracer: tracer
31437
31537
  )
31438
31538
  context[:gem_name] = 'aws-sdk-connect'
31439
- context[:gem_version] = '1.275.0'
31539
+ context[:gem_version] = '1.277.0'
31440
31540
  Seahorse::Client::Request.new(handlers, context)
31441
31541
  end
31442
31542
 
@@ -249,6 +249,7 @@ module Aws::Connect
249
249
  Channel = Shapes::StringShape.new(name: 'Channel')
250
250
  ChannelList = Shapes::ListShape.new(name: 'ChannelList')
251
251
  ChannelToCountMap = Shapes::MapShape.new(name: 'ChannelToCountMap')
252
+ ChannelWorkloadBehaviorType = Shapes::StringShape.new(name: 'ChannelWorkloadBehaviorType')
252
253
  Channels = Shapes::ListShape.new(name: 'Channels')
253
254
  ChatContactMetrics = Shapes::StructureShape.new(name: 'ChatContactMetrics')
254
255
  ChatContent = Shapes::StringShape.new(name: 'ChatContent')
@@ -468,6 +469,7 @@ module Aws::Connect
468
469
  CreatedByInfo = Shapes::UnionShape.new(name: 'CreatedByInfo')
469
470
  Credentials = Shapes::StructureShape.new(name: 'Credentials')
470
471
  CrossChannelBehavior = Shapes::StructureShape.new(name: 'CrossChannelBehavior')
472
+ CrossChannelWorkloadBehavior = Shapes::StructureShape.new(name: 'CrossChannelWorkloadBehavior')
471
473
  CurrentMetric = Shapes::StructureShape.new(name: 'CurrentMetric')
472
474
  CurrentMetricData = Shapes::StructureShape.new(name: 'CurrentMetricData')
473
475
  CurrentMetricDataCollections = Shapes::ListShape.new(name: 'CurrentMetricDataCollections')
@@ -792,6 +794,11 @@ module Aws::Connect
792
794
  EvaluationContactLensAnswerAnalysisDetails = Shapes::StructureShape.new(name: 'EvaluationContactLensAnswerAnalysisDetails')
793
795
  EvaluationContactParticipant = Shapes::StructureShape.new(name: 'EvaluationContactParticipant')
794
796
  EvaluationForm = Shapes::StructureShape.new(name: 'EvaluationForm')
797
+ EvaluationFormAIVersion = Shapes::StringShape.new(name: 'EvaluationFormAIVersion')
798
+ EvaluationFormAIVersionLifecycle = Shapes::StructureShape.new(name: 'EvaluationFormAIVersionLifecycle')
799
+ EvaluationFormAIVersionStatus = Shapes::StringShape.new(name: 'EvaluationFormAIVersionStatus')
800
+ EvaluationFormAIVersionSummary = Shapes::StructureShape.new(name: 'EvaluationFormAIVersionSummary')
801
+ EvaluationFormAIVersionSummaryList = Shapes::ListShape.new(name: 'EvaluationFormAIVersionSummaryList')
795
802
  EvaluationFormAutoEvaluationConfiguration = Shapes::StructureShape.new(name: 'EvaluationFormAutoEvaluationConfiguration')
796
803
  EvaluationFormContent = Shapes::StructureShape.new(name: 'EvaluationFormContent')
797
804
  EvaluationFormDescription = Shapes::StringShape.new(name: 'EvaluationFormDescription')
@@ -814,6 +821,9 @@ module Aws::Connect
814
821
  EvaluationFormItemsList = Shapes::ListShape.new(name: 'EvaluationFormItemsList')
815
822
  EvaluationFormLanguageCode = Shapes::StringShape.new(name: 'EvaluationFormLanguageCode')
816
823
  EvaluationFormLanguageConfiguration = Shapes::StructureShape.new(name: 'EvaluationFormLanguageConfiguration')
824
+ EvaluationFormMetricConfiguration = Shapes::StructureShape.new(name: 'EvaluationFormMetricConfiguration')
825
+ EvaluationFormMetricName = Shapes::StringShape.new(name: 'EvaluationFormMetricName')
826
+ EvaluationFormMetricType = Shapes::StringShape.new(name: 'EvaluationFormMetricType')
817
827
  EvaluationFormMultiSelectQuestionAutomation = Shapes::StructureShape.new(name: 'EvaluationFormMultiSelectQuestionAutomation')
818
828
  EvaluationFormMultiSelectQuestionAutomationOption = Shapes::UnionShape.new(name: 'EvaluationFormMultiSelectQuestionAutomationOption')
819
829
  EvaluationFormMultiSelectQuestionAutomationOptionList = Shapes::ListShape.new(name: 'EvaluationFormMultiSelectQuestionAutomationOptionList')
@@ -1195,6 +1205,8 @@ module Aws::Connect
1195
1205
  ListDefaultVocabulariesResponse = Shapes::StructureShape.new(name: 'ListDefaultVocabulariesResponse')
1196
1206
  ListEntitySecurityProfilesRequest = Shapes::StructureShape.new(name: 'ListEntitySecurityProfilesRequest')
1197
1207
  ListEntitySecurityProfilesResponse = Shapes::StructureShape.new(name: 'ListEntitySecurityProfilesResponse')
1208
+ ListEvaluationFormAIVersionsRequest = Shapes::StructureShape.new(name: 'ListEvaluationFormAIVersionsRequest')
1209
+ ListEvaluationFormAIVersionsResponse = Shapes::StructureShape.new(name: 'ListEvaluationFormAIVersionsResponse')
1198
1210
  ListEvaluationFormVersionsRequest = Shapes::StructureShape.new(name: 'ListEvaluationFormVersionsRequest')
1199
1211
  ListEvaluationFormVersionsResponse = Shapes::StructureShape.new(name: 'ListEvaluationFormVersionsResponse')
1200
1212
  ListEvaluationFormsRequest = Shapes::StructureShape.new(name: 'ListEvaluationFormsRequest')
@@ -2322,6 +2334,10 @@ module Aws::Connect
2322
2334
  WidgetDestination = Shapes::StructureShape.new(name: 'WidgetDestination')
2323
2335
  WidgetId = Shapes::StringShape.new(name: 'WidgetId')
2324
2336
  WisdomInfo = Shapes::StructureShape.new(name: 'WisdomInfo')
2337
+ WorkloadType = Shapes::StringShape.new(name: 'WorkloadType')
2338
+ WorkloadTypeConcurrencies = Shapes::ListShape.new(name: 'WorkloadTypeConcurrencies')
2339
+ WorkloadTypeConcurrency = Shapes::StructureShape.new(name: 'WorkloadTypeConcurrency')
2340
+ WorkloadTypeConcurrencyType = Shapes::IntegerShape.new(name: 'WorkloadTypeConcurrencyType')
2325
2341
  Workspace = Shapes::StructureShape.new(name: 'Workspace')
2326
2342
  WorkspaceAssociatedResourceId = Shapes::StringShape.new(name: 'WorkspaceAssociatedResourceId')
2327
2343
  WorkspaceAssociatedResourceName = Shapes::StringShape.new(name: 'WorkspaceAssociatedResourceName')
@@ -3647,6 +3663,7 @@ module Aws::Connect
3647
3663
  CreateEvaluationFormRequest.add_member(:review_configuration, Shapes::ShapeRef.new(shape: EvaluationReviewConfiguration, location_name: "ReviewConfiguration"))
3648
3664
  CreateEvaluationFormRequest.add_member(:target_configuration, Shapes::ShapeRef.new(shape: EvaluationFormTargetConfiguration, location_name: "TargetConfiguration"))
3649
3665
  CreateEvaluationFormRequest.add_member(:language_configuration, Shapes::ShapeRef.new(shape: EvaluationFormLanguageConfiguration, location_name: "LanguageConfiguration"))
3666
+ CreateEvaluationFormRequest.add_member(:ai_version, Shapes::ShapeRef.new(shape: EvaluationFormAIVersion, location_name: "AIVersion"))
3650
3667
  CreateEvaluationFormRequest.struct_class = Types::CreateEvaluationFormRequest
3651
3668
 
3652
3669
  CreateEvaluationFormResponse.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
@@ -4029,6 +4046,9 @@ module Aws::Connect
4029
4046
  CrossChannelBehavior.add_member(:behavior_type, Shapes::ShapeRef.new(shape: BehaviorType, required: true, location_name: "BehaviorType"))
4030
4047
  CrossChannelBehavior.struct_class = Types::CrossChannelBehavior
4031
4048
 
4049
+ CrossChannelWorkloadBehavior.add_member(:channel_workload_behavior_type, Shapes::ShapeRef.new(shape: ChannelWorkloadBehaviorType, location_name: "ChannelWorkloadBehaviorType"))
4050
+ CrossChannelWorkloadBehavior.struct_class = Types::CrossChannelWorkloadBehavior
4051
+
4032
4052
  CurrentMetric.add_member(:name, Shapes::ShapeRef.new(shape: CurrentMetricName, location_name: "Name"))
4033
4053
  CurrentMetric.add_member(:metric_id, Shapes::ShapeRef.new(shape: CurrentMetricId, location_name: "MetricId"))
4034
4054
  CurrentMetric.add_member(:unit, Shapes::ShapeRef.new(shape: Unit, location_name: "Unit"))
@@ -5060,8 +5080,20 @@ module Aws::Connect
5060
5080
  EvaluationForm.add_member(:language_configuration, Shapes::ShapeRef.new(shape: EvaluationFormLanguageConfiguration, location_name: "LanguageConfiguration"))
5061
5081
  EvaluationForm.add_member(:latest_validation_status, Shapes::ShapeRef.new(shape: EvaluationFormValidationStatus, location_name: "LatestValidationStatus"))
5062
5082
  EvaluationForm.add_member(:last_validation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastValidationTime"))
5083
+ EvaluationForm.add_member(:ai_version, Shapes::ShapeRef.new(shape: EvaluationFormAIVersion, location_name: "AIVersion"))
5063
5084
  EvaluationForm.struct_class = Types::EvaluationForm
5064
5085
 
5086
+ EvaluationFormAIVersionLifecycle.add_member(:status, Shapes::ShapeRef.new(shape: EvaluationFormAIVersionStatus, required: true, location_name: "Status"))
5087
+ EvaluationFormAIVersionLifecycle.add_member(:start_of_life_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "StartOfLifeTime"))
5088
+ EvaluationFormAIVersionLifecycle.add_member(:end_of_life_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndOfLifeTime"))
5089
+ EvaluationFormAIVersionLifecycle.struct_class = Types::EvaluationFormAIVersionLifecycle
5090
+
5091
+ EvaluationFormAIVersionSummary.add_member(:ai_version_name, Shapes::ShapeRef.new(shape: EvaluationFormAIVersion, required: true, location_name: "AIVersionName"))
5092
+ EvaluationFormAIVersionSummary.add_member(:ai_version_lifecycle, Shapes::ShapeRef.new(shape: EvaluationFormAIVersionLifecycle, required: true, location_name: "AIVersionLifecycle"))
5093
+ EvaluationFormAIVersionSummary.struct_class = Types::EvaluationFormAIVersionSummary
5094
+
5095
+ EvaluationFormAIVersionSummaryList.member = Shapes::ShapeRef.new(shape: EvaluationFormAIVersionSummary)
5096
+
5065
5097
  EvaluationFormAutoEvaluationConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
5066
5098
  EvaluationFormAutoEvaluationConfiguration.struct_class = Types::EvaluationFormAutoEvaluationConfiguration
5067
5099
 
@@ -5076,6 +5108,7 @@ module Aws::Connect
5076
5108
  EvaluationFormContent.add_member(:target_configuration, Shapes::ShapeRef.new(shape: EvaluationFormTargetConfiguration, location_name: "TargetConfiguration"))
5077
5109
  EvaluationFormContent.add_member(:language_configuration, Shapes::ShapeRef.new(shape: EvaluationFormLanguageConfiguration, location_name: "LanguageConfiguration"))
5078
5110
  EvaluationFormContent.add_member(:review_configuration, Shapes::ShapeRef.new(shape: EvaluationReviewConfiguration, location_name: "ReviewConfiguration"))
5111
+ EvaluationFormContent.add_member(:ai_version, Shapes::ShapeRef.new(shape: EvaluationFormAIVersion, location_name: "AIVersion"))
5079
5112
  EvaluationFormContent.struct_class = Types::EvaluationFormContent
5080
5113
 
5081
5114
  EvaluationFormItem.add_member(:section, Shapes::ShapeRef.new(shape: EvaluationFormSection, location_name: "Section"))
@@ -5125,6 +5158,10 @@ module Aws::Connect
5125
5158
  EvaluationFormLanguageConfiguration.add_member(:form_language, Shapes::ShapeRef.new(shape: EvaluationFormLanguageCode, location_name: "FormLanguage"))
5126
5159
  EvaluationFormLanguageConfiguration.struct_class = Types::EvaluationFormLanguageConfiguration
5127
5160
 
5161
+ EvaluationFormMetricConfiguration.add_member(:metric_type, Shapes::ShapeRef.new(shape: EvaluationFormMetricType, required: true, location_name: "MetricType"))
5162
+ EvaluationFormMetricConfiguration.add_member(:metric_name, Shapes::ShapeRef.new(shape: EvaluationFormMetricName, required: true, location_name: "MetricName"))
5163
+ EvaluationFormMetricConfiguration.struct_class = Types::EvaluationFormMetricConfiguration
5164
+
5128
5165
  EvaluationFormMultiSelectQuestionAutomation.add_member(:options, Shapes::ShapeRef.new(shape: EvaluationFormMultiSelectQuestionAutomationOptionList, location_name: "Options"))
5129
5166
  EvaluationFormMultiSelectQuestionAutomation.add_member(:default_option_ref_ids, Shapes::ShapeRef.new(shape: ReferenceIdList, location_name: "DefaultOptionRefIds"))
5130
5167
  EvaluationFormMultiSelectQuestionAutomation.add_member(:answer_source, Shapes::ShapeRef.new(shape: EvaluationFormQuestionAutomationAnswerSource, location_name: "AnswerSource"))
@@ -5186,6 +5223,7 @@ module Aws::Connect
5186
5223
  EvaluationFormQuestion.add_member(:enablement, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementConfiguration, location_name: "Enablement"))
5187
5224
  EvaluationFormQuestion.add_member(:weight, Shapes::ShapeRef.new(shape: EvaluationFormItemWeight, location_name: "Weight"))
5188
5225
  EvaluationFormQuestion.add_member(:scoring_configuration, Shapes::ShapeRef.new(shape: EvaluationFormQuestionScoringConfiguration, location_name: "ScoringConfiguration"))
5226
+ EvaluationFormQuestion.add_member(:metric_configuration, Shapes::ShapeRef.new(shape: EvaluationFormMetricConfiguration, location_name: "MetricConfiguration"))
5189
5227
  EvaluationFormQuestion.struct_class = Types::EvaluationFormQuestion
5190
5228
 
5191
5229
  EvaluationFormQuestionAutomationAnswerSource.add_member(:source_type, Shapes::ShapeRef.new(shape: EvaluationFormQuestionAutomationAnswerSourceType, required: true, location_name: "SourceType"))
@@ -5250,6 +5288,7 @@ module Aws::Connect
5250
5288
  EvaluationFormSearchSummary.add_member(:evaluation_form_language, Shapes::ShapeRef.new(shape: EvaluationFormLanguageCode, location_name: "EvaluationFormLanguage"))
5251
5289
  EvaluationFormSearchSummary.add_member(:contact_interaction_type, Shapes::ShapeRef.new(shape: ContactInteractionType, location_name: "ContactInteractionType"))
5252
5290
  EvaluationFormSearchSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
5291
+ EvaluationFormSearchSummary.add_member(:ai_version, Shapes::ShapeRef.new(shape: EvaluationFormAIVersion, location_name: "AIVersion"))
5253
5292
  EvaluationFormSearchSummary.struct_class = Types::EvaluationFormSearchSummary
5254
5293
 
5255
5294
  EvaluationFormSearchSummaryList.member = Shapes::ShapeRef.new(shape: EvaluationFormSearchSummary)
@@ -6416,6 +6455,16 @@ module Aws::Connect
6416
6455
  ListEntitySecurityProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
6417
6456
  ListEntitySecurityProfilesResponse.struct_class = Types::ListEntitySecurityProfilesResponse
6418
6457
 
6458
+ ListEvaluationFormAIVersionsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
6459
+ ListEvaluationFormAIVersionsRequest.add_member(:contact_interaction_type, Shapes::ShapeRef.new(shape: ContactInteractionType, required: true, location: "querystring", location_name: "contactInteractionType"))
6460
+ ListEvaluationFormAIVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults", metadata: {"box" => true}))
6461
+ ListEvaluationFormAIVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
6462
+ ListEvaluationFormAIVersionsRequest.struct_class = Types::ListEvaluationFormAIVersionsRequest
6463
+
6464
+ ListEvaluationFormAIVersionsResponse.add_member(:ai_version_summaries, Shapes::ShapeRef.new(shape: EvaluationFormAIVersionSummaryList, required: true, location_name: "AIVersionSummaries"))
6465
+ ListEvaluationFormAIVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
6466
+ ListEvaluationFormAIVersionsResponse.struct_class = Types::ListEvaluationFormAIVersionsResponse
6467
+
6419
6468
  ListEvaluationFormVersionsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
6420
6469
  ListEvaluationFormVersionsRequest.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "EvaluationFormId"))
6421
6470
  ListEvaluationFormVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults", metadata: {"box" => true}))
@@ -6936,8 +6985,9 @@ module Aws::Connect
6936
6985
  MediaConcurrencies.member = Shapes::ShapeRef.new(shape: MediaConcurrency)
6937
6986
 
6938
6987
  MediaConcurrency.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, required: true, location_name: "Channel"))
6939
- MediaConcurrency.add_member(:concurrency, Shapes::ShapeRef.new(shape: Concurrency, required: true, location_name: "Concurrency"))
6988
+ MediaConcurrency.add_member(:concurrency, Shapes::ShapeRef.new(shape: Concurrency, location_name: "Concurrency"))
6940
6989
  MediaConcurrency.add_member(:cross_channel_behavior, Shapes::ShapeRef.new(shape: CrossChannelBehavior, location_name: "CrossChannelBehavior"))
6990
+ MediaConcurrency.add_member(:workload_type_concurrencies, Shapes::ShapeRef.new(shape: WorkloadTypeConcurrencies, location_name: "WorkloadTypeConcurrencies"))
6941
6991
  MediaConcurrency.struct_class = Types::MediaConcurrency
6942
6992
 
6943
6993
  MediaItem.add_member(:type, Shapes::ShapeRef.new(shape: MediaType, location_name: "Type"))
@@ -9460,6 +9510,7 @@ module Aws::Connect
9460
9510
  UpdateEvaluationFormRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
9461
9511
  UpdateEvaluationFormRequest.add_member(:target_configuration, Shapes::ShapeRef.new(shape: EvaluationFormTargetConfiguration, location_name: "TargetConfiguration"))
9462
9512
  UpdateEvaluationFormRequest.add_member(:language_configuration, Shapes::ShapeRef.new(shape: EvaluationFormLanguageConfiguration, location_name: "LanguageConfiguration"))
9513
+ UpdateEvaluationFormRequest.add_member(:ai_version, Shapes::ShapeRef.new(shape: EvaluationFormAIVersion, location_name: "AIVersion"))
9463
9514
  UpdateEvaluationFormRequest.struct_class = Types::UpdateEvaluationFormRequest
9464
9515
 
9465
9516
  UpdateEvaluationFormResponse.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
@@ -10152,6 +10203,13 @@ module Aws::Connect
10152
10203
  WisdomInfo.add_member(:ai_agents, Shapes::ShapeRef.new(shape: AiAgents, location_name: "AiAgents"))
10153
10204
  WisdomInfo.struct_class = Types::WisdomInfo
10154
10205
 
10206
+ WorkloadTypeConcurrencies.member = Shapes::ShapeRef.new(shape: WorkloadTypeConcurrency)
10207
+
10208
+ WorkloadTypeConcurrency.add_member(:workload_type, Shapes::ShapeRef.new(shape: WorkloadType, required: true, location_name: "WorkloadType"))
10209
+ WorkloadTypeConcurrency.add_member(:concurrency, Shapes::ShapeRef.new(shape: WorkloadTypeConcurrencyType, required: true, location_name: "Concurrency"))
10210
+ WorkloadTypeConcurrency.add_member(:cross_channel_workload_behavior, Shapes::ShapeRef.new(shape: CrossChannelWorkloadBehavior, location_name: "CrossChannelWorkloadBehavior"))
10211
+ WorkloadTypeConcurrency.struct_class = Types::WorkloadTypeConcurrency
10212
+
10155
10213
  Workspace.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
10156
10214
  Workspace.add_member(:id, Shapes::ShapeRef.new(shape: WorkspaceId, required: true, location_name: "Id"))
10157
10215
  Workspace.add_member(:name, Shapes::ShapeRef.new(shape: WorkspaceName, required: true, location_name: "Name"))
@@ -13328,6 +13386,18 @@ module Aws::Connect
13328
13386
  )
13329
13387
  end)
13330
13388
 
13389
+ api.add_operation(:list_evaluation_form_ai_versions, Seahorse::Model::Operation.new.tap do |o|
13390
+ o.name = "ListEvaluationFormAIVersions"
13391
+ o.http_method = "GET"
13392
+ o.http_request_uri = "/instances/{InstanceId}/evaluation-form-ai-versions"
13393
+ o.input = Shapes::ShapeRef.new(shape: ListEvaluationFormAIVersionsRequest)
13394
+ o.output = Shapes::ShapeRef.new(shape: ListEvaluationFormAIVersionsResponse)
13395
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
13396
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
13397
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
13398
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
13399
+ end)
13400
+
13331
13401
  api.add_operation(:list_evaluation_form_versions, Seahorse::Model::Operation.new.tap do |o|
13332
13402
  o.name = "ListEvaluationFormVersions"
13333
13403
  o.http_method = "GET"
@@ -6384,6 +6384,11 @@ module Aws::Connect
6384
6384
  # Configuration for language settings of the evaluation form.
6385
6385
  # @return [Types::EvaluationFormLanguageConfiguration]
6386
6386
  #
6387
+ # @!attribute [rw] ai_version
6388
+ # The AI version to use for the evaluation form. This specifies which
6389
+ # AI model version is used for automated evaluations.
6390
+ # @return [String]
6391
+ #
6387
6392
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateEvaluationFormRequest AWS API Documentation
6388
6393
  #
6389
6394
  class CreateEvaluationFormRequest < Struct.new(
@@ -6398,7 +6403,8 @@ module Aws::Connect
6398
6403
  :tags,
6399
6404
  :review_configuration,
6400
6405
  :target_configuration,
6401
- :language_configuration)
6406
+ :language_configuration,
6407
+ :ai_version)
6402
6408
  SENSITIVE = []
6403
6409
  include Aws::Structure
6404
6410
  end
@@ -8645,6 +8651,23 @@ module Aws::Connect
8645
8651
  include Aws::Structure
8646
8652
  end
8647
8653
 
8654
+ # Defines the cross-channel and workload type routing behavior that
8655
+ # allows an agent working on a contact to be offered a contact from a
8656
+ # different channel or workload type.
8657
+ #
8658
+ # @!attribute [rw] channel_workload_behavior_type
8659
+ # Specifies the routing behavior for an agent handling their current
8660
+ # channel and workload type.
8661
+ # @return [String]
8662
+ #
8663
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CrossChannelWorkloadBehavior AWS API Documentation
8664
+ #
8665
+ class CrossChannelWorkloadBehavior < Struct.new(
8666
+ :channel_workload_behavior_type)
8667
+ SENSITIVE = []
8668
+ include Aws::Structure
8669
+ end
8670
+
8648
8671
  # Contains information about a real-time metric. For a description of
8649
8672
  # each metric, see [Metrics definitions][1] in the *Connect Customer
8650
8673
  # Administrator Guide*.
@@ -13496,6 +13519,11 @@ module Aws::Connect
13496
13519
  # evaluation form.
13497
13520
  # @return [Time]
13498
13521
  #
13522
+ # @!attribute [rw] ai_version
13523
+ # The AI version to use for the evaluation form. This specifies which
13524
+ # AI model version is used for automated evaluations.
13525
+ # @return [String]
13526
+ #
13499
13527
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationForm AWS API Documentation
13500
13528
  #
13501
13529
  class EvaluationForm < Struct.new(
@@ -13518,7 +13546,66 @@ module Aws::Connect
13518
13546
  :target_configuration,
13519
13547
  :language_configuration,
13520
13548
  :latest_validation_status,
13521
- :last_validation_time)
13549
+ :last_validation_time,
13550
+ :ai_version)
13551
+ SENSITIVE = []
13552
+ include Aws::Structure
13553
+ end
13554
+
13555
+ # Contains the status and availability dates for an AI version,
13556
+ # indicating when the version became active and when it reaches end of
13557
+ # life.
13558
+ #
13559
+ # @!attribute [rw] status
13560
+ # The status of the AI version. Valid values:
13561
+ #
13562
+ # * `Latest` - The most recent AI version.
13563
+ #
13564
+ # * `Preview` - An AI version available for preview.
13565
+ #
13566
+ # * `Active` - An AI version that is currently available.
13567
+ #
13568
+ # * `Deprecated` - An AI version that is no longer recommended for
13569
+ # use.
13570
+ #
13571
+ # * `Removed` - An AI version that is no longer available.
13572
+ # @return [String]
13573
+ #
13574
+ # @!attribute [rw] start_of_life_time
13575
+ # The timestamp for when this AI version became available.
13576
+ # @return [Time]
13577
+ #
13578
+ # @!attribute [rw] end_of_life_time
13579
+ # The timestamp when this AI version reaches or reached end of life.
13580
+ # @return [Time]
13581
+ #
13582
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormAIVersionLifecycle AWS API Documentation
13583
+ #
13584
+ class EvaluationFormAIVersionLifecycle < Struct.new(
13585
+ :status,
13586
+ :start_of_life_time,
13587
+ :end_of_life_time)
13588
+ SENSITIVE = []
13589
+ include Aws::Structure
13590
+ end
13591
+
13592
+ # Contains the name and lifecycle information for an AI version that you
13593
+ # can use when creating or updating an evaluation form.
13594
+ #
13595
+ # @!attribute [rw] ai_version_name
13596
+ # The name of the AI version.
13597
+ # @return [String]
13598
+ #
13599
+ # @!attribute [rw] ai_version_lifecycle
13600
+ # The lifecycle information for this AI version, including its status
13601
+ # and availability dates.
13602
+ # @return [Types::EvaluationFormAIVersionLifecycle]
13603
+ #
13604
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormAIVersionSummary AWS API Documentation
13605
+ #
13606
+ class EvaluationFormAIVersionSummary < Struct.new(
13607
+ :ai_version_name,
13608
+ :ai_version_lifecycle)
13522
13609
  SENSITIVE = []
13523
13610
  include Aws::Structure
13524
13611
  end
@@ -13587,6 +13674,11 @@ module Aws::Connect
13587
13674
  # content.
13588
13675
  # @return [Types::EvaluationReviewConfiguration]
13589
13676
  #
13677
+ # @!attribute [rw] ai_version
13678
+ # The AI version to use for the evaluation form. This specifies which
13679
+ # AI model version is used for automated evaluations.
13680
+ # @return [String]
13681
+ #
13590
13682
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormContent AWS API Documentation
13591
13683
  #
13592
13684
  class EvaluationFormContent < Struct.new(
@@ -13600,7 +13692,8 @@ module Aws::Connect
13600
13692
  :auto_evaluation_configuration,
13601
13693
  :target_configuration,
13602
13694
  :language_configuration,
13603
- :review_configuration)
13695
+ :review_configuration,
13696
+ :ai_version)
13604
13697
  SENSITIVE = []
13605
13698
  include Aws::Structure
13606
13699
  end
@@ -13785,6 +13878,37 @@ module Aws::Connect
13785
13878
  include Aws::Structure
13786
13879
  end
13787
13880
 
13881
+ # Information about the metric configuration for an evaluation form
13882
+ # question. Use this to associate a business outcome metric with a
13883
+ # question.
13884
+ #
13885
+ # @!attribute [rw] metric_type
13886
+ # The type of metric. Currently, only `BUSINESS_OUTCOME` is supported.
13887
+ # @return [String]
13888
+ #
13889
+ # @!attribute [rw] metric_name
13890
+ # The name of the metric. Valid values are:
13891
+ #
13892
+ # * `SALE_SUCCESS` – Sale success.
13893
+ #
13894
+ # * `CSAT` – Customer satisfaction.
13895
+ #
13896
+ # * `CHURN_PROPENSITY` – Churn propensity.
13897
+ #
13898
+ # * `SELF_SERVICE_SUCCESS` – Self-service success.
13899
+ #
13900
+ # * `PARTIAL_SELF_SERVICE_SUCCESS` – Partial self-service success.
13901
+ # @return [String]
13902
+ #
13903
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormMetricConfiguration AWS API Documentation
13904
+ #
13905
+ class EvaluationFormMetricConfiguration < Struct.new(
13906
+ :metric_type,
13907
+ :metric_name)
13908
+ SENSITIVE = []
13909
+ include Aws::Structure
13910
+ end
13911
+
13788
13912
  # Automation configuration for multi-select questions.
13789
13913
  #
13790
13914
  # @!attribute [rw] options
@@ -14037,6 +14161,11 @@ module Aws::Connect
14037
14161
  # The scoring configuration of the question.
14038
14162
  # @return [Types::EvaluationFormQuestionScoringConfiguration]
14039
14163
  #
14164
+ # @!attribute [rw] metric_configuration
14165
+ # The metric configuration for the question. Use this to associate a
14166
+ # business outcome metric with the question.
14167
+ # @return [Types::EvaluationFormMetricConfiguration]
14168
+ #
14040
14169
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormQuestion AWS API Documentation
14041
14170
  #
14042
14171
  class EvaluationFormQuestion < Struct.new(
@@ -14048,7 +14177,8 @@ module Aws::Connect
14048
14177
  :question_type_properties,
14049
14178
  :enablement,
14050
14179
  :weight,
14051
- :scoring_configuration)
14180
+ :scoring_configuration,
14181
+ :metric_configuration)
14052
14182
  SENSITIVE = []
14053
14183
  include Aws::Structure
14054
14184
  end
@@ -14323,6 +14453,11 @@ module Aws::Connect
14323
14453
  # "key2":"value2"} }.
14324
14454
  # @return [Hash<String,String>]
14325
14455
  #
14456
+ # @!attribute [rw] ai_version
14457
+ # The AI version to use for the evaluation form. This specifies which
14458
+ # AI model version is used for automated evaluations.
14459
+ # @return [String]
14460
+ #
14326
14461
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormSearchSummary AWS API Documentation
14327
14462
  #
14328
14463
  class EvaluationFormSearchSummary < Struct.new(
@@ -14342,7 +14477,8 @@ module Aws::Connect
14342
14477
  :auto_evaluation_enabled,
14343
14478
  :evaluation_form_language,
14344
14479
  :contact_interaction_type,
14345
- :tags)
14480
+ :tags,
14481
+ :ai_version)
14346
14482
  SENSITIVE = []
14347
14483
  include Aws::Structure
14348
14484
  end
@@ -22803,6 +22939,58 @@ module Aws::Connect
22803
22939
  include Aws::Structure
22804
22940
  end
22805
22941
 
22942
+ # @!attribute [rw] instance_id
22943
+ # The identifier of the Connect Customer instance. You can [find the
22944
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
22945
+ #
22946
+ #
22947
+ #
22948
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
22949
+ # @return [String]
22950
+ #
22951
+ # @!attribute [rw] contact_interaction_type
22952
+ # The contact interaction type for the evaluation form.
22953
+ # @return [String]
22954
+ #
22955
+ # @!attribute [rw] max_results
22956
+ # The maximum number of results to return per page.
22957
+ # @return [Integer]
22958
+ #
22959
+ # @!attribute [rw] next_token
22960
+ # The token for the next set of results. Use the value returned in the
22961
+ # previous response in the next request to retrieve the next set of
22962
+ # results.
22963
+ # @return [String]
22964
+ #
22965
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListEvaluationFormAIVersionsRequest AWS API Documentation
22966
+ #
22967
+ class ListEvaluationFormAIVersionsRequest < Struct.new(
22968
+ :instance_id,
22969
+ :contact_interaction_type,
22970
+ :max_results,
22971
+ :next_token)
22972
+ SENSITIVE = []
22973
+ include Aws::Structure
22974
+ end
22975
+
22976
+ # @!attribute [rw] ai_version_summaries
22977
+ # The list of AI version summaries.
22978
+ # @return [Array<Types::EvaluationFormAIVersionSummary>]
22979
+ #
22980
+ # @!attribute [rw] next_token
22981
+ # If there are additional results, this is the token for the next set
22982
+ # of results.
22983
+ # @return [String]
22984
+ #
22985
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListEvaluationFormAIVersionsResponse AWS API Documentation
22986
+ #
22987
+ class ListEvaluationFormAIVersionsResponse < Struct.new(
22988
+ :ai_version_summaries,
22989
+ :next_token)
22990
+ SENSITIVE = []
22991
+ include Aws::Structure
22992
+ end
22993
+
22806
22994
  # @!attribute [rw] instance_id
22807
22995
  # The identifier of the Connect Customer instance. You can [find the
22808
22996
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -25547,12 +25735,19 @@ module Aws::Connect
25547
25735
  # are currently working with a contact from a Voice channel.
25548
25736
  # @return [Types::CrossChannelBehavior]
25549
25737
  #
25738
+ # @!attribute [rw] workload_type_concurrencies
25739
+ # Defines the list of workload type concurrency configurations for a
25740
+ # channel. When provided, enables granular concurrency control based
25741
+ # on workload type values.
25742
+ # @return [Array<Types::WorkloadTypeConcurrency>]
25743
+ #
25550
25744
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/MediaConcurrency AWS API Documentation
25551
25745
  #
25552
25746
  class MediaConcurrency < Struct.new(
25553
25747
  :channel,
25554
25748
  :concurrency,
25555
- :cross_channel_behavior)
25749
+ :cross_channel_behavior,
25750
+ :workload_type_concurrencies)
25556
25751
  SENSITIVE = []
25557
25752
  include Aws::Structure
25558
25753
  end
@@ -37986,6 +38181,11 @@ module Aws::Connect
37986
38181
  # Configuration for language settings of the evaluation form.
37987
38182
  # @return [Types::EvaluationFormLanguageConfiguration]
37988
38183
  #
38184
+ # @!attribute [rw] ai_version
38185
+ # The AI version to use for the evaluation form. This specifies which
38186
+ # AI model version is used for automated evaluations.
38187
+ # @return [String]
38188
+ #
37989
38189
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateEvaluationFormRequest AWS API Documentation
37990
38190
  #
37991
38191
  class UpdateEvaluationFormRequest < Struct.new(
@@ -38002,7 +38202,8 @@ module Aws::Connect
38002
38202
  :as_draft,
38003
38203
  :client_token,
38004
38204
  :target_configuration,
38005
- :language_configuration)
38205
+ :language_configuration,
38206
+ :ai_version)
38006
38207
  SENSITIVE = []
38007
38208
  include Aws::Structure
38008
38209
  end
@@ -41538,6 +41739,40 @@ module Aws::Connect
41538
41739
  include Aws::Structure
41539
41740
  end
41540
41741
 
41742
+ # Defines the maximum number of contacts an agent can handle
41743
+ # simultaneously for a specific channel and workload type combination.
41744
+ #
41745
+ # @!attribute [rw] workload_type
41746
+ # The value of the workload type.
41747
+ # @return [String]
41748
+ #
41749
+ # @!attribute [rw] concurrency
41750
+ # The maximum number of contacts an agent can handle simultaneously
41751
+ # for a specific channel and workload type combination.
41752
+ #
41753
+ # Valid Range for `VOICE`: Minimum value of 1. Maximum value of 1.
41754
+ #
41755
+ # Valid Range for `CHAT`: Minimum value of 1. Maximum value of 10.
41756
+ #
41757
+ # Valid Range for `TASK`: Minimum value of 1. Maximum value of 10.
41758
+ # @return [Integer]
41759
+ #
41760
+ # @!attribute [rw] cross_channel_workload_behavior
41761
+ # Defines the cross-channel and workload type routing behavior for
41762
+ # each channel and workload type combination that is enabled for this
41763
+ # Routing Profile.
41764
+ # @return [Types::CrossChannelWorkloadBehavior]
41765
+ #
41766
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/WorkloadTypeConcurrency AWS API Documentation
41767
+ #
41768
+ class WorkloadTypeConcurrency < Struct.new(
41769
+ :workload_type,
41770
+ :concurrency,
41771
+ :cross_channel_workload_behavior)
41772
+ SENSITIVE = []
41773
+ include Aws::Structure
41774
+ end
41775
+
41541
41776
  # Contains information about a workspace, which defines the user
41542
41777
  # experience by mapping views to pages.
41543
41778
  #
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.275.0'
57
+ GEM_VERSION = '1.277.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -771,7 +771,8 @@ module Aws
771
771
  },
772
772
  ?language_configuration: {
773
773
  form_language: ("de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "ms-MY")?
774
- }
774
+ },
775
+ ?ai_version: ::String
775
776
  ) -> _CreateEvaluationFormResponseSuccess
776
777
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEvaluationFormResponseSuccess
777
778
 
@@ -1064,13 +1065,7 @@ module Aws
1064
1065
  }
1065
1066
  ],
1066
1067
  media_concurrencies: Array[
1067
- {
1068
- channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL"),
1069
- concurrency: ::Integer,
1070
- cross_channel_behavior: {
1071
- behavior_type: ("ROUTE_CURRENT_CHANNEL_ONLY" | "ROUTE_ANY_CHANNEL")
1072
- }?
1073
- }
1068
+ Params::media_concurrency
1074
1069
  ],
1075
1070
  ?tags: Hash[::String, ::String],
1076
1071
  ?agent_availability_timer: ("TIME_SINCE_LAST_ACTIVITY" | "TIME_SINCE_LAST_INBOUND")
@@ -3041,6 +3036,20 @@ module Aws
3041
3036
  ) -> _ListEntitySecurityProfilesResponseSuccess
3042
3037
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntitySecurityProfilesResponseSuccess
3043
3038
 
3039
+ interface _ListEvaluationFormAIVersionsResponseSuccess
3040
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEvaluationFormAIVersionsResponse]
3041
+ def ai_version_summaries: () -> ::Array[Types::EvaluationFormAIVersionSummary]
3042
+ def next_token: () -> ::String
3043
+ end
3044
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_evaluation_form_ai_versions-instance_method
3045
+ def list_evaluation_form_ai_versions: (
3046
+ instance_id: ::String,
3047
+ contact_interaction_type: ("AGENT" | "AUTOMATED" | "CUSTOMER"),
3048
+ ?max_results: ::Integer,
3049
+ ?next_token: ::String
3050
+ ) -> _ListEvaluationFormAIVersionsResponseSuccess
3051
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEvaluationFormAIVersionsResponseSuccess
3052
+
3044
3053
  interface _ListEvaluationFormVersionsResponseSuccess
3045
3054
  include ::Seahorse::Client::_ResponseSuccess[Types::ListEvaluationFormVersionsResponse]
3046
3055
  def evaluation_form_version_summary_list: () -> ::Array[Types::EvaluationFormVersionSummary]
@@ -5506,7 +5515,8 @@ module Aws
5506
5515
  },
5507
5516
  ?language_configuration: {
5508
5517
  form_language: ("de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "ms-MY")?
5509
- }
5518
+ },
5519
+ ?ai_version: ::String
5510
5520
  ) -> _UpdateEvaluationFormResponseSuccess
5511
5521
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEvaluationFormResponseSuccess
5512
5522
 
@@ -5790,13 +5800,7 @@ module Aws
5790
5800
  instance_id: ::String,
5791
5801
  routing_profile_id: ::String,
5792
5802
  media_concurrencies: Array[
5793
- {
5794
- channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL"),
5795
- concurrency: ::Integer,
5796
- cross_channel_behavior: {
5797
- behavior_type: ("ROUTE_CURRENT_CHANNEL_ONLY" | "ROUTE_ANY_CHANNEL")
5798
- }?
5799
- }
5803
+ Params::media_concurrency
5800
5804
  ]
5801
5805
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
5802
5806
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
data/sig/params.rbs CHANGED
@@ -261,7 +261,11 @@ module Aws
261
261
  question_type_properties: Params::evaluation_form_question_type_properties?,
262
262
  enablement: Params::evaluation_form_item_enablement_configuration?,
263
263
  weight: ::Float?,
264
- scoring_configuration: Params::evaluation_form_question_scoring_configuration?
264
+ scoring_configuration: Params::evaluation_form_question_scoring_configuration?,
265
+ metric_configuration: {
266
+ metric_type: ("BUSINESS_OUTCOME"),
267
+ metric_name: ::String
268
+ }?
265
269
  }
266
270
 
267
271
  type evaluation_form_item = {
@@ -438,6 +442,23 @@ module Aws
438
442
  }?
439
443
  }
440
444
 
445
+ type media_concurrency = {
446
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL"),
447
+ concurrency: ::Integer?,
448
+ cross_channel_behavior: {
449
+ behavior_type: ("ROUTE_CURRENT_CHANNEL_ONLY" | "ROUTE_ANY_CHANNEL")
450
+ }?,
451
+ workload_type_concurrencies: Array[
452
+ {
453
+ workload_type: ::String,
454
+ concurrency: ::Integer,
455
+ cross_channel_workload_behavior: {
456
+ channel_workload_behavior_type: ("ROUTE_CURRENT_CHANNEL_CURRENT_WORKLOADTYPE_ONLY" | "ROUTE_CURRENT_CHANNEL_ANY_WORKLOADTYPE_ONLY" | "ROUTE_ANY_CHANNEL_ANY_WORKLOAD_TYPE")?
457
+ }?
458
+ }
459
+ ]?
460
+ }
461
+
441
462
  type task_action_definition = {
442
463
  name: ::String,
443
464
  description: ::String?,
data/sig/types.rbs CHANGED
@@ -1525,6 +1525,7 @@ module Aws::Connect
1525
1525
  attr_accessor review_configuration: Types::EvaluationReviewConfiguration
1526
1526
  attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
1527
1527
  attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
1528
+ attr_accessor ai_version: ::String
1528
1529
  SENSITIVE: []
1529
1530
  end
1530
1531
 
@@ -2029,6 +2030,11 @@ module Aws::Connect
2029
2030
  SENSITIVE: []
2030
2031
  end
2031
2032
 
2033
+ class CrossChannelWorkloadBehavior
2034
+ attr_accessor channel_workload_behavior_type: ("ROUTE_CURRENT_CHANNEL_CURRENT_WORKLOADTYPE_ONLY" | "ROUTE_CURRENT_CHANNEL_ANY_WORKLOADTYPE_ONLY" | "ROUTE_ANY_CHANNEL_ANY_WORKLOAD_TYPE")
2035
+ SENSITIVE: []
2036
+ end
2037
+
2032
2038
  class CurrentMetric
2033
2039
  attr_accessor name: ("AGENTS_ONLINE" | "AGENTS_AVAILABLE" | "AGENTS_ON_CALL" | "AGENTS_NON_PRODUCTIVE" | "AGENTS_AFTER_CONTACT_WORK" | "AGENTS_ERROR" | "AGENTS_STAFFED" | "CONTACTS_IN_QUEUE" | "OLDEST_CONTACT_AGE" | "CONTACTS_SCHEDULED" | "AGENTS_ON_CONTACT" | "SLOTS_ACTIVE" | "SLOTS_AVAILABLE" | "ESTIMATED_WAIT_TIME")
2034
2040
  attr_accessor metric_id: ::String
@@ -3414,6 +3420,20 @@ module Aws::Connect
3414
3420
  attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
3415
3421
  attr_accessor latest_validation_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
3416
3422
  attr_accessor last_validation_time: ::Time
3423
+ attr_accessor ai_version: ::String
3424
+ SENSITIVE: []
3425
+ end
3426
+
3427
+ class EvaluationFormAIVersionLifecycle
3428
+ attr_accessor status: ("LATEST" | "PREVIEW" | "ACTIVE" | "DEPRECATED")
3429
+ attr_accessor start_of_life_time: ::Time
3430
+ attr_accessor end_of_life_time: ::Time
3431
+ SENSITIVE: []
3432
+ end
3433
+
3434
+ class EvaluationFormAIVersionSummary
3435
+ attr_accessor ai_version_name: ::String
3436
+ attr_accessor ai_version_lifecycle: Types::EvaluationFormAIVersionLifecycle
3417
3437
  SENSITIVE: []
3418
3438
  end
3419
3439
 
@@ -3434,6 +3454,7 @@ module Aws::Connect
3434
3454
  attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
3435
3455
  attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
3436
3456
  attr_accessor review_configuration: Types::EvaluationReviewConfiguration
3457
+ attr_accessor ai_version: ::String
3437
3458
  SENSITIVE: []
3438
3459
  end
3439
3460
 
@@ -3502,6 +3523,12 @@ module Aws::Connect
3502
3523
  SENSITIVE: []
3503
3524
  end
3504
3525
 
3526
+ class EvaluationFormMetricConfiguration
3527
+ attr_accessor metric_type: ("BUSINESS_OUTCOME")
3528
+ attr_accessor metric_name: ::String
3529
+ SENSITIVE: []
3530
+ end
3531
+
3505
3532
  class EvaluationFormMultiSelectQuestionAutomation
3506
3533
  attr_accessor options: ::Array[Types::EvaluationFormMultiSelectQuestionAutomationOption]
3507
3534
  attr_accessor default_option_ref_ids: ::Array[::String]
@@ -3579,6 +3606,7 @@ module Aws::Connect
3579
3606
  attr_accessor enablement: Types::EvaluationFormItemEnablementConfiguration
3580
3607
  attr_accessor weight: ::Float
3581
3608
  attr_accessor scoring_configuration: Types::EvaluationFormQuestionScoringConfiguration
3609
+ attr_accessor metric_configuration: Types::EvaluationFormMetricConfiguration
3582
3610
  SENSITIVE: []
3583
3611
  end
3584
3612
 
@@ -3661,6 +3689,7 @@ module Aws::Connect
3661
3689
  attr_accessor evaluation_form_language: ("de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "ms-MY")
3662
3690
  attr_accessor contact_interaction_type: ("AGENT" | "AUTOMATED" | "CUSTOMER")
3663
3691
  attr_accessor tags: ::Hash[::String, ::String]
3692
+ attr_accessor ai_version: ::String
3664
3693
  SENSITIVE: []
3665
3694
  end
3666
3695
 
@@ -5118,6 +5147,20 @@ module Aws::Connect
5118
5147
  SENSITIVE: []
5119
5148
  end
5120
5149
 
5150
+ class ListEvaluationFormAIVersionsRequest
5151
+ attr_accessor instance_id: ::String
5152
+ attr_accessor contact_interaction_type: ("AGENT" | "AUTOMATED" | "CUSTOMER")
5153
+ attr_accessor max_results: ::Integer
5154
+ attr_accessor next_token: ::String
5155
+ SENSITIVE: []
5156
+ end
5157
+
5158
+ class ListEvaluationFormAIVersionsResponse
5159
+ attr_accessor ai_version_summaries: ::Array[Types::EvaluationFormAIVersionSummary]
5160
+ attr_accessor next_token: ::String
5161
+ SENSITIVE: []
5162
+ end
5163
+
5121
5164
  class ListEvaluationFormVersionsRequest
5122
5165
  attr_accessor instance_id: ::String
5123
5166
  attr_accessor evaluation_form_id: ::String
@@ -5839,6 +5882,7 @@ module Aws::Connect
5839
5882
  attr_accessor channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
5840
5883
  attr_accessor concurrency: ::Integer
5841
5884
  attr_accessor cross_channel_behavior: Types::CrossChannelBehavior
5885
+ attr_accessor workload_type_concurrencies: ::Array[Types::WorkloadTypeConcurrency]
5842
5886
  SENSITIVE: []
5843
5887
  end
5844
5888
 
@@ -8871,6 +8915,7 @@ module Aws::Connect
8871
8915
  attr_accessor client_token: ::String
8872
8916
  attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
8873
8917
  attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
8918
+ attr_accessor ai_version: ::String
8874
8919
  SENSITIVE: []
8875
8920
  end
8876
8921
 
@@ -9717,6 +9762,13 @@ module Aws::Connect
9717
9762
  SENSITIVE: []
9718
9763
  end
9719
9764
 
9765
+ class WorkloadTypeConcurrency
9766
+ attr_accessor workload_type: ::String
9767
+ attr_accessor concurrency: ::Integer
9768
+ attr_accessor cross_channel_workload_behavior: Types::CrossChannelWorkloadBehavior
9769
+ SENSITIVE: []
9770
+ end
9771
+
9720
9772
  class Workspace
9721
9773
  attr_accessor visibility: ("ALL" | "ASSIGNED" | "NONE")
9722
9774
  attr_accessor id: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.275.0
4
+ version: 1.277.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.254.0
21
+ version: 3.255.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.254.0
31
+ version: 3.255.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement