aws-sdk-connect 1.276.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +80 -6
- data/lib/aws-sdk-connect/client_api.rb +53 -0
- data/lib/aws-sdk-connect/types.rb +183 -6
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +18 -2
- data/sig/params.rbs +5 -1
- data/sig/types.rbs +39 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b432d1a7e3e35bd2cf6b7806f542b3c691592d94808b0b1461b9a861e8a842a
|
|
4
|
+
data.tar.gz: 46413b190e094e8dbeebcb7a1f03a558b546f9a3ee28cd7bbe0d69bdb192398c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 705cbdd9c87d89134b1394515cbd24df68b3170442fab9e5955ddb2ff055263b753710ef3679ecc36d7db7a482d180a4a00d28b4dbde2f516aa3d7fe6435df99
|
|
7
|
+
data.tar.gz: b997adbba1e777ceaa08ce03e843a0df97357c22556c37856c60b85bf97942a6848e2425a6895a7d48091d1fcef632e08265941fa822b29a29a6b34a6da2133b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
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
|
+
|
|
4
9
|
1.276.0 (2026-09-08)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
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
|
|
@@ -8540,6 +8549,8 @@ module Aws::Connect
|
|
|
8540
8549
|
# resp.evaluation_form.items[0].question.scoring_configuration.score_thresholds[0].performance_category #=> String, one of "NEEDS_IMPROVEMENT", "EXCEEDS_EXPECTATIONS"
|
|
8541
8550
|
# resp.evaluation_form.items[0].question.scoring_configuration.score_thresholds[0].min_score_percentage #=> Float
|
|
8542
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
|
|
8543
8554
|
# resp.evaluation_form.scoring_strategy.mode #=> String, one of "QUESTION_ONLY", "SECTION_ONLY", "POINTS_BASED"
|
|
8544
8555
|
# resp.evaluation_form.scoring_strategy.status #=> String, one of "ENABLED", "DISABLED"
|
|
8545
8556
|
# resp.evaluation_form.scoring_strategy.score_thresholds #=> Array
|
|
@@ -8553,6 +8564,7 @@ module Aws::Connect
|
|
|
8553
8564
|
# resp.evaluation_form.review_configuration.review_notification_recipients[0].type #=> String, one of "USER_ID"
|
|
8554
8565
|
# resp.evaluation_form.review_configuration.review_notification_recipients[0].value.user_id #=> String
|
|
8555
8566
|
# resp.evaluation_form.review_configuration.eligibility_days #=> Integer
|
|
8567
|
+
# resp.evaluation_form.ai_version #=> String
|
|
8556
8568
|
#
|
|
8557
8569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactEvaluation AWS API Documentation
|
|
8558
8570
|
#
|
|
@@ -9029,6 +9041,8 @@ module Aws::Connect
|
|
|
9029
9041
|
# resp.evaluation_form.items[0].question.scoring_configuration.score_thresholds[0].performance_category #=> String, one of "NEEDS_IMPROVEMENT", "EXCEEDS_EXPECTATIONS"
|
|
9030
9042
|
# resp.evaluation_form.items[0].question.scoring_configuration.score_thresholds[0].min_score_percentage #=> Float
|
|
9031
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
|
|
9032
9046
|
# resp.evaluation_form.scoring_strategy.mode #=> String, one of "QUESTION_ONLY", "SECTION_ONLY", "POINTS_BASED"
|
|
9033
9047
|
# resp.evaluation_form.scoring_strategy.status #=> String, one of "ENABLED", "DISABLED"
|
|
9034
9048
|
# resp.evaluation_form.scoring_strategy.score_thresholds #=> Array
|
|
@@ -9050,6 +9064,7 @@ module Aws::Connect
|
|
|
9050
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"
|
|
9051
9065
|
# resp.evaluation_form.latest_validation_status #=> String, one of "IN_PROGRESS", "COMPLETED", "FAILED"
|
|
9052
9066
|
# resp.evaluation_form.last_validation_time #=> Time
|
|
9067
|
+
# resp.evaluation_form.ai_version #=> String
|
|
9053
9068
|
#
|
|
9054
9069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeEvaluationForm AWS API Documentation
|
|
9055
9070
|
#
|
|
@@ -16952,6 +16967,60 @@ module Aws::Connect
|
|
|
16952
16967
|
req.send_request(options)
|
|
16953
16968
|
end
|
|
16954
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
|
+
|
|
16955
17024
|
# Lists versions of an evaluation form in the specified Connect Customer
|
|
16956
17025
|
# instance.
|
|
16957
17026
|
#
|
|
@@ -21606,6 +21675,7 @@ module Aws::Connect
|
|
|
21606
21675
|
# resp.evaluation_form_search_summary_list[0].contact_interaction_type #=> String, one of "AGENT", "AUTOMATED", "CUSTOMER"
|
|
21607
21676
|
# resp.evaluation_form_search_summary_list[0].tags #=> Hash
|
|
21608
21677
|
# resp.evaluation_form_search_summary_list[0].tags["TagKey"] #=> String
|
|
21678
|
+
# resp.evaluation_form_search_summary_list[0].ai_version #=> String
|
|
21609
21679
|
# resp.next_token #=> String
|
|
21610
21680
|
# resp.approximate_total_count #=> Integer
|
|
21611
21681
|
#
|
|
@@ -24761,11 +24831,6 @@ module Aws::Connect
|
|
|
24761
24831
|
# the currently activated version. If no version is activated for the
|
|
24762
24832
|
# evaluation form, the contact evaluation cannot be started.
|
|
24763
24833
|
#
|
|
24764
|
-
# <note markdown="1"> Evaluations created through the public API do not contain answer
|
|
24765
|
-
# values suggested from automation.
|
|
24766
|
-
#
|
|
24767
|
-
# </note>
|
|
24768
|
-
#
|
|
24769
24834
|
# @option params [required, String] :instance_id
|
|
24770
24835
|
# The identifier of the Connect Customer instance. You can [find the
|
|
24771
24836
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -28286,6 +28351,10 @@ module Aws::Connect
|
|
|
28286
28351
|
# @option params [Types::EvaluationFormLanguageConfiguration] :language_configuration
|
|
28287
28352
|
# Configuration for language settings of the evaluation form.
|
|
28288
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
|
+
#
|
|
28289
28358
|
# @return [Types::UpdateEvaluationFormResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
28290
28359
|
#
|
|
28291
28360
|
# * {Types::UpdateEvaluationFormResponse#evaluation_form_id #evaluation_form_id} => String
|
|
@@ -28471,6 +28540,10 @@ module Aws::Connect
|
|
|
28471
28540
|
# },
|
|
28472
28541
|
# ],
|
|
28473
28542
|
# },
|
|
28543
|
+
# metric_configuration: {
|
|
28544
|
+
# metric_type: "BUSINESS_OUTCOME", # required, accepts BUSINESS_OUTCOME
|
|
28545
|
+
# metric_name: "EvaluationFormMetricName", # required
|
|
28546
|
+
# },
|
|
28474
28547
|
# },
|
|
28475
28548
|
# },
|
|
28476
28549
|
# ],
|
|
@@ -28507,6 +28580,7 @@ module Aws::Connect
|
|
|
28507
28580
|
# language_configuration: {
|
|
28508
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
|
|
28509
28582
|
# },
|
|
28583
|
+
# ai_version: "EvaluationFormAIVersion",
|
|
28510
28584
|
# })
|
|
28511
28585
|
#
|
|
28512
28586
|
# @example Response structure
|
|
@@ -31462,7 +31536,7 @@ module Aws::Connect
|
|
|
31462
31536
|
tracer: tracer
|
|
31463
31537
|
)
|
|
31464
31538
|
context[:gem_name] = 'aws-sdk-connect'
|
|
31465
|
-
context[:gem_version] = '1.
|
|
31539
|
+
context[:gem_version] = '1.277.0'
|
|
31466
31540
|
Seahorse::Client::Request.new(handlers, context)
|
|
31467
31541
|
end
|
|
31468
31542
|
|
|
@@ -794,6 +794,11 @@ module Aws::Connect
|
|
|
794
794
|
EvaluationContactLensAnswerAnalysisDetails = Shapes::StructureShape.new(name: 'EvaluationContactLensAnswerAnalysisDetails')
|
|
795
795
|
EvaluationContactParticipant = Shapes::StructureShape.new(name: 'EvaluationContactParticipant')
|
|
796
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')
|
|
797
802
|
EvaluationFormAutoEvaluationConfiguration = Shapes::StructureShape.new(name: 'EvaluationFormAutoEvaluationConfiguration')
|
|
798
803
|
EvaluationFormContent = Shapes::StructureShape.new(name: 'EvaluationFormContent')
|
|
799
804
|
EvaluationFormDescription = Shapes::StringShape.new(name: 'EvaluationFormDescription')
|
|
@@ -816,6 +821,9 @@ module Aws::Connect
|
|
|
816
821
|
EvaluationFormItemsList = Shapes::ListShape.new(name: 'EvaluationFormItemsList')
|
|
817
822
|
EvaluationFormLanguageCode = Shapes::StringShape.new(name: 'EvaluationFormLanguageCode')
|
|
818
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')
|
|
819
827
|
EvaluationFormMultiSelectQuestionAutomation = Shapes::StructureShape.new(name: 'EvaluationFormMultiSelectQuestionAutomation')
|
|
820
828
|
EvaluationFormMultiSelectQuestionAutomationOption = Shapes::UnionShape.new(name: 'EvaluationFormMultiSelectQuestionAutomationOption')
|
|
821
829
|
EvaluationFormMultiSelectQuestionAutomationOptionList = Shapes::ListShape.new(name: 'EvaluationFormMultiSelectQuestionAutomationOptionList')
|
|
@@ -1197,6 +1205,8 @@ module Aws::Connect
|
|
|
1197
1205
|
ListDefaultVocabulariesResponse = Shapes::StructureShape.new(name: 'ListDefaultVocabulariesResponse')
|
|
1198
1206
|
ListEntitySecurityProfilesRequest = Shapes::StructureShape.new(name: 'ListEntitySecurityProfilesRequest')
|
|
1199
1207
|
ListEntitySecurityProfilesResponse = Shapes::StructureShape.new(name: 'ListEntitySecurityProfilesResponse')
|
|
1208
|
+
ListEvaluationFormAIVersionsRequest = Shapes::StructureShape.new(name: 'ListEvaluationFormAIVersionsRequest')
|
|
1209
|
+
ListEvaluationFormAIVersionsResponse = Shapes::StructureShape.new(name: 'ListEvaluationFormAIVersionsResponse')
|
|
1200
1210
|
ListEvaluationFormVersionsRequest = Shapes::StructureShape.new(name: 'ListEvaluationFormVersionsRequest')
|
|
1201
1211
|
ListEvaluationFormVersionsResponse = Shapes::StructureShape.new(name: 'ListEvaluationFormVersionsResponse')
|
|
1202
1212
|
ListEvaluationFormsRequest = Shapes::StructureShape.new(name: 'ListEvaluationFormsRequest')
|
|
@@ -3653,6 +3663,7 @@ module Aws::Connect
|
|
|
3653
3663
|
CreateEvaluationFormRequest.add_member(:review_configuration, Shapes::ShapeRef.new(shape: EvaluationReviewConfiguration, location_name: "ReviewConfiguration"))
|
|
3654
3664
|
CreateEvaluationFormRequest.add_member(:target_configuration, Shapes::ShapeRef.new(shape: EvaluationFormTargetConfiguration, location_name: "TargetConfiguration"))
|
|
3655
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"))
|
|
3656
3667
|
CreateEvaluationFormRequest.struct_class = Types::CreateEvaluationFormRequest
|
|
3657
3668
|
|
|
3658
3669
|
CreateEvaluationFormResponse.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
|
|
@@ -5069,8 +5080,20 @@ module Aws::Connect
|
|
|
5069
5080
|
EvaluationForm.add_member(:language_configuration, Shapes::ShapeRef.new(shape: EvaluationFormLanguageConfiguration, location_name: "LanguageConfiguration"))
|
|
5070
5081
|
EvaluationForm.add_member(:latest_validation_status, Shapes::ShapeRef.new(shape: EvaluationFormValidationStatus, location_name: "LatestValidationStatus"))
|
|
5071
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"))
|
|
5072
5084
|
EvaluationForm.struct_class = Types::EvaluationForm
|
|
5073
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
|
+
|
|
5074
5097
|
EvaluationFormAutoEvaluationConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
|
5075
5098
|
EvaluationFormAutoEvaluationConfiguration.struct_class = Types::EvaluationFormAutoEvaluationConfiguration
|
|
5076
5099
|
|
|
@@ -5085,6 +5108,7 @@ module Aws::Connect
|
|
|
5085
5108
|
EvaluationFormContent.add_member(:target_configuration, Shapes::ShapeRef.new(shape: EvaluationFormTargetConfiguration, location_name: "TargetConfiguration"))
|
|
5086
5109
|
EvaluationFormContent.add_member(:language_configuration, Shapes::ShapeRef.new(shape: EvaluationFormLanguageConfiguration, location_name: "LanguageConfiguration"))
|
|
5087
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"))
|
|
5088
5112
|
EvaluationFormContent.struct_class = Types::EvaluationFormContent
|
|
5089
5113
|
|
|
5090
5114
|
EvaluationFormItem.add_member(:section, Shapes::ShapeRef.new(shape: EvaluationFormSection, location_name: "Section"))
|
|
@@ -5134,6 +5158,10 @@ module Aws::Connect
|
|
|
5134
5158
|
EvaluationFormLanguageConfiguration.add_member(:form_language, Shapes::ShapeRef.new(shape: EvaluationFormLanguageCode, location_name: "FormLanguage"))
|
|
5135
5159
|
EvaluationFormLanguageConfiguration.struct_class = Types::EvaluationFormLanguageConfiguration
|
|
5136
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
|
+
|
|
5137
5165
|
EvaluationFormMultiSelectQuestionAutomation.add_member(:options, Shapes::ShapeRef.new(shape: EvaluationFormMultiSelectQuestionAutomationOptionList, location_name: "Options"))
|
|
5138
5166
|
EvaluationFormMultiSelectQuestionAutomation.add_member(:default_option_ref_ids, Shapes::ShapeRef.new(shape: ReferenceIdList, location_name: "DefaultOptionRefIds"))
|
|
5139
5167
|
EvaluationFormMultiSelectQuestionAutomation.add_member(:answer_source, Shapes::ShapeRef.new(shape: EvaluationFormQuestionAutomationAnswerSource, location_name: "AnswerSource"))
|
|
@@ -5195,6 +5223,7 @@ module Aws::Connect
|
|
|
5195
5223
|
EvaluationFormQuestion.add_member(:enablement, Shapes::ShapeRef.new(shape: EvaluationFormItemEnablementConfiguration, location_name: "Enablement"))
|
|
5196
5224
|
EvaluationFormQuestion.add_member(:weight, Shapes::ShapeRef.new(shape: EvaluationFormItemWeight, location_name: "Weight"))
|
|
5197
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"))
|
|
5198
5227
|
EvaluationFormQuestion.struct_class = Types::EvaluationFormQuestion
|
|
5199
5228
|
|
|
5200
5229
|
EvaluationFormQuestionAutomationAnswerSource.add_member(:source_type, Shapes::ShapeRef.new(shape: EvaluationFormQuestionAutomationAnswerSourceType, required: true, location_name: "SourceType"))
|
|
@@ -5259,6 +5288,7 @@ module Aws::Connect
|
|
|
5259
5288
|
EvaluationFormSearchSummary.add_member(:evaluation_form_language, Shapes::ShapeRef.new(shape: EvaluationFormLanguageCode, location_name: "EvaluationFormLanguage"))
|
|
5260
5289
|
EvaluationFormSearchSummary.add_member(:contact_interaction_type, Shapes::ShapeRef.new(shape: ContactInteractionType, location_name: "ContactInteractionType"))
|
|
5261
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"))
|
|
5262
5292
|
EvaluationFormSearchSummary.struct_class = Types::EvaluationFormSearchSummary
|
|
5263
5293
|
|
|
5264
5294
|
EvaluationFormSearchSummaryList.member = Shapes::ShapeRef.new(shape: EvaluationFormSearchSummary)
|
|
@@ -6425,6 +6455,16 @@ module Aws::Connect
|
|
|
6425
6455
|
ListEntitySecurityProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
|
6426
6456
|
ListEntitySecurityProfilesResponse.struct_class = Types::ListEntitySecurityProfilesResponse
|
|
6427
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
|
+
|
|
6428
6468
|
ListEvaluationFormVersionsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
6429
6469
|
ListEvaluationFormVersionsRequest.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "EvaluationFormId"))
|
|
6430
6470
|
ListEvaluationFormVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults", metadata: {"box" => true}))
|
|
@@ -9470,6 +9510,7 @@ module Aws::Connect
|
|
|
9470
9510
|
UpdateEvaluationFormRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
9471
9511
|
UpdateEvaluationFormRequest.add_member(:target_configuration, Shapes::ShapeRef.new(shape: EvaluationFormTargetConfiguration, location_name: "TargetConfiguration"))
|
|
9472
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"))
|
|
9473
9514
|
UpdateEvaluationFormRequest.struct_class = Types::UpdateEvaluationFormRequest
|
|
9474
9515
|
|
|
9475
9516
|
UpdateEvaluationFormResponse.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
|
|
@@ -13345,6 +13386,18 @@ module Aws::Connect
|
|
|
13345
13386
|
)
|
|
13346
13387
|
end)
|
|
13347
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
|
+
|
|
13348
13401
|
api.add_operation(:list_evaluation_form_versions, Seahorse::Model::Operation.new.tap do |o|
|
|
13349
13402
|
o.name = "ListEvaluationFormVersions"
|
|
13350
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
|
|
@@ -13513,6 +13519,11 @@ module Aws::Connect
|
|
|
13513
13519
|
# evaluation form.
|
|
13514
13520
|
# @return [Time]
|
|
13515
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
|
+
#
|
|
13516
13527
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationForm AWS API Documentation
|
|
13517
13528
|
#
|
|
13518
13529
|
class EvaluationForm < Struct.new(
|
|
@@ -13535,7 +13546,66 @@ module Aws::Connect
|
|
|
13535
13546
|
:target_configuration,
|
|
13536
13547
|
:language_configuration,
|
|
13537
13548
|
:latest_validation_status,
|
|
13538
|
-
: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)
|
|
13539
13609
|
SENSITIVE = []
|
|
13540
13610
|
include Aws::Structure
|
|
13541
13611
|
end
|
|
@@ -13604,6 +13674,11 @@ module Aws::Connect
|
|
|
13604
13674
|
# content.
|
|
13605
13675
|
# @return [Types::EvaluationReviewConfiguration]
|
|
13606
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
|
+
#
|
|
13607
13682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormContent AWS API Documentation
|
|
13608
13683
|
#
|
|
13609
13684
|
class EvaluationFormContent < Struct.new(
|
|
@@ -13617,7 +13692,8 @@ module Aws::Connect
|
|
|
13617
13692
|
:auto_evaluation_configuration,
|
|
13618
13693
|
:target_configuration,
|
|
13619
13694
|
:language_configuration,
|
|
13620
|
-
:review_configuration
|
|
13695
|
+
:review_configuration,
|
|
13696
|
+
:ai_version)
|
|
13621
13697
|
SENSITIVE = []
|
|
13622
13698
|
include Aws::Structure
|
|
13623
13699
|
end
|
|
@@ -13802,6 +13878,37 @@ module Aws::Connect
|
|
|
13802
13878
|
include Aws::Structure
|
|
13803
13879
|
end
|
|
13804
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
|
+
|
|
13805
13912
|
# Automation configuration for multi-select questions.
|
|
13806
13913
|
#
|
|
13807
13914
|
# @!attribute [rw] options
|
|
@@ -14054,6 +14161,11 @@ module Aws::Connect
|
|
|
14054
14161
|
# The scoring configuration of the question.
|
|
14055
14162
|
# @return [Types::EvaluationFormQuestionScoringConfiguration]
|
|
14056
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
|
+
#
|
|
14057
14169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormQuestion AWS API Documentation
|
|
14058
14170
|
#
|
|
14059
14171
|
class EvaluationFormQuestion < Struct.new(
|
|
@@ -14065,7 +14177,8 @@ module Aws::Connect
|
|
|
14065
14177
|
:question_type_properties,
|
|
14066
14178
|
:enablement,
|
|
14067
14179
|
:weight,
|
|
14068
|
-
:scoring_configuration
|
|
14180
|
+
:scoring_configuration,
|
|
14181
|
+
:metric_configuration)
|
|
14069
14182
|
SENSITIVE = []
|
|
14070
14183
|
include Aws::Structure
|
|
14071
14184
|
end
|
|
@@ -14340,6 +14453,11 @@ module Aws::Connect
|
|
|
14340
14453
|
# "key2":"value2"} }.
|
|
14341
14454
|
# @return [Hash<String,String>]
|
|
14342
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
|
+
#
|
|
14343
14461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationFormSearchSummary AWS API Documentation
|
|
14344
14462
|
#
|
|
14345
14463
|
class EvaluationFormSearchSummary < Struct.new(
|
|
@@ -14359,7 +14477,8 @@ module Aws::Connect
|
|
|
14359
14477
|
:auto_evaluation_enabled,
|
|
14360
14478
|
:evaluation_form_language,
|
|
14361
14479
|
:contact_interaction_type,
|
|
14362
|
-
:tags
|
|
14480
|
+
:tags,
|
|
14481
|
+
:ai_version)
|
|
14363
14482
|
SENSITIVE = []
|
|
14364
14483
|
include Aws::Structure
|
|
14365
14484
|
end
|
|
@@ -22820,6 +22939,58 @@ module Aws::Connect
|
|
|
22820
22939
|
include Aws::Structure
|
|
22821
22940
|
end
|
|
22822
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
|
+
|
|
22823
22994
|
# @!attribute [rw] instance_id
|
|
22824
22995
|
# The identifier of the Connect Customer instance. You can [find the
|
|
22825
22996
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -38010,6 +38181,11 @@ module Aws::Connect
|
|
|
38010
38181
|
# Configuration for language settings of the evaluation form.
|
|
38011
38182
|
# @return [Types::EvaluationFormLanguageConfiguration]
|
|
38012
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
|
+
#
|
|
38013
38189
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateEvaluationFormRequest AWS API Documentation
|
|
38014
38190
|
#
|
|
38015
38191
|
class UpdateEvaluationFormRequest < Struct.new(
|
|
@@ -38026,7 +38202,8 @@ module Aws::Connect
|
|
|
38026
38202
|
:as_draft,
|
|
38027
38203
|
:client_token,
|
|
38028
38204
|
:target_configuration,
|
|
38029
|
-
:language_configuration
|
|
38205
|
+
:language_configuration,
|
|
38206
|
+
:ai_version)
|
|
38030
38207
|
SENSITIVE = []
|
|
38031
38208
|
include Aws::Structure
|
|
38032
38209
|
end
|
data/lib/aws-sdk-connect.rb
CHANGED
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
|
|
|
@@ -3035,6 +3036,20 @@ module Aws
|
|
|
3035
3036
|
) -> _ListEntitySecurityProfilesResponseSuccess
|
|
3036
3037
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntitySecurityProfilesResponseSuccess
|
|
3037
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
|
+
|
|
3038
3053
|
interface _ListEvaluationFormVersionsResponseSuccess
|
|
3039
3054
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListEvaluationFormVersionsResponse]
|
|
3040
3055
|
def evaluation_form_version_summary_list: () -> ::Array[Types::EvaluationFormVersionSummary]
|
|
@@ -5500,7 +5515,8 @@ module Aws
|
|
|
5500
5515
|
},
|
|
5501
5516
|
?language_configuration: {
|
|
5502
5517
|
form_language: ("de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "ms-MY")?
|
|
5503
|
-
}
|
|
5518
|
+
},
|
|
5519
|
+
?ai_version: ::String
|
|
5504
5520
|
) -> _UpdateEvaluationFormResponseSuccess
|
|
5505
5521
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEvaluationFormResponseSuccess
|
|
5506
5522
|
|
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 = {
|
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
|
|
|
@@ -3419,6 +3420,20 @@ module Aws::Connect
|
|
|
3419
3420
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
3420
3421
|
attr_accessor latest_validation_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
|
3421
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
|
|
3422
3437
|
SENSITIVE: []
|
|
3423
3438
|
end
|
|
3424
3439
|
|
|
@@ -3439,6 +3454,7 @@ module Aws::Connect
|
|
|
3439
3454
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
3440
3455
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
3441
3456
|
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
3457
|
+
attr_accessor ai_version: ::String
|
|
3442
3458
|
SENSITIVE: []
|
|
3443
3459
|
end
|
|
3444
3460
|
|
|
@@ -3507,6 +3523,12 @@ module Aws::Connect
|
|
|
3507
3523
|
SENSITIVE: []
|
|
3508
3524
|
end
|
|
3509
3525
|
|
|
3526
|
+
class EvaluationFormMetricConfiguration
|
|
3527
|
+
attr_accessor metric_type: ("BUSINESS_OUTCOME")
|
|
3528
|
+
attr_accessor metric_name: ::String
|
|
3529
|
+
SENSITIVE: []
|
|
3530
|
+
end
|
|
3531
|
+
|
|
3510
3532
|
class EvaluationFormMultiSelectQuestionAutomation
|
|
3511
3533
|
attr_accessor options: ::Array[Types::EvaluationFormMultiSelectQuestionAutomationOption]
|
|
3512
3534
|
attr_accessor default_option_ref_ids: ::Array[::String]
|
|
@@ -3584,6 +3606,7 @@ module Aws::Connect
|
|
|
3584
3606
|
attr_accessor enablement: Types::EvaluationFormItemEnablementConfiguration
|
|
3585
3607
|
attr_accessor weight: ::Float
|
|
3586
3608
|
attr_accessor scoring_configuration: Types::EvaluationFormQuestionScoringConfiguration
|
|
3609
|
+
attr_accessor metric_configuration: Types::EvaluationFormMetricConfiguration
|
|
3587
3610
|
SENSITIVE: []
|
|
3588
3611
|
end
|
|
3589
3612
|
|
|
@@ -3666,6 +3689,7 @@ module Aws::Connect
|
|
|
3666
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")
|
|
3667
3690
|
attr_accessor contact_interaction_type: ("AGENT" | "AUTOMATED" | "CUSTOMER")
|
|
3668
3691
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
3692
|
+
attr_accessor ai_version: ::String
|
|
3669
3693
|
SENSITIVE: []
|
|
3670
3694
|
end
|
|
3671
3695
|
|
|
@@ -5123,6 +5147,20 @@ module Aws::Connect
|
|
|
5123
5147
|
SENSITIVE: []
|
|
5124
5148
|
end
|
|
5125
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
|
+
|
|
5126
5164
|
class ListEvaluationFormVersionsRequest
|
|
5127
5165
|
attr_accessor instance_id: ::String
|
|
5128
5166
|
attr_accessor evaluation_form_id: ::String
|
|
@@ -8877,6 +8915,7 @@ module Aws::Connect
|
|
|
8877
8915
|
attr_accessor client_token: ::String
|
|
8878
8916
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
8879
8917
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
8918
|
+
attr_accessor ai_version: ::String
|
|
8880
8919
|
SENSITIVE: []
|
|
8881
8920
|
end
|
|
8882
8921
|
|
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.
|
|
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.
|
|
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.
|
|
31
|
+
version: 3.255.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|