aws-sdk-connect 1.221.0 → 1.222.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 +545 -18
- data/lib/aws-sdk-connect/client_api.rb +352 -1
- data/lib/aws-sdk-connect/types.rb +1274 -97
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +263 -14
- data/sig/types.rbs +328 -1
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -453,6 +453,22 @@ module Aws::Connect
|
|
|
453
453
|
SENSITIVE: []
|
|
454
454
|
end
|
|
455
455
|
|
|
456
|
+
class AutoEvaluationConfiguration
|
|
457
|
+
attr_accessor enabled: bool
|
|
458
|
+
SENSITIVE: []
|
|
459
|
+
end
|
|
460
|
+
|
|
461
|
+
class AutoEvaluationDetails
|
|
462
|
+
attr_accessor auto_evaluation_enabled: bool
|
|
463
|
+
attr_accessor auto_evaluation_status: ("IN_PROGRESS" | "FAILED" | "SUCCEEDED")
|
|
464
|
+
SENSITIVE: []
|
|
465
|
+
end
|
|
466
|
+
|
|
467
|
+
class AutomaticFailConfiguration
|
|
468
|
+
attr_accessor target_section: ::String
|
|
469
|
+
SENSITIVE: []
|
|
470
|
+
end
|
|
471
|
+
|
|
456
472
|
class AvailableNumberSummary
|
|
457
473
|
attr_accessor phone_number: ::String
|
|
458
474
|
attr_accessor phone_number_country_code: ("AF" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BR" | "IO" | "VG" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CK" | "CR" | "HR" | "CU" | "CW" | "CY" | "CZ" | "CD" | "DK" | "DJ" | "DM" | "DO" | "TL" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "PF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "CI" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "KP" | "MP" | "NO" | "OM" | "PK" | "PW" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "CG" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "KR" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "VI" | "UG" | "UA" | "AE" | "GB" | "US" | "UY" | "UZ" | "VU" | "VA" | "VE" | "VN" | "WF" | "EH" | "YE" | "ZM" | "ZW")
|
|
@@ -524,6 +540,12 @@ module Aws::Connect
|
|
|
524
540
|
SENSITIVE: []
|
|
525
541
|
end
|
|
526
542
|
|
|
543
|
+
class BooleanCondition
|
|
544
|
+
attr_accessor field_name: ::String
|
|
545
|
+
attr_accessor comparison_type: ("IS_TRUE" | "IS_FALSE")
|
|
546
|
+
SENSITIVE: []
|
|
547
|
+
end
|
|
548
|
+
|
|
527
549
|
class Campaign
|
|
528
550
|
attr_accessor campaign_id: ::String
|
|
529
551
|
SENSITIVE: []
|
|
@@ -1035,7 +1057,9 @@ module Aws::Connect
|
|
|
1035
1057
|
attr_accessor description: ::String
|
|
1036
1058
|
attr_accessor items: ::Array[Types::EvaluationFormItem]
|
|
1037
1059
|
attr_accessor scoring_strategy: Types::EvaluationFormScoringStrategy
|
|
1060
|
+
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
1038
1061
|
attr_accessor client_token: ::String
|
|
1062
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1039
1063
|
SENSITIVE: []
|
|
1040
1064
|
end
|
|
1041
1065
|
|
|
@@ -1478,6 +1502,14 @@ module Aws::Connect
|
|
|
1478
1502
|
SENSITIVE: []
|
|
1479
1503
|
end
|
|
1480
1504
|
|
|
1505
|
+
class DateTimeCondition
|
|
1506
|
+
attr_accessor field_name: ::String
|
|
1507
|
+
attr_accessor min_value: ::String
|
|
1508
|
+
attr_accessor max_value: ::String
|
|
1509
|
+
attr_accessor comparison_type: ("GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL_TO" | "LESS_THAN_OR_EQUAL_TO" | "EQUAL_TO" | "RANGE")
|
|
1510
|
+
SENSITIVE: []
|
|
1511
|
+
end
|
|
1512
|
+
|
|
1481
1513
|
class DeactivateEvaluationFormRequest
|
|
1482
1514
|
attr_accessor instance_id: ::String
|
|
1483
1515
|
attr_accessor evaluation_form_id: ::String
|
|
@@ -1492,6 +1524,14 @@ module Aws::Connect
|
|
|
1492
1524
|
SENSITIVE: []
|
|
1493
1525
|
end
|
|
1494
1526
|
|
|
1527
|
+
class DecimalCondition
|
|
1528
|
+
attr_accessor field_name: ::String
|
|
1529
|
+
attr_accessor min_value: ::Float
|
|
1530
|
+
attr_accessor max_value: ::Float
|
|
1531
|
+
attr_accessor comparison_type: ("GREATER_OR_EQUAL" | "GREATER" | "LESSER_OR_EQUAL" | "LESSER" | "EQUAL" | "NOT_EQUAL" | "RANGE")
|
|
1532
|
+
SENSITIVE: []
|
|
1533
|
+
end
|
|
1534
|
+
|
|
1495
1535
|
class DefaultVocabulary
|
|
1496
1536
|
attr_accessor instance_id: ::String
|
|
1497
1537
|
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
|
|
@@ -2279,10 +2319,25 @@ module Aws::Connect
|
|
|
2279
2319
|
attr_accessor scores: ::Hash[::String, Types::EvaluationScore]
|
|
2280
2320
|
attr_accessor created_time: ::Time
|
|
2281
2321
|
attr_accessor last_modified_time: ::Time
|
|
2322
|
+
attr_accessor evaluation_type: ("STANDARD" | "CALIBRATION")
|
|
2282
2323
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
2283
2324
|
SENSITIVE: []
|
|
2284
2325
|
end
|
|
2285
2326
|
|
|
2327
|
+
class EvaluationAcknowledgement
|
|
2328
|
+
attr_accessor acknowledged_time: ::Time
|
|
2329
|
+
attr_accessor acknowledged_by: ::String
|
|
2330
|
+
attr_accessor acknowledger_comment: ::String
|
|
2331
|
+
SENSITIVE: []
|
|
2332
|
+
end
|
|
2333
|
+
|
|
2334
|
+
class EvaluationAcknowledgementSummary
|
|
2335
|
+
attr_accessor acknowledged_time: ::Time
|
|
2336
|
+
attr_accessor acknowledged_by: ::String
|
|
2337
|
+
attr_accessor acknowledger_comment: ::String
|
|
2338
|
+
SENSITIVE: []
|
|
2339
|
+
end
|
|
2340
|
+
|
|
2286
2341
|
class EvaluationAnswerData
|
|
2287
2342
|
attr_accessor string_value: ::String
|
|
2288
2343
|
attr_accessor numeric_value: ::Float
|
|
@@ -2308,6 +2363,19 @@ module Aws::Connect
|
|
|
2308
2363
|
class EvaluationAnswerOutput
|
|
2309
2364
|
attr_accessor value: Types::EvaluationAnswerData
|
|
2310
2365
|
attr_accessor system_suggested_value: Types::EvaluationAnswerData
|
|
2366
|
+
attr_accessor suggested_answers: ::Array[Types::EvaluationSuggestedAnswer]
|
|
2367
|
+
SENSITIVE: []
|
|
2368
|
+
end
|
|
2369
|
+
|
|
2370
|
+
class EvaluationAutomationRuleCategory
|
|
2371
|
+
attr_accessor category: ::String
|
|
2372
|
+
attr_accessor condition: ("PRESENT" | "NOT_PRESENT")
|
|
2373
|
+
attr_accessor points_of_interest: ::Array[Types::EvaluationTranscriptPointOfInterest]
|
|
2374
|
+
SENSITIVE: []
|
|
2375
|
+
end
|
|
2376
|
+
|
|
2377
|
+
class EvaluationContactLensAnswerAnalysisDetails
|
|
2378
|
+
attr_accessor matched_rule_categories: ::Array[Types::EvaluationAutomationRuleCategory]
|
|
2311
2379
|
SENSITIVE: []
|
|
2312
2380
|
end
|
|
2313
2381
|
|
|
@@ -2325,10 +2393,16 @@ module Aws::Connect
|
|
|
2325
2393
|
attr_accessor created_by: ::String
|
|
2326
2394
|
attr_accessor last_modified_time: ::Time
|
|
2327
2395
|
attr_accessor last_modified_by: ::String
|
|
2396
|
+
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
2328
2397
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
2329
2398
|
SENSITIVE: []
|
|
2330
2399
|
end
|
|
2331
2400
|
|
|
2401
|
+
class EvaluationFormAutoEvaluationConfiguration
|
|
2402
|
+
attr_accessor enabled: bool
|
|
2403
|
+
SENSITIVE: []
|
|
2404
|
+
end
|
|
2405
|
+
|
|
2332
2406
|
class EvaluationFormContent
|
|
2333
2407
|
attr_accessor evaluation_form_version: ::Integer
|
|
2334
2408
|
attr_accessor evaluation_form_id: ::String
|
|
@@ -2337,6 +2411,7 @@ module Aws::Connect
|
|
|
2337
2411
|
attr_accessor description: ::String
|
|
2338
2412
|
attr_accessor items: ::Array[Types::EvaluationFormItem]
|
|
2339
2413
|
attr_accessor scoring_strategy: Types::EvaluationFormScoringStrategy
|
|
2414
|
+
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
2340
2415
|
SENSITIVE: []
|
|
2341
2416
|
end
|
|
2342
2417
|
|
|
@@ -2354,13 +2429,62 @@ module Aws::Connect
|
|
|
2354
2429
|
end
|
|
2355
2430
|
end
|
|
2356
2431
|
|
|
2432
|
+
class EvaluationFormItemEnablementCondition
|
|
2433
|
+
attr_accessor operands: ::Array[Types::EvaluationFormItemEnablementConditionOperand]
|
|
2434
|
+
attr_accessor operator: ("OR" | "AND")
|
|
2435
|
+
SENSITIVE: []
|
|
2436
|
+
end
|
|
2437
|
+
|
|
2438
|
+
class EvaluationFormItemEnablementConditionOperand
|
|
2439
|
+
attr_accessor expression: Types::EvaluationFormItemEnablementExpression
|
|
2440
|
+
attr_accessor condition: Types::EvaluationFormItemEnablementCondition
|
|
2441
|
+
attr_accessor unknown: untyped
|
|
2442
|
+
SENSITIVE: []
|
|
2443
|
+
|
|
2444
|
+
class Expression < EvaluationFormItemEnablementConditionOperand
|
|
2445
|
+
end
|
|
2446
|
+
class Condition < EvaluationFormItemEnablementConditionOperand
|
|
2447
|
+
end
|
|
2448
|
+
class Unknown < EvaluationFormItemEnablementConditionOperand
|
|
2449
|
+
end
|
|
2450
|
+
end
|
|
2451
|
+
|
|
2452
|
+
class EvaluationFormItemEnablementConfiguration
|
|
2453
|
+
attr_accessor condition: Types::EvaluationFormItemEnablementCondition
|
|
2454
|
+
attr_accessor action: ("DISABLE" | "ENABLE")
|
|
2455
|
+
attr_accessor default_action: ("DISABLE" | "ENABLE")
|
|
2456
|
+
SENSITIVE: []
|
|
2457
|
+
end
|
|
2458
|
+
|
|
2459
|
+
class EvaluationFormItemEnablementExpression
|
|
2460
|
+
attr_accessor source: Types::EvaluationFormItemEnablementSource
|
|
2461
|
+
attr_accessor values: ::Array[Types::EvaluationFormItemEnablementSourceValue]
|
|
2462
|
+
attr_accessor comparator: ("IN" | "NOT_IN")
|
|
2463
|
+
SENSITIVE: []
|
|
2464
|
+
end
|
|
2465
|
+
|
|
2466
|
+
class EvaluationFormItemEnablementSource
|
|
2467
|
+
attr_accessor type: ("QUESTION_REF_ID")
|
|
2468
|
+
attr_accessor ref_id: ::String
|
|
2469
|
+
SENSITIVE: []
|
|
2470
|
+
end
|
|
2471
|
+
|
|
2472
|
+
class EvaluationFormItemEnablementSourceValue
|
|
2473
|
+
attr_accessor type: ("OPTION_REF_ID")
|
|
2474
|
+
attr_accessor ref_id: ::String
|
|
2475
|
+
SENSITIVE: []
|
|
2476
|
+
end
|
|
2477
|
+
|
|
2357
2478
|
class EvaluationFormNumericQuestionAutomation
|
|
2358
2479
|
attr_accessor property_value: Types::NumericQuestionPropertyValueAutomation
|
|
2480
|
+
attr_accessor answer_source: Types::EvaluationFormQuestionAutomationAnswerSource
|
|
2359
2481
|
attr_accessor unknown: untyped
|
|
2360
2482
|
SENSITIVE: []
|
|
2361
2483
|
|
|
2362
2484
|
class PropertyValue < EvaluationFormNumericQuestionAutomation
|
|
2363
2485
|
end
|
|
2486
|
+
class AnswerSource < EvaluationFormNumericQuestionAutomation
|
|
2487
|
+
end
|
|
2364
2488
|
class Unknown < EvaluationFormNumericQuestionAutomation
|
|
2365
2489
|
end
|
|
2366
2490
|
end
|
|
@@ -2370,6 +2494,7 @@ module Aws::Connect
|
|
|
2370
2494
|
attr_accessor max_value: ::Integer
|
|
2371
2495
|
attr_accessor score: ::Integer
|
|
2372
2496
|
attr_accessor automatic_fail: bool
|
|
2497
|
+
attr_accessor automatic_fail_configuration: Types::AutomaticFailConfiguration
|
|
2373
2498
|
SENSITIVE: []
|
|
2374
2499
|
end
|
|
2375
2500
|
|
|
@@ -2388,13 +2513,20 @@ module Aws::Connect
|
|
|
2388
2513
|
attr_accessor not_applicable_enabled: bool
|
|
2389
2514
|
attr_accessor question_type: ("TEXT" | "SINGLESELECT" | "NUMERIC")
|
|
2390
2515
|
attr_accessor question_type_properties: Types::EvaluationFormQuestionTypeProperties
|
|
2516
|
+
attr_accessor enablement: Types::EvaluationFormItemEnablementConfiguration
|
|
2391
2517
|
attr_accessor weight: ::Float
|
|
2392
2518
|
SENSITIVE: []
|
|
2393
2519
|
end
|
|
2394
2520
|
|
|
2521
|
+
class EvaluationFormQuestionAutomationAnswerSource
|
|
2522
|
+
attr_accessor source_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
2523
|
+
SENSITIVE: []
|
|
2524
|
+
end
|
|
2525
|
+
|
|
2395
2526
|
class EvaluationFormQuestionTypeProperties
|
|
2396
2527
|
attr_accessor numeric: Types::EvaluationFormNumericQuestionProperties
|
|
2397
2528
|
attr_accessor single_select: Types::EvaluationFormSingleSelectQuestionProperties
|
|
2529
|
+
attr_accessor text: Types::EvaluationFormTextQuestionProperties
|
|
2398
2530
|
attr_accessor unknown: untyped
|
|
2399
2531
|
SENSITIVE: []
|
|
2400
2532
|
|
|
@@ -2402,6 +2534,8 @@ module Aws::Connect
|
|
|
2402
2534
|
end
|
|
2403
2535
|
class SingleSelect < EvaluationFormQuestionTypeProperties
|
|
2404
2536
|
end
|
|
2537
|
+
class Text < EvaluationFormQuestionTypeProperties
|
|
2538
|
+
end
|
|
2405
2539
|
class Unknown < EvaluationFormQuestionTypeProperties
|
|
2406
2540
|
end
|
|
2407
2541
|
end
|
|
@@ -2412,6 +2546,40 @@ module Aws::Connect
|
|
|
2412
2546
|
SENSITIVE: []
|
|
2413
2547
|
end
|
|
2414
2548
|
|
|
2549
|
+
class EvaluationFormSearchCriteria
|
|
2550
|
+
attr_accessor or_conditions: ::Array[Types::EvaluationFormSearchCriteria]
|
|
2551
|
+
attr_accessor and_conditions: ::Array[Types::EvaluationFormSearchCriteria]
|
|
2552
|
+
attr_accessor string_condition: Types::StringCondition
|
|
2553
|
+
attr_accessor number_condition: Types::NumberCondition
|
|
2554
|
+
attr_accessor boolean_condition: Types::BooleanCondition
|
|
2555
|
+
attr_accessor date_time_condition: Types::DateTimeCondition
|
|
2556
|
+
SENSITIVE: []
|
|
2557
|
+
end
|
|
2558
|
+
|
|
2559
|
+
class EvaluationFormSearchFilter
|
|
2560
|
+
attr_accessor attribute_filter: Types::ControlPlaneAttributeFilter
|
|
2561
|
+
SENSITIVE: []
|
|
2562
|
+
end
|
|
2563
|
+
|
|
2564
|
+
class EvaluationFormSearchSummary
|
|
2565
|
+
attr_accessor evaluation_form_id: ::String
|
|
2566
|
+
attr_accessor evaluation_form_arn: ::String
|
|
2567
|
+
attr_accessor title: ::String
|
|
2568
|
+
attr_accessor status: ("DRAFT" | "ACTIVE")
|
|
2569
|
+
attr_accessor description: ::String
|
|
2570
|
+
attr_accessor created_time: ::Time
|
|
2571
|
+
attr_accessor created_by: ::String
|
|
2572
|
+
attr_accessor last_modified_time: ::Time
|
|
2573
|
+
attr_accessor last_modified_by: ::String
|
|
2574
|
+
attr_accessor last_activated_time: ::Time
|
|
2575
|
+
attr_accessor last_activated_by: ::String
|
|
2576
|
+
attr_accessor latest_version: ::Integer
|
|
2577
|
+
attr_accessor active_version: ::Integer
|
|
2578
|
+
attr_accessor auto_evaluation_enabled: bool
|
|
2579
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
2580
|
+
SENSITIVE: []
|
|
2581
|
+
end
|
|
2582
|
+
|
|
2415
2583
|
class EvaluationFormSection
|
|
2416
2584
|
attr_accessor title: ::String
|
|
2417
2585
|
attr_accessor ref_id: ::String
|
|
@@ -2424,6 +2592,7 @@ module Aws::Connect
|
|
|
2424
2592
|
class EvaluationFormSingleSelectQuestionAutomation
|
|
2425
2593
|
attr_accessor options: ::Array[Types::EvaluationFormSingleSelectQuestionAutomationOption]
|
|
2426
2594
|
attr_accessor default_option_ref_id: ::String
|
|
2595
|
+
attr_accessor answer_source: Types::EvaluationFormQuestionAutomationAnswerSource
|
|
2427
2596
|
SENSITIVE: []
|
|
2428
2597
|
end
|
|
2429
2598
|
|
|
@@ -2443,6 +2612,7 @@ module Aws::Connect
|
|
|
2443
2612
|
attr_accessor text: ::String
|
|
2444
2613
|
attr_accessor score: ::Integer
|
|
2445
2614
|
attr_accessor automatic_fail: bool
|
|
2615
|
+
attr_accessor automatic_fail_configuration: Types::AutomaticFailConfiguration
|
|
2446
2616
|
SENSITIVE: []
|
|
2447
2617
|
end
|
|
2448
2618
|
|
|
@@ -2468,6 +2638,16 @@ module Aws::Connect
|
|
|
2468
2638
|
SENSITIVE: []
|
|
2469
2639
|
end
|
|
2470
2640
|
|
|
2641
|
+
class EvaluationFormTextQuestionAutomation
|
|
2642
|
+
attr_accessor answer_source: Types::EvaluationFormQuestionAutomationAnswerSource
|
|
2643
|
+
SENSITIVE: []
|
|
2644
|
+
end
|
|
2645
|
+
|
|
2646
|
+
class EvaluationFormTextQuestionProperties
|
|
2647
|
+
attr_accessor automation: Types::EvaluationFormTextQuestionAutomation
|
|
2648
|
+
SENSITIVE: []
|
|
2649
|
+
end
|
|
2650
|
+
|
|
2471
2651
|
class EvaluationFormVersionSummary
|
|
2472
2652
|
attr_accessor evaluation_form_arn: ::String
|
|
2473
2653
|
attr_accessor evaluation_form_id: ::String
|
|
@@ -2481,11 +2661,20 @@ module Aws::Connect
|
|
|
2481
2661
|
SENSITIVE: []
|
|
2482
2662
|
end
|
|
2483
2663
|
|
|
2664
|
+
class EvaluationGenAIAnswerAnalysisDetails
|
|
2665
|
+
attr_accessor justification: ::String
|
|
2666
|
+
attr_accessor points_of_interest: ::Array[Types::EvaluationTranscriptPointOfInterest]
|
|
2667
|
+
SENSITIVE: []
|
|
2668
|
+
end
|
|
2669
|
+
|
|
2484
2670
|
class EvaluationMetadata
|
|
2485
2671
|
attr_accessor contact_id: ::String
|
|
2486
2672
|
attr_accessor evaluator_arn: ::String
|
|
2487
2673
|
attr_accessor contact_agent_id: ::String
|
|
2674
|
+
attr_accessor calibration_session_id: ::String
|
|
2488
2675
|
attr_accessor score: Types::EvaluationScore
|
|
2676
|
+
attr_accessor auto_evaluation: Types::AutoEvaluationDetails
|
|
2677
|
+
attr_accessor acknowledgement: Types::EvaluationAcknowledgement
|
|
2489
2678
|
SENSITIVE: []
|
|
2490
2679
|
end
|
|
2491
2680
|
|
|
@@ -2494,6 +2683,25 @@ module Aws::Connect
|
|
|
2494
2683
|
SENSITIVE: []
|
|
2495
2684
|
end
|
|
2496
2685
|
|
|
2686
|
+
class EvaluationQuestionAnswerAnalysisDetails
|
|
2687
|
+
attr_accessor gen_ai: Types::EvaluationGenAIAnswerAnalysisDetails
|
|
2688
|
+
attr_accessor contact_lens: Types::EvaluationContactLensAnswerAnalysisDetails
|
|
2689
|
+
attr_accessor unknown: untyped
|
|
2690
|
+
SENSITIVE: []
|
|
2691
|
+
|
|
2692
|
+
class GenAi < EvaluationQuestionAnswerAnalysisDetails
|
|
2693
|
+
end
|
|
2694
|
+
class ContactLens < EvaluationQuestionAnswerAnalysisDetails
|
|
2695
|
+
end
|
|
2696
|
+
class Unknown < EvaluationQuestionAnswerAnalysisDetails
|
|
2697
|
+
end
|
|
2698
|
+
end
|
|
2699
|
+
|
|
2700
|
+
class EvaluationQuestionInputDetails
|
|
2701
|
+
attr_accessor transcript_type: ("RAW" | "REDACTED")
|
|
2702
|
+
SENSITIVE: []
|
|
2703
|
+
end
|
|
2704
|
+
|
|
2497
2705
|
class EvaluationScore
|
|
2498
2706
|
attr_accessor percentage: ::Float
|
|
2499
2707
|
attr_accessor not_applicable: bool
|
|
@@ -2501,19 +2709,101 @@ module Aws::Connect
|
|
|
2501
2709
|
SENSITIVE: []
|
|
2502
2710
|
end
|
|
2503
2711
|
|
|
2712
|
+
class EvaluationSearchCriteria
|
|
2713
|
+
attr_accessor or_conditions: ::Array[Types::EvaluationSearchCriteria]
|
|
2714
|
+
attr_accessor and_conditions: ::Array[Types::EvaluationSearchCriteria]
|
|
2715
|
+
attr_accessor string_condition: Types::StringCondition
|
|
2716
|
+
attr_accessor number_condition: Types::NumberCondition
|
|
2717
|
+
attr_accessor boolean_condition: Types::BooleanCondition
|
|
2718
|
+
attr_accessor date_time_condition: Types::DateTimeCondition
|
|
2719
|
+
attr_accessor decimal_condition: Types::DecimalCondition
|
|
2720
|
+
SENSITIVE: []
|
|
2721
|
+
end
|
|
2722
|
+
|
|
2723
|
+
class EvaluationSearchFilter
|
|
2724
|
+
attr_accessor attribute_filter: Types::ControlPlaneAttributeFilter
|
|
2725
|
+
SENSITIVE: []
|
|
2726
|
+
end
|
|
2727
|
+
|
|
2728
|
+
class EvaluationSearchMetadata
|
|
2729
|
+
attr_accessor contact_id: ::String
|
|
2730
|
+
attr_accessor evaluator_arn: ::String
|
|
2731
|
+
attr_accessor contact_agent_id: ::String
|
|
2732
|
+
attr_accessor calibration_session_id: ::String
|
|
2733
|
+
attr_accessor score_percentage: ::Float
|
|
2734
|
+
attr_accessor score_automatic_fail: bool
|
|
2735
|
+
attr_accessor score_not_applicable: bool
|
|
2736
|
+
attr_accessor auto_evaluation_enabled: bool
|
|
2737
|
+
attr_accessor auto_evaluation_status: ("IN_PROGRESS" | "FAILED" | "SUCCEEDED")
|
|
2738
|
+
attr_accessor acknowledged_time: ::Time
|
|
2739
|
+
attr_accessor acknowledged_by: ::String
|
|
2740
|
+
attr_accessor acknowledger_comment: ::String
|
|
2741
|
+
SENSITIVE: []
|
|
2742
|
+
end
|
|
2743
|
+
|
|
2744
|
+
class EvaluationSearchSummary
|
|
2745
|
+
attr_accessor evaluation_id: ::String
|
|
2746
|
+
attr_accessor evaluation_arn: ::String
|
|
2747
|
+
attr_accessor evaluation_form_id: ::String
|
|
2748
|
+
attr_accessor evaluation_form_version: ::Integer
|
|
2749
|
+
attr_accessor metadata: Types::EvaluationSearchMetadata
|
|
2750
|
+
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
2751
|
+
attr_accessor evaluation_type: ("STANDARD" | "CALIBRATION")
|
|
2752
|
+
attr_accessor created_time: ::Time
|
|
2753
|
+
attr_accessor last_modified_time: ::Time
|
|
2754
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
2755
|
+
SENSITIVE: []
|
|
2756
|
+
end
|
|
2757
|
+
|
|
2758
|
+
class EvaluationSuggestedAnswer
|
|
2759
|
+
attr_accessor value: Types::EvaluationAnswerData
|
|
2760
|
+
attr_accessor status: ("IN_PROGRESS" | "FAILED" | "SUCCEEDED")
|
|
2761
|
+
attr_accessor input: Types::EvaluationQuestionInputDetails
|
|
2762
|
+
attr_accessor analysis_type: ("CONTACT_LENS_DATA" | "GEN_AI")
|
|
2763
|
+
attr_accessor analysis_details: Types::EvaluationQuestionAnswerAnalysisDetails
|
|
2764
|
+
SENSITIVE: []
|
|
2765
|
+
end
|
|
2766
|
+
|
|
2767
|
+
class EvaluationSuggestedAnswerTranscriptMillisecondOffsets
|
|
2768
|
+
attr_accessor begin_offset_millis: ::Integer
|
|
2769
|
+
SENSITIVE: []
|
|
2770
|
+
end
|
|
2771
|
+
|
|
2504
2772
|
class EvaluationSummary
|
|
2505
2773
|
attr_accessor evaluation_id: ::String
|
|
2506
2774
|
attr_accessor evaluation_arn: ::String
|
|
2507
2775
|
attr_accessor evaluation_form_title: ::String
|
|
2508
2776
|
attr_accessor evaluation_form_id: ::String
|
|
2777
|
+
attr_accessor calibration_session_id: ::String
|
|
2509
2778
|
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
2779
|
+
attr_accessor auto_evaluation_enabled: bool
|
|
2780
|
+
attr_accessor auto_evaluation_status: ("IN_PROGRESS" | "FAILED" | "SUCCEEDED")
|
|
2510
2781
|
attr_accessor evaluator_arn: ::String
|
|
2511
2782
|
attr_accessor score: Types::EvaluationScore
|
|
2783
|
+
attr_accessor acknowledgement: Types::EvaluationAcknowledgementSummary
|
|
2784
|
+
attr_accessor evaluation_type: ("STANDARD" | "CALIBRATION")
|
|
2512
2785
|
attr_accessor created_time: ::Time
|
|
2513
2786
|
attr_accessor last_modified_time: ::Time
|
|
2514
2787
|
SENSITIVE: []
|
|
2515
2788
|
end
|
|
2516
2789
|
|
|
2790
|
+
class EvaluationTranscriptPointOfInterest
|
|
2791
|
+
attr_accessor millisecond_offsets: Types::EvaluationSuggestedAnswerTranscriptMillisecondOffsets
|
|
2792
|
+
attr_accessor transcript_segment: ::String
|
|
2793
|
+
SENSITIVE: []
|
|
2794
|
+
end
|
|
2795
|
+
|
|
2796
|
+
class EvaluatorUserUnion
|
|
2797
|
+
attr_accessor connect_user_arn: ::String
|
|
2798
|
+
attr_accessor unknown: untyped
|
|
2799
|
+
SENSITIVE: []
|
|
2800
|
+
|
|
2801
|
+
class ConnectUserArn < EvaluatorUserUnion
|
|
2802
|
+
end
|
|
2803
|
+
class Unknown < EvaluatorUserUnion
|
|
2804
|
+
end
|
|
2805
|
+
end
|
|
2806
|
+
|
|
2517
2807
|
class EventBridgeActionDefinition
|
|
2518
2808
|
attr_accessor name: ::String
|
|
2519
2809
|
SENSITIVE: []
|
|
@@ -4006,7 +4296,7 @@ module Aws::Connect
|
|
|
4006
4296
|
end
|
|
4007
4297
|
|
|
4008
4298
|
class NumericQuestionPropertyValueAutomation
|
|
4009
|
-
attr_accessor label: ("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")
|
|
4299
|
+
attr_accessor label: ("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")
|
|
4010
4300
|
SENSITIVE: []
|
|
4011
4301
|
end
|
|
4012
4302
|
|
|
@@ -4868,6 +5158,22 @@ module Aws::Connect
|
|
|
4868
5158
|
SENSITIVE: []
|
|
4869
5159
|
end
|
|
4870
5160
|
|
|
5161
|
+
class SearchContactEvaluationsRequest
|
|
5162
|
+
attr_accessor instance_id: ::String
|
|
5163
|
+
attr_accessor next_token: ::String
|
|
5164
|
+
attr_accessor max_results: ::Integer
|
|
5165
|
+
attr_accessor search_criteria: Types::EvaluationSearchCriteria
|
|
5166
|
+
attr_accessor search_filter: Types::EvaluationSearchFilter
|
|
5167
|
+
SENSITIVE: []
|
|
5168
|
+
end
|
|
5169
|
+
|
|
5170
|
+
class SearchContactEvaluationsResponse
|
|
5171
|
+
attr_accessor evaluation_search_summary_list: ::Array[Types::EvaluationSearchSummary]
|
|
5172
|
+
attr_accessor next_token: ::String
|
|
5173
|
+
attr_accessor approximate_total_count: ::Integer
|
|
5174
|
+
SENSITIVE: []
|
|
5175
|
+
end
|
|
5176
|
+
|
|
4871
5177
|
class SearchContactFlowModulesRequest
|
|
4872
5178
|
attr_accessor instance_id: ::String
|
|
4873
5179
|
attr_accessor next_token: ::String
|
|
@@ -4973,6 +5279,22 @@ module Aws::Connect
|
|
|
4973
5279
|
SENSITIVE: []
|
|
4974
5280
|
end
|
|
4975
5281
|
|
|
5282
|
+
class SearchEvaluationFormsRequest
|
|
5283
|
+
attr_accessor instance_id: ::String
|
|
5284
|
+
attr_accessor next_token: ::String
|
|
5285
|
+
attr_accessor max_results: ::Integer
|
|
5286
|
+
attr_accessor search_criteria: Types::EvaluationFormSearchCriteria
|
|
5287
|
+
attr_accessor search_filter: Types::EvaluationFormSearchFilter
|
|
5288
|
+
SENSITIVE: []
|
|
5289
|
+
end
|
|
5290
|
+
|
|
5291
|
+
class SearchEvaluationFormsResponse
|
|
5292
|
+
attr_accessor evaluation_form_search_summary_list: ::Array[Types::EvaluationFormSearchSummary]
|
|
5293
|
+
attr_accessor next_token: ::String
|
|
5294
|
+
attr_accessor approximate_total_count: ::Integer
|
|
5295
|
+
SENSITIVE: []
|
|
5296
|
+
end
|
|
5297
|
+
|
|
4976
5298
|
class SearchHoursOfOperationOverridesRequest
|
|
4977
5299
|
attr_accessor instance_id: ::String
|
|
4978
5300
|
attr_accessor next_token: ::String
|
|
@@ -5403,7 +5725,9 @@ module Aws::Connect
|
|
|
5403
5725
|
attr_accessor instance_id: ::String
|
|
5404
5726
|
attr_accessor contact_id: ::String
|
|
5405
5727
|
attr_accessor evaluation_form_id: ::String
|
|
5728
|
+
attr_accessor auto_evaluation_configuration: Types::AutoEvaluationConfiguration
|
|
5406
5729
|
attr_accessor client_token: ::String
|
|
5730
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
5407
5731
|
SENSITIVE: []
|
|
5408
5732
|
end
|
|
5409
5733
|
|
|
@@ -5642,6 +5966,7 @@ module Aws::Connect
|
|
|
5642
5966
|
attr_accessor evaluation_id: ::String
|
|
5643
5967
|
attr_accessor answers: ::Hash[::String, Types::EvaluationAnswerInput]
|
|
5644
5968
|
attr_accessor notes: ::Hash[::String, Types::EvaluationNote]
|
|
5969
|
+
attr_accessor submitted_by: Types::EvaluatorUserUnion
|
|
5645
5970
|
SENSITIVE: []
|
|
5646
5971
|
end
|
|
5647
5972
|
|
|
@@ -5914,6 +6239,7 @@ module Aws::Connect
|
|
|
5914
6239
|
attr_accessor evaluation_id: ::String
|
|
5915
6240
|
attr_accessor answers: ::Hash[::String, Types::EvaluationAnswerInput]
|
|
5916
6241
|
attr_accessor notes: ::Hash[::String, Types::EvaluationNote]
|
|
6242
|
+
attr_accessor updated_by: Types::EvaluatorUserUnion
|
|
5917
6243
|
SENSITIVE: []
|
|
5918
6244
|
end
|
|
5919
6245
|
|
|
@@ -6041,6 +6367,7 @@ module Aws::Connect
|
|
|
6041
6367
|
attr_accessor description: ::String
|
|
6042
6368
|
attr_accessor items: ::Array[Types::EvaluationFormItem]
|
|
6043
6369
|
attr_accessor scoring_strategy: Types::EvaluationFormScoringStrategy
|
|
6370
|
+
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
6044
6371
|
attr_accessor client_token: ::String
|
|
6045
6372
|
SENSITIVE: []
|
|
6046
6373
|
end
|