aws-sdk-connect 1.221.0 → 1.223.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.
@@ -2502,6 +2502,9 @@ module Aws::Connect
2502
2502
  # @option params [Types::EvaluationFormScoringStrategy] :scoring_strategy
2503
2503
  # A scoring strategy of the evaluation form.
2504
2504
  #
2505
+ # @option params [Types::EvaluationFormAutoEvaluationConfiguration] :auto_evaluation_configuration
2506
+ # Configuration information about automated evaluations.
2507
+ #
2505
2508
  # @option params [String] :client_token
2506
2509
  # A unique, case-sensitive identifier that you provide to ensure the
2507
2510
  # idempotency of the request. If not provided, the Amazon Web Services
@@ -2515,6 +2518,11 @@ module Aws::Connect
2515
2518
  #
2516
2519
  # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
2517
2520
  #
2521
+ # @option params [Hash<String,String>] :tags
2522
+ # The tags used to organize, track, or control access for this resource.
2523
+ # For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
2524
+ # }.
2525
+ #
2518
2526
  # @return [Types::CreateEvaluationFormResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2519
2527
  #
2520
2528
  # * {Types::CreateEvaluationFormResponse#evaluation_form_id #evaluation_form_id} => String
@@ -2553,11 +2561,17 @@ module Aws::Connect
2553
2561
  # max_value: 1, # required
2554
2562
  # score: 1,
2555
2563
  # automatic_fail: false,
2564
+ # automatic_fail_configuration: {
2565
+ # target_section: "ReferenceId",
2566
+ # },
2556
2567
  # },
2557
2568
  # ],
2558
2569
  # automation: {
2559
2570
  # property_value: {
2560
- # label: "OVERALL_CUSTOMER_SENTIMENT_SCORE", # required, accepts OVERALL_CUSTOMER_SENTIMENT_SCORE, OVERALL_AGENT_SENTIMENT_SCORE, NON_TALK_TIME, NON_TALK_TIME_PERCENTAGE, NUMBER_OF_INTERRUPTIONS, CONTACT_DURATION, AGENT_INTERACTION_DURATION, CUSTOMER_HOLD_TIME
2571
+ # label: "OVERALL_CUSTOMER_SENTIMENT_SCORE", # required, accepts OVERALL_CUSTOMER_SENTIMENT_SCORE, OVERALL_AGENT_SENTIMENT_SCORE, NON_TALK_TIME, NON_TALK_TIME_PERCENTAGE, NUMBER_OF_INTERRUPTIONS, CONTACT_DURATION, AGENT_INTERACTION_DURATION, CUSTOMER_HOLD_TIME, LONGEST_HOLD_DURATION, NUMBER_OF_HOLDS, AGENT_INTERACTION_AND_HOLD_DURATION
2572
+ # },
2573
+ # answer_source: {
2574
+ # source_type: "CONTACT_LENS_DATA", # required, accepts CONTACT_LENS_DATA, GEN_AI
2561
2575
  # },
2562
2576
  # },
2563
2577
  # },
@@ -2568,11 +2582,14 @@ module Aws::Connect
2568
2582
  # text: "EvaluationFormSingleSelectQuestionOptionText", # required
2569
2583
  # score: 1,
2570
2584
  # automatic_fail: false,
2585
+ # automatic_fail_configuration: {
2586
+ # target_section: "ReferenceId",
2587
+ # },
2571
2588
  # },
2572
2589
  # ],
2573
2590
  # display_as: "DROPDOWN", # accepts DROPDOWN, RADIO
2574
2591
  # automation: {
2575
- # options: [ # required
2592
+ # options: [
2576
2593
  # {
2577
2594
  # rule_category: {
2578
2595
  # category: "SingleSelectQuestionRuleCategoryAutomationLabel", # required
@@ -2582,9 +2599,46 @@ module Aws::Connect
2582
2599
  # },
2583
2600
  # ],
2584
2601
  # default_option_ref_id: "ReferenceId",
2602
+ # answer_source: {
2603
+ # source_type: "CONTACT_LENS_DATA", # required, accepts CONTACT_LENS_DATA, GEN_AI
2604
+ # },
2605
+ # },
2606
+ # },
2607
+ # text: {
2608
+ # automation: {
2609
+ # answer_source: {
2610
+ # source_type: "CONTACT_LENS_DATA", # required, accepts CONTACT_LENS_DATA, GEN_AI
2611
+ # },
2585
2612
  # },
2586
2613
  # },
2587
2614
  # },
2615
+ # enablement: {
2616
+ # condition: { # required
2617
+ # operands: [ # required
2618
+ # {
2619
+ # expression: {
2620
+ # source: { # required
2621
+ # type: "QUESTION_REF_ID", # required, accepts QUESTION_REF_ID
2622
+ # ref_id: "ReferenceId",
2623
+ # },
2624
+ # values: [ # required
2625
+ # {
2626
+ # type: "OPTION_REF_ID", # required, accepts OPTION_REF_ID
2627
+ # ref_id: "ReferenceId",
2628
+ # },
2629
+ # ],
2630
+ # comparator: "IN", # required, accepts IN, NOT_IN
2631
+ # },
2632
+ # condition: {
2633
+ # # recursive EvaluationFormItemEnablementCondition
2634
+ # },
2635
+ # },
2636
+ # ],
2637
+ # operator: "OR", # accepts OR, AND
2638
+ # },
2639
+ # action: "DISABLE", # required, accepts DISABLE, ENABLE
2640
+ # default_action: "DISABLE", # accepts DISABLE, ENABLE
2641
+ # },
2588
2642
  # weight: 1.0,
2589
2643
  # },
2590
2644
  # },
@@ -2593,7 +2647,13 @@ module Aws::Connect
2593
2647
  # mode: "QUESTION_ONLY", # required, accepts QUESTION_ONLY, SECTION_ONLY
2594
2648
  # status: "ENABLED", # required, accepts ENABLED, DISABLED
2595
2649
  # },
2650
+ # auto_evaluation_configuration: {
2651
+ # enabled: false, # required
2652
+ # },
2596
2653
  # client_token: "ClientToken",
2654
+ # tags: {
2655
+ # "TagKey" => "TagValue",
2656
+ # },
2597
2657
  # })
2598
2658
  #
2599
2659
  # @example Response structure
@@ -5605,8 +5665,8 @@ module Aws::Connect
5605
5665
  end
5606
5666
 
5607
5667
  # This API is in preview release for Amazon Connect and is subject to
5608
- # change. To request access to this API, contact Amazon Web
5609
- # ServicesSupport.
5668
+ # change. To request access to this API, contact Amazon Web Services
5669
+ # Support.
5610
5670
  #
5611
5671
  # Describes the target authentication profile.
5612
5672
  #
@@ -5648,6 +5708,8 @@ module Aws::Connect
5648
5708
  # resp.authentication_profile.last_modified_region #=> String
5649
5709
  # resp.authentication_profile.periodic_session_duration #=> Integer
5650
5710
  # resp.authentication_profile.max_session_duration #=> Integer
5711
+ # resp.authentication_profile.session_inactivity_duration #=> Integer
5712
+ # resp.authentication_profile.session_inactivity_handling_enabled #=> Boolean
5651
5713
  #
5652
5714
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeAuthenticationProfile AWS API Documentation
5653
5715
  #
@@ -5933,9 +5995,15 @@ module Aws::Connect
5933
5995
  # resp.evaluation.metadata.contact_id #=> String
5934
5996
  # resp.evaluation.metadata.evaluator_arn #=> String
5935
5997
  # resp.evaluation.metadata.contact_agent_id #=> String
5998
+ # resp.evaluation.metadata.calibration_session_id #=> String
5936
5999
  # resp.evaluation.metadata.score.percentage #=> Float
5937
6000
  # resp.evaluation.metadata.score.not_applicable #=> Boolean
5938
6001
  # resp.evaluation.metadata.score.automatic_fail #=> Boolean
6002
+ # resp.evaluation.metadata.auto_evaluation.auto_evaluation_enabled #=> Boolean
6003
+ # resp.evaluation.metadata.auto_evaluation.auto_evaluation_status #=> String, one of "IN_PROGRESS", "FAILED", "SUCCEEDED"
6004
+ # resp.evaluation.metadata.acknowledgement.acknowledged_time #=> Time
6005
+ # resp.evaluation.metadata.acknowledgement.acknowledged_by #=> String
6006
+ # resp.evaluation.metadata.acknowledgement.acknowledger_comment #=> String
5939
6007
  # resp.evaluation.answers #=> Hash
5940
6008
  # resp.evaluation.answers["ResourceId"].value.string_value #=> String
5941
6009
  # resp.evaluation.answers["ResourceId"].value.numeric_value #=> Float
@@ -5943,6 +6011,23 @@ module Aws::Connect
5943
6011
  # resp.evaluation.answers["ResourceId"].system_suggested_value.string_value #=> String
5944
6012
  # resp.evaluation.answers["ResourceId"].system_suggested_value.numeric_value #=> Float
5945
6013
  # resp.evaluation.answers["ResourceId"].system_suggested_value.not_applicable #=> Boolean
6014
+ # resp.evaluation.answers["ResourceId"].suggested_answers #=> Array
6015
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].value.string_value #=> String
6016
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].value.numeric_value #=> Float
6017
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].value.not_applicable #=> Boolean
6018
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].status #=> String, one of "IN_PROGRESS", "FAILED", "SUCCEEDED"
6019
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].input.transcript_type #=> String, one of "RAW", "REDACTED"
6020
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_type #=> String, one of "CONTACT_LENS_DATA", "GEN_AI"
6021
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.gen_ai.justification #=> String
6022
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.gen_ai.points_of_interest #=> Array
6023
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.gen_ai.points_of_interest[0].millisecond_offsets.begin_offset_millis #=> Integer
6024
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.gen_ai.points_of_interest[0].transcript_segment #=> String
6025
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.contact_lens.matched_rule_categories #=> Array
6026
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.contact_lens.matched_rule_categories[0].category #=> String
6027
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.contact_lens.matched_rule_categories[0].condition #=> String, one of "PRESENT", "NOT_PRESENT"
6028
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.contact_lens.matched_rule_categories[0].points_of_interest #=> Array
6029
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.contact_lens.matched_rule_categories[0].points_of_interest[0].millisecond_offsets.begin_offset_millis #=> Integer
6030
+ # resp.evaluation.answers["ResourceId"].suggested_answers[0].analysis_details.contact_lens.matched_rule_categories[0].points_of_interest[0].transcript_segment #=> String
5946
6031
  # resp.evaluation.notes #=> Hash
5947
6032
  # resp.evaluation.notes["ResourceId"].value #=> String
5948
6033
  # resp.evaluation.status #=> String, one of "DRAFT", "SUBMITTED"
@@ -5952,6 +6037,7 @@ module Aws::Connect
5952
6037
  # resp.evaluation.scores["ResourceId"].automatic_fail #=> Boolean
5953
6038
  # resp.evaluation.created_time #=> Time
5954
6039
  # resp.evaluation.last_modified_time #=> Time
6040
+ # resp.evaluation.evaluation_type #=> String, one of "STANDARD", "CALIBRATION"
5955
6041
  # resp.evaluation.tags #=> Hash
5956
6042
  # resp.evaluation.tags["TagKey"] #=> String
5957
6043
  # resp.evaluation_form.evaluation_form_version #=> Integer
@@ -5977,21 +6063,38 @@ module Aws::Connect
5977
6063
  # resp.evaluation_form.items[0].question.question_type_properties.numeric.options[0].max_value #=> Integer
5978
6064
  # resp.evaluation_form.items[0].question.question_type_properties.numeric.options[0].score #=> Integer
5979
6065
  # resp.evaluation_form.items[0].question.question_type_properties.numeric.options[0].automatic_fail #=> Boolean
5980
- # resp.evaluation_form.items[0].question.question_type_properties.numeric.automation.property_value.label #=> String, one of "OVERALL_CUSTOMER_SENTIMENT_SCORE", "OVERALL_AGENT_SENTIMENT_SCORE", "NON_TALK_TIME", "NON_TALK_TIME_PERCENTAGE", "NUMBER_OF_INTERRUPTIONS", "CONTACT_DURATION", "AGENT_INTERACTION_DURATION", "CUSTOMER_HOLD_TIME"
6066
+ # resp.evaluation_form.items[0].question.question_type_properties.numeric.options[0].automatic_fail_configuration.target_section #=> String
6067
+ # resp.evaluation_form.items[0].question.question_type_properties.numeric.automation.property_value.label #=> String, one of "OVERALL_CUSTOMER_SENTIMENT_SCORE", "OVERALL_AGENT_SENTIMENT_SCORE", "NON_TALK_TIME", "NON_TALK_TIME_PERCENTAGE", "NUMBER_OF_INTERRUPTIONS", "CONTACT_DURATION", "AGENT_INTERACTION_DURATION", "CUSTOMER_HOLD_TIME", "LONGEST_HOLD_DURATION", "NUMBER_OF_HOLDS", "AGENT_INTERACTION_AND_HOLD_DURATION"
6068
+ # resp.evaluation_form.items[0].question.question_type_properties.numeric.automation.answer_source.source_type #=> String, one of "CONTACT_LENS_DATA", "GEN_AI"
5981
6069
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.options #=> Array
5982
6070
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.options[0].ref_id #=> String
5983
6071
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.options[0].text #=> String
5984
6072
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.options[0].score #=> Integer
5985
6073
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.options[0].automatic_fail #=> Boolean
6074
+ # resp.evaluation_form.items[0].question.question_type_properties.single_select.options[0].automatic_fail_configuration.target_section #=> String
5986
6075
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.display_as #=> String, one of "DROPDOWN", "RADIO"
5987
6076
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.options #=> Array
5988
6077
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.options[0].rule_category.category #=> String
5989
6078
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.options[0].rule_category.condition #=> String, one of "PRESENT", "NOT_PRESENT"
5990
6079
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.options[0].rule_category.option_ref_id #=> String
5991
6080
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.default_option_ref_id #=> String
6081
+ # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.answer_source.source_type #=> String, one of "CONTACT_LENS_DATA", "GEN_AI"
6082
+ # resp.evaluation_form.items[0].question.question_type_properties.text.automation.answer_source.source_type #=> String, one of "CONTACT_LENS_DATA", "GEN_AI"
6083
+ # resp.evaluation_form.items[0].question.enablement.condition.operands #=> Array
6084
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.source.type #=> String, one of "QUESTION_REF_ID"
6085
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.source.ref_id #=> String
6086
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.values #=> Array
6087
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.values[0].type #=> String, one of "OPTION_REF_ID"
6088
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.values[0].ref_id #=> String
6089
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.comparator #=> String, one of "IN", "NOT_IN"
6090
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].condition #=> Types::EvaluationFormItemEnablementCondition
6091
+ # resp.evaluation_form.items[0].question.enablement.condition.operator #=> String, one of "OR", "AND"
6092
+ # resp.evaluation_form.items[0].question.enablement.action #=> String, one of "DISABLE", "ENABLE"
6093
+ # resp.evaluation_form.items[0].question.enablement.default_action #=> String, one of "DISABLE", "ENABLE"
5992
6094
  # resp.evaluation_form.items[0].question.weight #=> Float
5993
6095
  # resp.evaluation_form.scoring_strategy.mode #=> String, one of "QUESTION_ONLY", "SECTION_ONLY"
5994
6096
  # resp.evaluation_form.scoring_strategy.status #=> String, one of "ENABLED", "DISABLED"
6097
+ # resp.evaluation_form.auto_evaluation_configuration.enabled #=> Boolean
5995
6098
  #
5996
6099
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactEvaluation AWS API Documentation
5997
6100
  #
@@ -6230,18 +6333,34 @@ module Aws::Connect
6230
6333
  # resp.evaluation_form.items[0].question.question_type_properties.numeric.options[0].max_value #=> Integer
6231
6334
  # resp.evaluation_form.items[0].question.question_type_properties.numeric.options[0].score #=> Integer
6232
6335
  # resp.evaluation_form.items[0].question.question_type_properties.numeric.options[0].automatic_fail #=> Boolean
6233
- # resp.evaluation_form.items[0].question.question_type_properties.numeric.automation.property_value.label #=> String, one of "OVERALL_CUSTOMER_SENTIMENT_SCORE", "OVERALL_AGENT_SENTIMENT_SCORE", "NON_TALK_TIME", "NON_TALK_TIME_PERCENTAGE", "NUMBER_OF_INTERRUPTIONS", "CONTACT_DURATION", "AGENT_INTERACTION_DURATION", "CUSTOMER_HOLD_TIME"
6336
+ # resp.evaluation_form.items[0].question.question_type_properties.numeric.options[0].automatic_fail_configuration.target_section #=> String
6337
+ # resp.evaluation_form.items[0].question.question_type_properties.numeric.automation.property_value.label #=> String, one of "OVERALL_CUSTOMER_SENTIMENT_SCORE", "OVERALL_AGENT_SENTIMENT_SCORE", "NON_TALK_TIME", "NON_TALK_TIME_PERCENTAGE", "NUMBER_OF_INTERRUPTIONS", "CONTACT_DURATION", "AGENT_INTERACTION_DURATION", "CUSTOMER_HOLD_TIME", "LONGEST_HOLD_DURATION", "NUMBER_OF_HOLDS", "AGENT_INTERACTION_AND_HOLD_DURATION"
6338
+ # resp.evaluation_form.items[0].question.question_type_properties.numeric.automation.answer_source.source_type #=> String, one of "CONTACT_LENS_DATA", "GEN_AI"
6234
6339
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.options #=> Array
6235
6340
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.options[0].ref_id #=> String
6236
6341
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.options[0].text #=> String
6237
6342
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.options[0].score #=> Integer
6238
6343
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.options[0].automatic_fail #=> Boolean
6344
+ # resp.evaluation_form.items[0].question.question_type_properties.single_select.options[0].automatic_fail_configuration.target_section #=> String
6239
6345
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.display_as #=> String, one of "DROPDOWN", "RADIO"
6240
6346
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.options #=> Array
6241
6347
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.options[0].rule_category.category #=> String
6242
6348
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.options[0].rule_category.condition #=> String, one of "PRESENT", "NOT_PRESENT"
6243
6349
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.options[0].rule_category.option_ref_id #=> String
6244
6350
  # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.default_option_ref_id #=> String
6351
+ # resp.evaluation_form.items[0].question.question_type_properties.single_select.automation.answer_source.source_type #=> String, one of "CONTACT_LENS_DATA", "GEN_AI"
6352
+ # resp.evaluation_form.items[0].question.question_type_properties.text.automation.answer_source.source_type #=> String, one of "CONTACT_LENS_DATA", "GEN_AI"
6353
+ # resp.evaluation_form.items[0].question.enablement.condition.operands #=> Array
6354
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.source.type #=> String, one of "QUESTION_REF_ID"
6355
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.source.ref_id #=> String
6356
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.values #=> Array
6357
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.values[0].type #=> String, one of "OPTION_REF_ID"
6358
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.values[0].ref_id #=> String
6359
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].expression.comparator #=> String, one of "IN", "NOT_IN"
6360
+ # resp.evaluation_form.items[0].question.enablement.condition.operands[0].condition #=> Types::EvaluationFormItemEnablementCondition
6361
+ # resp.evaluation_form.items[0].question.enablement.condition.operator #=> String, one of "OR", "AND"
6362
+ # resp.evaluation_form.items[0].question.enablement.action #=> String, one of "DISABLE", "ENABLE"
6363
+ # resp.evaluation_form.items[0].question.enablement.default_action #=> String, one of "DISABLE", "ENABLE"
6245
6364
  # resp.evaluation_form.items[0].question.weight #=> Float
6246
6365
  # resp.evaluation_form.scoring_strategy.mode #=> String, one of "QUESTION_ONLY", "SECTION_ONLY"
6247
6366
  # resp.evaluation_form.scoring_strategy.status #=> String, one of "ENABLED", "DISABLED"
@@ -6249,6 +6368,7 @@ module Aws::Connect
6249
6368
  # resp.evaluation_form.created_by #=> String
6250
6369
  # resp.evaluation_form.last_modified_time #=> Time
6251
6370
  # resp.evaluation_form.last_modified_by #=> String
6371
+ # resp.evaluation_form.auto_evaluation_configuration.enabled #=> Boolean
6252
6372
  # resp.evaluation_form.tags #=> Hash
6253
6373
  # resp.evaluation_form.tags["TagKey"] #=> String
6254
6374
  #
@@ -11347,7 +11467,7 @@ module Aws::Connect
11347
11467
  # service level quota of 99 phone numbers, and in any 180 day period you
11348
11468
  # release 99, claim 99, and then release 99, you will have exceeded the
11349
11469
  # 200% limit. At that point you are blocked from claiming any more
11350
- # numbers until you open an Amazon Web ServicesSupport ticket.
11470
+ # numbers until you open an Amazon Web Services Support ticket.
11351
11471
  #
11352
11472
  #
11353
11473
  #
@@ -11691,8 +11811,8 @@ module Aws::Connect
11691
11811
  end
11692
11812
 
11693
11813
  # This API is in preview release for Amazon Connect and is subject to
11694
- # change. To request access to this API, contact Amazon Web
11695
- # ServicesSupport.
11814
+ # change. To request access to this API, contact Amazon Web Services
11815
+ # Support.
11696
11816
  #
11697
11817
  # Provides summary information about the authentication profiles in a
11698
11818
  # specified Amazon Connect instance.
@@ -11850,11 +11970,18 @@ module Aws::Connect
11850
11970
  # resp.evaluation_summary_list[0].evaluation_arn #=> String
11851
11971
  # resp.evaluation_summary_list[0].evaluation_form_title #=> String
11852
11972
  # resp.evaluation_summary_list[0].evaluation_form_id #=> String
11973
+ # resp.evaluation_summary_list[0].calibration_session_id #=> String
11853
11974
  # resp.evaluation_summary_list[0].status #=> String, one of "DRAFT", "SUBMITTED"
11975
+ # resp.evaluation_summary_list[0].auto_evaluation_enabled #=> Boolean
11976
+ # resp.evaluation_summary_list[0].auto_evaluation_status #=> String, one of "IN_PROGRESS", "FAILED", "SUCCEEDED"
11854
11977
  # resp.evaluation_summary_list[0].evaluator_arn #=> String
11855
11978
  # resp.evaluation_summary_list[0].score.percentage #=> Float
11856
11979
  # resp.evaluation_summary_list[0].score.not_applicable #=> Boolean
11857
11980
  # resp.evaluation_summary_list[0].score.automatic_fail #=> Boolean
11981
+ # resp.evaluation_summary_list[0].acknowledgement.acknowledged_time #=> Time
11982
+ # resp.evaluation_summary_list[0].acknowledgement.acknowledged_by #=> String
11983
+ # resp.evaluation_summary_list[0].acknowledgement.acknowledger_comment #=> String
11984
+ # resp.evaluation_summary_list[0].evaluation_type #=> String, one of "STANDARD", "CALIBRATION"
11858
11985
  # resp.evaluation_summary_list[0].created_time #=> Time
11859
11986
  # resp.evaluation_summary_list[0].last_modified_time #=> Time
11860
11987
  # resp.next_token #=> String
@@ -14668,7 +14795,7 @@ module Aws::Connect
14668
14795
  # After releasing a phone number, the phone number enters into a
14669
14796
  # cooldown period for up to 180 days. It cannot be searched for or
14670
14797
  # claimed again until the period has ended. If you accidentally release
14671
- # a phone number, contact Amazon Web ServicesSupport.
14798
+ # a phone number, contact Amazon Web Services Support.
14672
14799
  #
14673
14800
  # If you plan to claim and release numbers frequently, contact us for a
14674
14801
  # service quota exception. Otherwise, it is possible you will be blocked
@@ -15050,6 +15177,174 @@ module Aws::Connect
15050
15177
  req.send_request(options)
15051
15178
  end
15052
15179
 
15180
+ # Searches contact evaluations in an Amazon Connect instance, with
15181
+ # optional filtering.
15182
+ #
15183
+ # **Use cases**
15184
+ #
15185
+ # Following are common uses cases for this API:
15186
+ #
15187
+ # * Find contact evaluations by using specific search criteria.
15188
+ #
15189
+ # * Find contact evaluations that are tagged with a specific set of
15190
+ # tags.
15191
+ #
15192
+ # **Important things to know**
15193
+ #
15194
+ # * A Search operation, unlike a List operation, takes time to index
15195
+ # changes to resource (create, update or delete). If you don't see
15196
+ # updated information for recently changed contact evaluations, try
15197
+ # calling the API again in a few seconds. Contact Evaluations may not
15198
+ # be fully backfilled with historical data in all regions yet, however
15199
+ # all recently created Contact Evaluations should be available for
15200
+ # search.
15201
+ #
15202
+ # ^
15203
+ #
15204
+ # **Endpoints**: See [Amazon Connect endpoints and quotas][1].
15205
+ #
15206
+ #
15207
+ #
15208
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
15209
+ #
15210
+ # @option params [required, String] :instance_id
15211
+ # The identifier of the Amazon Connect instance. You can [find the
15212
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
15213
+ #
15214
+ #
15215
+ #
15216
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
15217
+ #
15218
+ # @option params [String] :next_token
15219
+ # The token for the next set of results. Use the value returned in the
15220
+ # previous response in the next request to retrieve the next set of
15221
+ # results.
15222
+ #
15223
+ # @option params [Integer] :max_results
15224
+ # The maximum number of results to return per page.
15225
+ #
15226
+ # @option params [Types::EvaluationSearchCriteria] :search_criteria
15227
+ # The search criteria to be used to return contact evaluations.
15228
+ #
15229
+ # @option params [Types::EvaluationSearchFilter] :search_filter
15230
+ # Filters to be applied to search results.
15231
+ #
15232
+ # @return [Types::SearchContactEvaluationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15233
+ #
15234
+ # * {Types::SearchContactEvaluationsResponse#evaluation_search_summary_list #evaluation_search_summary_list} => Array&lt;Types::EvaluationSearchSummary&gt;
15235
+ # * {Types::SearchContactEvaluationsResponse#next_token #next_token} => String
15236
+ # * {Types::SearchContactEvaluationsResponse#approximate_total_count #approximate_total_count} => Integer
15237
+ #
15238
+ # @example Request syntax with placeholder values
15239
+ #
15240
+ # resp = client.search_contact_evaluations({
15241
+ # instance_id: "InstanceId", # required
15242
+ # next_token: "NextToken",
15243
+ # max_results: 1,
15244
+ # search_criteria: {
15245
+ # or_conditions: [
15246
+ # {
15247
+ # # recursive EvaluationSearchCriteria
15248
+ # },
15249
+ # ],
15250
+ # and_conditions: [
15251
+ # {
15252
+ # # recursive EvaluationSearchCriteria
15253
+ # },
15254
+ # ],
15255
+ # string_condition: {
15256
+ # field_name: "String",
15257
+ # value: "String",
15258
+ # comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
15259
+ # },
15260
+ # number_condition: {
15261
+ # field_name: "String",
15262
+ # min_value: 1,
15263
+ # max_value: 1,
15264
+ # comparison_type: "GREATER_OR_EQUAL", # accepts GREATER_OR_EQUAL, GREATER, LESSER_OR_EQUAL, LESSER, EQUAL, NOT_EQUAL, RANGE
15265
+ # },
15266
+ # boolean_condition: {
15267
+ # field_name: "String",
15268
+ # comparison_type: "IS_TRUE", # accepts IS_TRUE, IS_FALSE
15269
+ # },
15270
+ # date_time_condition: {
15271
+ # field_name: "String",
15272
+ # min_value: "DateTimeFormat",
15273
+ # max_value: "DateTimeFormat",
15274
+ # comparison_type: "GREATER_THAN", # accepts GREATER_THAN, LESS_THAN, GREATER_THAN_OR_EQUAL_TO, LESS_THAN_OR_EQUAL_TO, EQUAL_TO, RANGE
15275
+ # },
15276
+ # decimal_condition: {
15277
+ # field_name: "String",
15278
+ # min_value: 1.0,
15279
+ # max_value: 1.0,
15280
+ # comparison_type: "GREATER_OR_EQUAL", # accepts GREATER_OR_EQUAL, GREATER, LESSER_OR_EQUAL, LESSER, EQUAL, NOT_EQUAL, RANGE
15281
+ # },
15282
+ # },
15283
+ # search_filter: {
15284
+ # attribute_filter: {
15285
+ # or_conditions: [
15286
+ # {
15287
+ # tag_conditions: [
15288
+ # {
15289
+ # tag_key: "String",
15290
+ # tag_value: "String",
15291
+ # },
15292
+ # ],
15293
+ # },
15294
+ # ],
15295
+ # and_condition: {
15296
+ # tag_conditions: [
15297
+ # {
15298
+ # tag_key: "String",
15299
+ # tag_value: "String",
15300
+ # },
15301
+ # ],
15302
+ # },
15303
+ # tag_condition: {
15304
+ # tag_key: "String",
15305
+ # tag_value: "String",
15306
+ # },
15307
+ # },
15308
+ # },
15309
+ # })
15310
+ #
15311
+ # @example Response structure
15312
+ #
15313
+ # resp.evaluation_search_summary_list #=> Array
15314
+ # resp.evaluation_search_summary_list[0].evaluation_id #=> String
15315
+ # resp.evaluation_search_summary_list[0].evaluation_arn #=> String
15316
+ # resp.evaluation_search_summary_list[0].evaluation_form_id #=> String
15317
+ # resp.evaluation_search_summary_list[0].evaluation_form_version #=> Integer
15318
+ # resp.evaluation_search_summary_list[0].metadata.contact_id #=> String
15319
+ # resp.evaluation_search_summary_list[0].metadata.evaluator_arn #=> String
15320
+ # resp.evaluation_search_summary_list[0].metadata.contact_agent_id #=> String
15321
+ # resp.evaluation_search_summary_list[0].metadata.calibration_session_id #=> String
15322
+ # resp.evaluation_search_summary_list[0].metadata.score_percentage #=> Float
15323
+ # resp.evaluation_search_summary_list[0].metadata.score_automatic_fail #=> Boolean
15324
+ # resp.evaluation_search_summary_list[0].metadata.score_not_applicable #=> Boolean
15325
+ # resp.evaluation_search_summary_list[0].metadata.auto_evaluation_enabled #=> Boolean
15326
+ # resp.evaluation_search_summary_list[0].metadata.auto_evaluation_status #=> String, one of "IN_PROGRESS", "FAILED", "SUCCEEDED"
15327
+ # resp.evaluation_search_summary_list[0].metadata.acknowledged_time #=> Time
15328
+ # resp.evaluation_search_summary_list[0].metadata.acknowledged_by #=> String
15329
+ # resp.evaluation_search_summary_list[0].metadata.acknowledger_comment #=> String
15330
+ # resp.evaluation_search_summary_list[0].status #=> String, one of "DRAFT", "SUBMITTED"
15331
+ # resp.evaluation_search_summary_list[0].evaluation_type #=> String, one of "STANDARD", "CALIBRATION"
15332
+ # resp.evaluation_search_summary_list[0].created_time #=> Time
15333
+ # resp.evaluation_search_summary_list[0].last_modified_time #=> Time
15334
+ # resp.evaluation_search_summary_list[0].tags #=> Hash
15335
+ # resp.evaluation_search_summary_list[0].tags["TagKey"] #=> String
15336
+ # resp.next_token #=> String
15337
+ # resp.approximate_total_count #=> Integer
15338
+ #
15339
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactEvaluations AWS API Documentation
15340
+ #
15341
+ # @overload search_contact_evaluations(params = {})
15342
+ # @param [Hash] params ({})
15343
+ def search_contact_evaluations(params = {}, options = {})
15344
+ req = build_request(:search_contact_evaluations, params)
15345
+ req.send_request(options)
15346
+ end
15347
+
15053
15348
  # Searches the flow modules in an Amazon Connect instance, with optional
15054
15349
  # filtering.
15055
15350
  #
@@ -15559,6 +15854,162 @@ module Aws::Connect
15559
15854
  req.send_request(options)
15560
15855
  end
15561
15856
 
15857
+ # Searches evaluation forms in an Amazon Connect instance, with optional
15858
+ # filtering.
15859
+ #
15860
+ # **Use cases**
15861
+ #
15862
+ # Following are common uses cases for this API:
15863
+ #
15864
+ # * List all evaluation forms in an instance.
15865
+ #
15866
+ # * Find all evaluation forms that meet specific criteria, such as
15867
+ # Title, Description, Status, and more.
15868
+ #
15869
+ # * Find all evaluation forms that are tagged with a specific set of
15870
+ # tags.
15871
+ #
15872
+ # **Important things to know**
15873
+ #
15874
+ # * A Search operation, unlike a List operation, takes time to index
15875
+ # changes to resource (create, update or delete). If you don't see
15876
+ # updated information for recently changed contact evaluations, try
15877
+ # calling the API again in a few seconds.
15878
+ #
15879
+ # ^
15880
+ #
15881
+ # **Endpoints**: See [Amazon Connect endpoints and quotas][1].
15882
+ #
15883
+ #
15884
+ #
15885
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
15886
+ #
15887
+ # @option params [required, String] :instance_id
15888
+ # The identifier of the Amazon Connect instance. You can [find the
15889
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
15890
+ #
15891
+ #
15892
+ #
15893
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
15894
+ #
15895
+ # @option params [String] :next_token
15896
+ # The token for the next set of results. Use the value returned in the
15897
+ # previous response in the next request to retrieve the next set of
15898
+ # results.
15899
+ #
15900
+ # @option params [Integer] :max_results
15901
+ # The maximum number of results to return per page.
15902
+ #
15903
+ # @option params [Types::EvaluationFormSearchCriteria] :search_criteria
15904
+ # The search criteria to be used to return evaluation forms.
15905
+ #
15906
+ # @option params [Types::EvaluationFormSearchFilter] :search_filter
15907
+ # Filters to be applied to search results.
15908
+ #
15909
+ # @return [Types::SearchEvaluationFormsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15910
+ #
15911
+ # * {Types::SearchEvaluationFormsResponse#evaluation_form_search_summary_list #evaluation_form_search_summary_list} => Array&lt;Types::EvaluationFormSearchSummary&gt;
15912
+ # * {Types::SearchEvaluationFormsResponse#next_token #next_token} => String
15913
+ # * {Types::SearchEvaluationFormsResponse#approximate_total_count #approximate_total_count} => Integer
15914
+ #
15915
+ # @example Request syntax with placeholder values
15916
+ #
15917
+ # resp = client.search_evaluation_forms({
15918
+ # instance_id: "InstanceId", # required
15919
+ # next_token: "NextToken",
15920
+ # max_results: 1,
15921
+ # search_criteria: {
15922
+ # or_conditions: [
15923
+ # {
15924
+ # # recursive EvaluationFormSearchCriteria
15925
+ # },
15926
+ # ],
15927
+ # and_conditions: [
15928
+ # {
15929
+ # # recursive EvaluationFormSearchCriteria
15930
+ # },
15931
+ # ],
15932
+ # string_condition: {
15933
+ # field_name: "String",
15934
+ # value: "String",
15935
+ # comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
15936
+ # },
15937
+ # number_condition: {
15938
+ # field_name: "String",
15939
+ # min_value: 1,
15940
+ # max_value: 1,
15941
+ # comparison_type: "GREATER_OR_EQUAL", # accepts GREATER_OR_EQUAL, GREATER, LESSER_OR_EQUAL, LESSER, EQUAL, NOT_EQUAL, RANGE
15942
+ # },
15943
+ # boolean_condition: {
15944
+ # field_name: "String",
15945
+ # comparison_type: "IS_TRUE", # accepts IS_TRUE, IS_FALSE
15946
+ # },
15947
+ # date_time_condition: {
15948
+ # field_name: "String",
15949
+ # min_value: "DateTimeFormat",
15950
+ # max_value: "DateTimeFormat",
15951
+ # comparison_type: "GREATER_THAN", # accepts GREATER_THAN, LESS_THAN, GREATER_THAN_OR_EQUAL_TO, LESS_THAN_OR_EQUAL_TO, EQUAL_TO, RANGE
15952
+ # },
15953
+ # },
15954
+ # search_filter: {
15955
+ # attribute_filter: {
15956
+ # or_conditions: [
15957
+ # {
15958
+ # tag_conditions: [
15959
+ # {
15960
+ # tag_key: "String",
15961
+ # tag_value: "String",
15962
+ # },
15963
+ # ],
15964
+ # },
15965
+ # ],
15966
+ # and_condition: {
15967
+ # tag_conditions: [
15968
+ # {
15969
+ # tag_key: "String",
15970
+ # tag_value: "String",
15971
+ # },
15972
+ # ],
15973
+ # },
15974
+ # tag_condition: {
15975
+ # tag_key: "String",
15976
+ # tag_value: "String",
15977
+ # },
15978
+ # },
15979
+ # },
15980
+ # })
15981
+ #
15982
+ # @example Response structure
15983
+ #
15984
+ # resp.evaluation_form_search_summary_list #=> Array
15985
+ # resp.evaluation_form_search_summary_list[0].evaluation_form_id #=> String
15986
+ # resp.evaluation_form_search_summary_list[0].evaluation_form_arn #=> String
15987
+ # resp.evaluation_form_search_summary_list[0].title #=> String
15988
+ # resp.evaluation_form_search_summary_list[0].status #=> String, one of "DRAFT", "ACTIVE"
15989
+ # resp.evaluation_form_search_summary_list[0].description #=> String
15990
+ # resp.evaluation_form_search_summary_list[0].created_time #=> Time
15991
+ # resp.evaluation_form_search_summary_list[0].created_by #=> String
15992
+ # resp.evaluation_form_search_summary_list[0].last_modified_time #=> Time
15993
+ # resp.evaluation_form_search_summary_list[0].last_modified_by #=> String
15994
+ # resp.evaluation_form_search_summary_list[0].last_activated_time #=> Time
15995
+ # resp.evaluation_form_search_summary_list[0].last_activated_by #=> String
15996
+ # resp.evaluation_form_search_summary_list[0].latest_version #=> Integer
15997
+ # resp.evaluation_form_search_summary_list[0].active_version #=> Integer
15998
+ # resp.evaluation_form_search_summary_list[0].auto_evaluation_enabled #=> Boolean
15999
+ # resp.evaluation_form_search_summary_list[0].tags #=> Hash
16000
+ # resp.evaluation_form_search_summary_list[0].tags["TagKey"] #=> String
16001
+ # resp.next_token #=> String
16002
+ # resp.approximate_total_count #=> Integer
16003
+ #
16004
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchEvaluationForms AWS API Documentation
16005
+ #
16006
+ # @overload search_evaluation_forms(params = {})
16007
+ # @param [Hash] params ({})
16008
+ def search_evaluation_forms(params = {}, options = {})
16009
+ req = build_request(:search_evaluation_forms, params)
16010
+ req.send_request(options)
16011
+ end
16012
+
15562
16013
  # Searches the hours of operation overrides.
15563
16014
  #
15564
16015
  # @option params [required, String] :instance_id
@@ -17262,8 +17713,8 @@ module Aws::Connect
17262
17713
  #
17263
17714
  # If you use the `ChatDurationInMinutes` parameter and receive a 400
17264
17715
  # error, your account may not support the ability to configure custom
17265
- # chat durations. For more information, contact Amazon Web
17266
- # ServicesSupport.
17716
+ # chat durations. For more information, contact Amazon Web Services
17717
+ # Support.
17267
17718
  #
17268
17719
  # For more information about chat, see the following topics in the
17269
17720
  # *Amazon Connect Administrator Guide*:
@@ -17484,6 +17935,9 @@ module Aws::Connect
17484
17935
  # @option params [required, String] :evaluation_form_id
17485
17936
  # The unique identifier for the evaluation form.
17486
17937
  #
17938
+ # @option params [Types::AutoEvaluationConfiguration] :auto_evaluation_configuration
17939
+ # Whether automated evaluations are enabled.
17940
+ #
17487
17941
  # @option params [String] :client_token
17488
17942
  # A unique, case-sensitive identifier that you provide to ensure the
17489
17943
  # idempotency of the request. If not provided, the Amazon Web Services
@@ -17497,6 +17951,11 @@ module Aws::Connect
17497
17951
  #
17498
17952
  # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
17499
17953
  #
17954
+ # @option params [Hash<String,String>] :tags
17955
+ # The tags used to organize, track, or control access for this resource.
17956
+ # For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
17957
+ # }.
17958
+ #
17500
17959
  # @return [Types::StartContactEvaluationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17501
17960
  #
17502
17961
  # * {Types::StartContactEvaluationResponse#evaluation_id #evaluation_id} => String
@@ -17508,7 +17967,13 @@ module Aws::Connect
17508
17967
  # instance_id: "InstanceId", # required
17509
17968
  # contact_id: "ContactId", # required
17510
17969
  # evaluation_form_id: "ResourceId", # required
17970
+ # auto_evaluation_configuration: {
17971
+ # enabled: false, # required
17972
+ # },
17511
17973
  # client_token: "ClientToken",
17974
+ # tags: {
17975
+ # "TagKey" => "TagValue",
17976
+ # },
17512
17977
  # })
17513
17978
  #
17514
17979
  # @example Response structure
@@ -18917,6 +19382,9 @@ module Aws::Connect
18917
19382
  # @option params [Hash<String,Types::EvaluationNote>] :notes
18918
19383
  # A map of question identifiers to note value.
18919
19384
  #
19385
+ # @option params [Types::EvaluatorUserUnion] :submitted_by
19386
+ # The ID of the user who submitted the contact evaluation.
19387
+ #
18920
19388
  # @return [Types::SubmitContactEvaluationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18921
19389
  #
18922
19390
  # * {Types::SubmitContactEvaluationResponse#evaluation_id #evaluation_id} => String
@@ -18941,6 +19409,9 @@ module Aws::Connect
18941
19409
  # value: "EvaluationNoteString",
18942
19410
  # },
18943
19411
  # },
19412
+ # submitted_by: {
19413
+ # connect_user_arn: "ARN",
19414
+ # },
18944
19415
  # })
18945
19416
  #
18946
19417
  # @example Response structure
@@ -19307,8 +19778,8 @@ module Aws::Connect
19307
19778
  end
19308
19779
 
19309
19780
  # This API is in preview release for Amazon Connect and is subject to
19310
- # change. To request access to this API, contact Amazon Web
19311
- # ServicesSupport.
19781
+ # change. To request access to this API, contact Amazon Web Services
19782
+ # Support.
19312
19783
  #
19313
19784
  # Updates the selected authentication profile.
19314
19785
  #
@@ -19361,6 +19832,13 @@ module Aws::Connect
19361
19832
  #
19362
19833
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts
19363
19834
  #
19835
+ # @option params [Integer] :session_inactivity_duration
19836
+ # The period, in minutes, before an agent is automatically signed out of
19837
+ # the contact center when they go inactive.
19838
+ #
19839
+ # @option params [Boolean] :session_inactivity_handling_enabled
19840
+ # Determines if automatic logout on user inactivity is enabled.
19841
+ #
19364
19842
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
19365
19843
  #
19366
19844
  # @example Request syntax with placeholder values
@@ -19373,6 +19851,8 @@ module Aws::Connect
19373
19851
  # allowed_ips: ["IpCidr"],
19374
19852
  # blocked_ips: ["IpCidr"],
19375
19853
  # periodic_session_duration: 1,
19854
+ # session_inactivity_duration: 1,
19855
+ # session_inactivity_handling_enabled: false,
19376
19856
  # })
19377
19857
  #
19378
19858
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateAuthenticationProfile AWS API Documentation
@@ -19638,6 +20118,9 @@ module Aws::Connect
19638
20118
  # @option params [Hash<String,Types::EvaluationNote>] :notes
19639
20119
  # A map of question identifiers to note value.
19640
20120
  #
20121
+ # @option params [Types::EvaluatorUserUnion] :updated_by
20122
+ # The ID of the user who updated the contact evaluation.
20123
+ #
19641
20124
  # @return [Types::UpdateContactEvaluationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
19642
20125
  #
19643
20126
  # * {Types::UpdateContactEvaluationResponse#evaluation_id #evaluation_id} => String
@@ -19662,6 +20145,9 @@ module Aws::Connect
19662
20145
  # value: "EvaluationNoteString",
19663
20146
  # },
19664
20147
  # },
20148
+ # updated_by: {
20149
+ # connect_user_arn: "ARN",
20150
+ # },
19665
20151
  # })
19666
20152
  #
19667
20153
  # @example Response structure
@@ -20159,6 +20645,9 @@ module Aws::Connect
20159
20645
  # @option params [Types::EvaluationFormScoringStrategy] :scoring_strategy
20160
20646
  # A scoring strategy of the evaluation form.
20161
20647
  #
20648
+ # @option params [Types::EvaluationFormAutoEvaluationConfiguration] :auto_evaluation_configuration
20649
+ # Whether automated evaluations are enabled.
20650
+ #
20162
20651
  # @option params [String] :client_token
20163
20652
  # A unique, case-sensitive identifier that you provide to ensure the
20164
20653
  # idempotency of the request. If not provided, the Amazon Web Services
@@ -20214,11 +20703,17 @@ module Aws::Connect
20214
20703
  # max_value: 1, # required
20215
20704
  # score: 1,
20216
20705
  # automatic_fail: false,
20706
+ # automatic_fail_configuration: {
20707
+ # target_section: "ReferenceId",
20708
+ # },
20217
20709
  # },
20218
20710
  # ],
20219
20711
  # automation: {
20220
20712
  # property_value: {
20221
- # label: "OVERALL_CUSTOMER_SENTIMENT_SCORE", # required, accepts OVERALL_CUSTOMER_SENTIMENT_SCORE, OVERALL_AGENT_SENTIMENT_SCORE, NON_TALK_TIME, NON_TALK_TIME_PERCENTAGE, NUMBER_OF_INTERRUPTIONS, CONTACT_DURATION, AGENT_INTERACTION_DURATION, CUSTOMER_HOLD_TIME
20713
+ # label: "OVERALL_CUSTOMER_SENTIMENT_SCORE", # required, accepts OVERALL_CUSTOMER_SENTIMENT_SCORE, OVERALL_AGENT_SENTIMENT_SCORE, NON_TALK_TIME, NON_TALK_TIME_PERCENTAGE, NUMBER_OF_INTERRUPTIONS, CONTACT_DURATION, AGENT_INTERACTION_DURATION, CUSTOMER_HOLD_TIME, LONGEST_HOLD_DURATION, NUMBER_OF_HOLDS, AGENT_INTERACTION_AND_HOLD_DURATION
20714
+ # },
20715
+ # answer_source: {
20716
+ # source_type: "CONTACT_LENS_DATA", # required, accepts CONTACT_LENS_DATA, GEN_AI
20222
20717
  # },
20223
20718
  # },
20224
20719
  # },
@@ -20229,11 +20724,14 @@ module Aws::Connect
20229
20724
  # text: "EvaluationFormSingleSelectQuestionOptionText", # required
20230
20725
  # score: 1,
20231
20726
  # automatic_fail: false,
20727
+ # automatic_fail_configuration: {
20728
+ # target_section: "ReferenceId",
20729
+ # },
20232
20730
  # },
20233
20731
  # ],
20234
20732
  # display_as: "DROPDOWN", # accepts DROPDOWN, RADIO
20235
20733
  # automation: {
20236
- # options: [ # required
20734
+ # options: [
20237
20735
  # {
20238
20736
  # rule_category: {
20239
20737
  # category: "SingleSelectQuestionRuleCategoryAutomationLabel", # required
@@ -20243,9 +20741,46 @@ module Aws::Connect
20243
20741
  # },
20244
20742
  # ],
20245
20743
  # default_option_ref_id: "ReferenceId",
20744
+ # answer_source: {
20745
+ # source_type: "CONTACT_LENS_DATA", # required, accepts CONTACT_LENS_DATA, GEN_AI
20746
+ # },
20747
+ # },
20748
+ # },
20749
+ # text: {
20750
+ # automation: {
20751
+ # answer_source: {
20752
+ # source_type: "CONTACT_LENS_DATA", # required, accepts CONTACT_LENS_DATA, GEN_AI
20753
+ # },
20246
20754
  # },
20247
20755
  # },
20248
20756
  # },
20757
+ # enablement: {
20758
+ # condition: { # required
20759
+ # operands: [ # required
20760
+ # {
20761
+ # expression: {
20762
+ # source: { # required
20763
+ # type: "QUESTION_REF_ID", # required, accepts QUESTION_REF_ID
20764
+ # ref_id: "ReferenceId",
20765
+ # },
20766
+ # values: [ # required
20767
+ # {
20768
+ # type: "OPTION_REF_ID", # required, accepts OPTION_REF_ID
20769
+ # ref_id: "ReferenceId",
20770
+ # },
20771
+ # ],
20772
+ # comparator: "IN", # required, accepts IN, NOT_IN
20773
+ # },
20774
+ # condition: {
20775
+ # # recursive EvaluationFormItemEnablementCondition
20776
+ # },
20777
+ # },
20778
+ # ],
20779
+ # operator: "OR", # accepts OR, AND
20780
+ # },
20781
+ # action: "DISABLE", # required, accepts DISABLE, ENABLE
20782
+ # default_action: "DISABLE", # accepts DISABLE, ENABLE
20783
+ # },
20249
20784
  # weight: 1.0,
20250
20785
  # },
20251
20786
  # },
@@ -20254,6 +20789,9 @@ module Aws::Connect
20254
20789
  # mode: "QUESTION_ONLY", # required, accepts QUESTION_ONLY, SECTION_ONLY
20255
20790
  # status: "ENABLED", # required, accepts ENABLED, DISABLED
20256
20791
  # },
20792
+ # auto_evaluation_configuration: {
20793
+ # enabled: false, # required
20794
+ # },
20257
20795
  # client_token: "ClientToken",
20258
20796
  # })
20259
20797
  #
@@ -20411,7 +20949,7 @@ module Aws::Connect
20411
20949
  # The type of attribute.
20412
20950
  #
20413
20951
  # <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
20414
- # access this feature, contact Amazon Web ServicesSupport for
20952
+ # access this feature, contact Amazon Web Services Support for
20415
20953
  # allowlisting.
20416
20954
  #
20417
20955
  # </note>
@@ -22381,7 +22919,7 @@ module Aws::Connect
22381
22919
  tracer: tracer
22382
22920
  )
22383
22921
  context[:gem_name] = 'aws-sdk-connect'
22384
- context[:gem_version] = '1.221.0'
22922
+ context[:gem_version] = '1.223.0'
22385
22923
  Seahorse::Client::Request.new(handlers, context)
22386
22924
  end
22387
22925