aws-sdk-connect 1.235.0 → 1.237.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +698 -4
- data/lib/aws-sdk-connect/client_api.rb +457 -0
- data/lib/aws-sdk-connect/errors.rb +16 -0
- data/lib/aws-sdk-connect/types.rb +1030 -20
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +235 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +284 -3
- metadata +3 -3
data/sig/types.rbs
CHANGED
|
@@ -1338,6 +1338,7 @@ module Aws::Connect
|
|
|
1338
1338
|
attr_accessor client_token: ::String
|
|
1339
1339
|
attr_accessor as_draft: bool
|
|
1340
1340
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1341
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
1341
1342
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
1342
1343
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
1343
1344
|
SENSITIVE: []
|
|
@@ -1597,6 +1598,27 @@ module Aws::Connect
|
|
|
1597
1598
|
SENSITIVE: []
|
|
1598
1599
|
end
|
|
1599
1600
|
|
|
1601
|
+
class CreateTestCaseRequest
|
|
1602
|
+
attr_accessor instance_id: ::String
|
|
1603
|
+
attr_accessor name: ::String
|
|
1604
|
+
attr_accessor description: ::String
|
|
1605
|
+
attr_accessor content: ::String
|
|
1606
|
+
attr_accessor entry_point: Types::TestCaseEntryPoint
|
|
1607
|
+
attr_accessor initialization_data: ::String
|
|
1608
|
+
attr_accessor status: ("PUBLISHED" | "SAVED")
|
|
1609
|
+
attr_accessor test_case_id: ::String
|
|
1610
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1611
|
+
attr_accessor last_modified_time: ::Time
|
|
1612
|
+
attr_accessor last_modified_region: ::String
|
|
1613
|
+
SENSITIVE: []
|
|
1614
|
+
end
|
|
1615
|
+
|
|
1616
|
+
class CreateTestCaseResponse
|
|
1617
|
+
attr_accessor test_case_id: ::String
|
|
1618
|
+
attr_accessor test_case_arn: ::String
|
|
1619
|
+
SENSITIVE: []
|
|
1620
|
+
end
|
|
1621
|
+
|
|
1600
1622
|
class CreateTrafficDistributionGroupRequest
|
|
1601
1623
|
attr_accessor name: ::String
|
|
1602
1624
|
attr_accessor description: ::String
|
|
@@ -2163,6 +2185,15 @@ module Aws::Connect
|
|
|
2163
2185
|
class DeleteTaskTemplateResponse < Aws::EmptyStructure
|
|
2164
2186
|
end
|
|
2165
2187
|
|
|
2188
|
+
class DeleteTestCaseRequest
|
|
2189
|
+
attr_accessor instance_id: ::String
|
|
2190
|
+
attr_accessor test_case_id: ::String
|
|
2191
|
+
SENSITIVE: []
|
|
2192
|
+
end
|
|
2193
|
+
|
|
2194
|
+
class DeleteTestCaseResponse < Aws::EmptyStructure
|
|
2195
|
+
end
|
|
2196
|
+
|
|
2166
2197
|
class DeleteTrafficDistributionGroupRequest
|
|
2167
2198
|
attr_accessor traffic_distribution_group_id: ::String
|
|
2168
2199
|
SENSITIVE: []
|
|
@@ -2528,6 +2559,18 @@ module Aws::Connect
|
|
|
2528
2559
|
SENSITIVE: []
|
|
2529
2560
|
end
|
|
2530
2561
|
|
|
2562
|
+
class DescribeTestCaseRequest
|
|
2563
|
+
attr_accessor instance_id: ::String
|
|
2564
|
+
attr_accessor test_case_id: ::String
|
|
2565
|
+
attr_accessor status: ("PUBLISHED" | "SAVED")
|
|
2566
|
+
SENSITIVE: []
|
|
2567
|
+
end
|
|
2568
|
+
|
|
2569
|
+
class DescribeTestCaseResponse
|
|
2570
|
+
attr_accessor test_case: Types::TestCase
|
|
2571
|
+
SENSITIVE: []
|
|
2572
|
+
end
|
|
2573
|
+
|
|
2531
2574
|
class DescribeTrafficDistributionGroupRequest
|
|
2532
2575
|
attr_accessor traffic_distribution_group_id: ::String
|
|
2533
2576
|
SENSITIVE: []
|
|
@@ -2919,7 +2962,7 @@ module Aws::Connect
|
|
|
2919
2962
|
attr_accessor metadata: Types::EvaluationMetadata
|
|
2920
2963
|
attr_accessor answers: ::Hash[::String, Types::EvaluationAnswerOutput]
|
|
2921
2964
|
attr_accessor notes: ::Hash[::String, Types::EvaluationNote]
|
|
2922
|
-
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
2965
|
+
attr_accessor status: ("DRAFT" | "SUBMITTED" | "REVIEW_REQUESTED" | "UNDER_REVIEW")
|
|
2923
2966
|
attr_accessor scores: ::Hash[::String, Types::EvaluationScore]
|
|
2924
2967
|
attr_accessor created_time: ::Time
|
|
2925
2968
|
attr_accessor last_modified_time: ::Time
|
|
@@ -3010,6 +3053,7 @@ module Aws::Connect
|
|
|
3010
3053
|
attr_accessor last_modified_time: ::Time
|
|
3011
3054
|
attr_accessor last_modified_by: ::String
|
|
3012
3055
|
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
3056
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
3013
3057
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
3014
3058
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
3015
3059
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
@@ -3032,6 +3076,7 @@ module Aws::Connect
|
|
|
3032
3076
|
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
3033
3077
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
3034
3078
|
attr_accessor language_configuration: Types::EvaluationFormLanguageConfiguration
|
|
3079
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
3035
3080
|
SENSITIVE: []
|
|
3036
3081
|
end
|
|
3037
3082
|
|
|
@@ -3341,6 +3386,7 @@ module Aws::Connect
|
|
|
3341
3386
|
attr_accessor score: Types::EvaluationScore
|
|
3342
3387
|
attr_accessor auto_evaluation: Types::AutoEvaluationDetails
|
|
3343
3388
|
attr_accessor acknowledgement: Types::EvaluationAcknowledgement
|
|
3389
|
+
attr_accessor review: Types::EvaluationReviewMetadata
|
|
3344
3390
|
attr_accessor contact_participant: Types::EvaluationContactParticipant
|
|
3345
3391
|
attr_accessor sampling_job_id: ::String
|
|
3346
3392
|
SENSITIVE: []
|
|
@@ -3370,6 +3416,38 @@ module Aws::Connect
|
|
|
3370
3416
|
SENSITIVE: []
|
|
3371
3417
|
end
|
|
3372
3418
|
|
|
3419
|
+
class EvaluationReviewConfiguration
|
|
3420
|
+
attr_accessor review_notification_recipients: ::Array[Types::EvaluationReviewNotificationRecipient]
|
|
3421
|
+
attr_accessor eligibility_days: ::Integer
|
|
3422
|
+
SENSITIVE: []
|
|
3423
|
+
end
|
|
3424
|
+
|
|
3425
|
+
class EvaluationReviewMetadata
|
|
3426
|
+
attr_accessor review_id: ::String
|
|
3427
|
+
attr_accessor created_time: ::Time
|
|
3428
|
+
attr_accessor created_by: ::String
|
|
3429
|
+
attr_accessor review_request_comments: ::Array[Types::EvaluationReviewRequestComment]
|
|
3430
|
+
SENSITIVE: []
|
|
3431
|
+
end
|
|
3432
|
+
|
|
3433
|
+
class EvaluationReviewNotificationRecipient
|
|
3434
|
+
attr_accessor type: ("USER_ID")
|
|
3435
|
+
attr_accessor value: Types::EvaluationReviewNotificationRecipientValue
|
|
3436
|
+
SENSITIVE: []
|
|
3437
|
+
end
|
|
3438
|
+
|
|
3439
|
+
class EvaluationReviewNotificationRecipientValue
|
|
3440
|
+
attr_accessor user_id: ::String
|
|
3441
|
+
SENSITIVE: []
|
|
3442
|
+
end
|
|
3443
|
+
|
|
3444
|
+
class EvaluationReviewRequestComment
|
|
3445
|
+
attr_accessor comment: ::String
|
|
3446
|
+
attr_accessor created_time: ::Time
|
|
3447
|
+
attr_accessor created_by: ::String
|
|
3448
|
+
SENSITIVE: []
|
|
3449
|
+
end
|
|
3450
|
+
|
|
3373
3451
|
class EvaluationScore
|
|
3374
3452
|
attr_accessor percentage: ::Float
|
|
3375
3453
|
attr_accessor not_applicable: bool
|
|
@@ -3421,7 +3499,7 @@ module Aws::Connect
|
|
|
3421
3499
|
attr_accessor evaluation_form_version: ::Integer
|
|
3422
3500
|
attr_accessor evaluation_form_title: ::String
|
|
3423
3501
|
attr_accessor metadata: Types::EvaluationSearchMetadata
|
|
3424
|
-
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
3502
|
+
attr_accessor status: ("DRAFT" | "SUBMITTED" | "REVIEW_REQUESTED" | "UNDER_REVIEW")
|
|
3425
3503
|
attr_accessor evaluation_type: ("STANDARD" | "CALIBRATION")
|
|
3426
3504
|
attr_accessor created_time: ::Time
|
|
3427
3505
|
attr_accessor last_modified_time: ::Time
|
|
@@ -3449,7 +3527,7 @@ module Aws::Connect
|
|
|
3449
3527
|
attr_accessor evaluation_form_title: ::String
|
|
3450
3528
|
attr_accessor evaluation_form_id: ::String
|
|
3451
3529
|
attr_accessor calibration_session_id: ::String
|
|
3452
|
-
attr_accessor status: ("DRAFT" | "SUBMITTED")
|
|
3530
|
+
attr_accessor status: ("DRAFT" | "SUBMITTED" | "REVIEW_REQUESTED" | "UNDER_REVIEW")
|
|
3453
3531
|
attr_accessor auto_evaluation_enabled: bool
|
|
3454
3532
|
attr_accessor auto_evaluation_status: ("IN_PROGRESS" | "FAILED" | "SUCCEEDED")
|
|
3455
3533
|
attr_accessor evaluator_arn: ::String
|
|
@@ -3484,6 +3562,14 @@ module Aws::Connect
|
|
|
3484
3562
|
SENSITIVE: []
|
|
3485
3563
|
end
|
|
3486
3564
|
|
|
3565
|
+
class ExecutionRecord
|
|
3566
|
+
attr_accessor observation_id: ::String
|
|
3567
|
+
attr_accessor status: ("PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
|
|
3568
|
+
attr_accessor timestamp: ::Time
|
|
3569
|
+
attr_accessor record: ::String
|
|
3570
|
+
SENSITIVE: []
|
|
3571
|
+
end
|
|
3572
|
+
|
|
3487
3573
|
class Expiry
|
|
3488
3574
|
attr_accessor duration_in_seconds: ::Integer
|
|
3489
3575
|
attr_accessor expiry_timestamp: ::Time
|
|
@@ -3776,6 +3862,21 @@ module Aws::Connect
|
|
|
3776
3862
|
SENSITIVE: []
|
|
3777
3863
|
end
|
|
3778
3864
|
|
|
3865
|
+
class GetTestCaseExecutionSummaryRequest
|
|
3866
|
+
attr_accessor instance_id: ::String
|
|
3867
|
+
attr_accessor test_case_id: ::String
|
|
3868
|
+
attr_accessor test_case_execution_id: ::String
|
|
3869
|
+
SENSITIVE: []
|
|
3870
|
+
end
|
|
3871
|
+
|
|
3872
|
+
class GetTestCaseExecutionSummaryResponse
|
|
3873
|
+
attr_accessor start_time: ::Time
|
|
3874
|
+
attr_accessor end_time: ::Time
|
|
3875
|
+
attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
|
|
3876
|
+
attr_accessor observation_summary: Types::ObservationSummary
|
|
3877
|
+
SENSITIVE: []
|
|
3878
|
+
end
|
|
3879
|
+
|
|
3779
3880
|
class GetTrafficDistributionRequest
|
|
3780
3881
|
attr_accessor id: ::String
|
|
3781
3882
|
SENSITIVE: []
|
|
@@ -4165,6 +4266,11 @@ module Aws::Connect
|
|
|
4165
4266
|
end
|
|
4166
4267
|
end
|
|
4167
4268
|
|
|
4269
|
+
class InvalidTestCaseException
|
|
4270
|
+
attr_accessor problems: ::Array[Types::ProblemDetail]
|
|
4271
|
+
SENSITIVE: []
|
|
4272
|
+
end
|
|
4273
|
+
|
|
4168
4274
|
class InvisibleFieldInfo
|
|
4169
4275
|
attr_accessor id: Types::TaskTemplateFieldIdentifier
|
|
4170
4276
|
SENSITIVE: []
|
|
@@ -4954,6 +5060,53 @@ module Aws::Connect
|
|
|
4954
5060
|
SENSITIVE: []
|
|
4955
5061
|
end
|
|
4956
5062
|
|
|
5063
|
+
class ListTestCaseExecutionRecordsRequest
|
|
5064
|
+
attr_accessor instance_id: ::String
|
|
5065
|
+
attr_accessor test_case_id: ::String
|
|
5066
|
+
attr_accessor test_case_execution_id: ::String
|
|
5067
|
+
attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
|
|
5068
|
+
attr_accessor next_token: ::String
|
|
5069
|
+
attr_accessor max_results: ::Integer
|
|
5070
|
+
SENSITIVE: []
|
|
5071
|
+
end
|
|
5072
|
+
|
|
5073
|
+
class ListTestCaseExecutionRecordsResponse
|
|
5074
|
+
attr_accessor execution_records: ::Array[Types::ExecutionRecord]
|
|
5075
|
+
attr_accessor next_token: ::String
|
|
5076
|
+
SENSITIVE: []
|
|
5077
|
+
end
|
|
5078
|
+
|
|
5079
|
+
class ListTestCaseExecutionsRequest
|
|
5080
|
+
attr_accessor instance_id: ::String
|
|
5081
|
+
attr_accessor test_case_id: ::String
|
|
5082
|
+
attr_accessor test_case_name: ::String
|
|
5083
|
+
attr_accessor start_time: ::Time
|
|
5084
|
+
attr_accessor end_time: ::Time
|
|
5085
|
+
attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
|
|
5086
|
+
attr_accessor next_token: ::String
|
|
5087
|
+
attr_accessor max_results: ::Integer
|
|
5088
|
+
SENSITIVE: []
|
|
5089
|
+
end
|
|
5090
|
+
|
|
5091
|
+
class ListTestCaseExecutionsResponse
|
|
5092
|
+
attr_accessor test_case_executions: ::Array[Types::TestCaseExecution]
|
|
5093
|
+
attr_accessor next_token: ::String
|
|
5094
|
+
SENSITIVE: []
|
|
5095
|
+
end
|
|
5096
|
+
|
|
5097
|
+
class ListTestCasesRequest
|
|
5098
|
+
attr_accessor instance_id: ::String
|
|
5099
|
+
attr_accessor next_token: ::String
|
|
5100
|
+
attr_accessor max_results: ::Integer
|
|
5101
|
+
SENSITIVE: []
|
|
5102
|
+
end
|
|
5103
|
+
|
|
5104
|
+
class ListTestCasesResponse
|
|
5105
|
+
attr_accessor test_case_summary_list: ::Array[Types::TestCaseSummary]
|
|
5106
|
+
attr_accessor next_token: ::String
|
|
5107
|
+
SENSITIVE: []
|
|
5108
|
+
end
|
|
5109
|
+
|
|
4957
5110
|
class ListTrafficDistributionGroupUsersRequest
|
|
4958
5111
|
attr_accessor traffic_distribution_group_id: ::String
|
|
4959
5112
|
attr_accessor max_results: ::Integer
|
|
@@ -5260,6 +5413,13 @@ module Aws::Connect
|
|
|
5260
5413
|
SENSITIVE: []
|
|
5261
5414
|
end
|
|
5262
5415
|
|
|
5416
|
+
class ObservationSummary
|
|
5417
|
+
attr_accessor total_observations: ::Integer
|
|
5418
|
+
attr_accessor observations_passed: ::Integer
|
|
5419
|
+
attr_accessor observations_failed: ::Integer
|
|
5420
|
+
SENSITIVE: []
|
|
5421
|
+
end
|
|
5422
|
+
|
|
5263
5423
|
class OperationalHour
|
|
5264
5424
|
attr_accessor start: Types::OverrideTimeSlice
|
|
5265
5425
|
attr_accessor end: Types::OverrideTimeSlice
|
|
@@ -6532,6 +6692,22 @@ module Aws::Connect
|
|
|
6532
6692
|
SENSITIVE: []
|
|
6533
6693
|
end
|
|
6534
6694
|
|
|
6695
|
+
class SearchTestCasesRequest
|
|
6696
|
+
attr_accessor instance_id: ::String
|
|
6697
|
+
attr_accessor next_token: ::String
|
|
6698
|
+
attr_accessor max_results: ::Integer
|
|
6699
|
+
attr_accessor search_filter: Types::TestCaseSearchFilter
|
|
6700
|
+
attr_accessor search_criteria: Types::TestCaseSearchCriteria
|
|
6701
|
+
SENSITIVE: []
|
|
6702
|
+
end
|
|
6703
|
+
|
|
6704
|
+
class SearchTestCasesResponse
|
|
6705
|
+
attr_accessor test_cases: ::Array[Types::TestCase]
|
|
6706
|
+
attr_accessor next_token: ::String
|
|
6707
|
+
attr_accessor approximate_total_count: ::Integer
|
|
6708
|
+
SENSITIVE: []
|
|
6709
|
+
end
|
|
6710
|
+
|
|
6535
6711
|
class SearchUserHierarchyGroupsRequest
|
|
6536
6712
|
attr_accessor instance_id: ::String
|
|
6537
6713
|
attr_accessor next_token: ::String
|
|
@@ -7042,6 +7218,20 @@ module Aws::Connect
|
|
|
7042
7218
|
SENSITIVE: []
|
|
7043
7219
|
end
|
|
7044
7220
|
|
|
7221
|
+
class StartTestCaseExecutionRequest
|
|
7222
|
+
attr_accessor instance_id: ::String
|
|
7223
|
+
attr_accessor test_case_id: ::String
|
|
7224
|
+
attr_accessor client_token: ::String
|
|
7225
|
+
SENSITIVE: []
|
|
7226
|
+
end
|
|
7227
|
+
|
|
7228
|
+
class StartTestCaseExecutionResponse
|
|
7229
|
+
attr_accessor test_case_execution_id: ::String
|
|
7230
|
+
attr_accessor test_case_id: ::String
|
|
7231
|
+
attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
|
|
7232
|
+
SENSITIVE: []
|
|
7233
|
+
end
|
|
7234
|
+
|
|
7045
7235
|
class StartWebRTCContactRequest
|
|
7046
7236
|
attr_accessor attributes: ::Hash[::String, ::String]
|
|
7047
7237
|
attr_accessor client_token: ::String
|
|
@@ -7117,6 +7307,17 @@ module Aws::Connect
|
|
|
7117
7307
|
class StopContactStreamingResponse < Aws::EmptyStructure
|
|
7118
7308
|
end
|
|
7119
7309
|
|
|
7310
|
+
class StopTestCaseExecutionRequest
|
|
7311
|
+
attr_accessor instance_id: ::String
|
|
7312
|
+
attr_accessor test_case_execution_id: ::String
|
|
7313
|
+
attr_accessor test_case_id: ::String
|
|
7314
|
+
attr_accessor client_token: ::String
|
|
7315
|
+
SENSITIVE: []
|
|
7316
|
+
end
|
|
7317
|
+
|
|
7318
|
+
class StopTestCaseExecutionResponse < Aws::EmptyStructure
|
|
7319
|
+
end
|
|
7320
|
+
|
|
7120
7321
|
class StringCondition
|
|
7121
7322
|
attr_accessor field_name: ::String
|
|
7122
7323
|
attr_accessor value: ::String
|
|
@@ -7282,6 +7483,61 @@ module Aws::Connect
|
|
|
7282
7483
|
SENSITIVE: []
|
|
7283
7484
|
end
|
|
7284
7485
|
|
|
7486
|
+
class TestCase
|
|
7487
|
+
attr_accessor arn: ::String
|
|
7488
|
+
attr_accessor id: ::String
|
|
7489
|
+
attr_accessor name: ::String
|
|
7490
|
+
attr_accessor content: ::String
|
|
7491
|
+
attr_accessor entry_point: Types::TestCaseEntryPoint
|
|
7492
|
+
attr_accessor initialization_data: ::String
|
|
7493
|
+
attr_accessor description: ::String
|
|
7494
|
+
attr_accessor status: ("PUBLISHED" | "SAVED")
|
|
7495
|
+
attr_accessor last_modified_time: ::Time
|
|
7496
|
+
attr_accessor last_modified_region: ::String
|
|
7497
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
7498
|
+
attr_accessor test_case_sha_256: ::String
|
|
7499
|
+
SENSITIVE: []
|
|
7500
|
+
end
|
|
7501
|
+
|
|
7502
|
+
class TestCaseEntryPoint
|
|
7503
|
+
attr_accessor type: ("VOICE_CALL")
|
|
7504
|
+
attr_accessor voice_call_entry_point_parameters: Types::VoiceCallEntryPointParameters
|
|
7505
|
+
SENSITIVE: []
|
|
7506
|
+
end
|
|
7507
|
+
|
|
7508
|
+
class TestCaseExecution
|
|
7509
|
+
attr_accessor start_time: ::Time
|
|
7510
|
+
attr_accessor end_time: ::Time
|
|
7511
|
+
attr_accessor test_case_execution_id: ::String
|
|
7512
|
+
attr_accessor test_case_id: ::String
|
|
7513
|
+
attr_accessor test_case_execution_status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
|
|
7514
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
7515
|
+
SENSITIVE: []
|
|
7516
|
+
end
|
|
7517
|
+
|
|
7518
|
+
class TestCaseSearchCriteria
|
|
7519
|
+
attr_accessor or_conditions: ::Array[Types::TestCaseSearchCriteria]
|
|
7520
|
+
attr_accessor and_conditions: ::Array[Types::TestCaseSearchCriteria]
|
|
7521
|
+
attr_accessor string_condition: Types::StringCondition
|
|
7522
|
+
attr_accessor status_condition: ("PUBLISHED" | "SAVED")
|
|
7523
|
+
SENSITIVE: []
|
|
7524
|
+
end
|
|
7525
|
+
|
|
7526
|
+
class TestCaseSearchFilter
|
|
7527
|
+
attr_accessor tag_filter: Types::ControlPlaneTagFilter
|
|
7528
|
+
SENSITIVE: []
|
|
7529
|
+
end
|
|
7530
|
+
|
|
7531
|
+
class TestCaseSummary
|
|
7532
|
+
attr_accessor id: ::String
|
|
7533
|
+
attr_accessor arn: ::String
|
|
7534
|
+
attr_accessor name: ::String
|
|
7535
|
+
attr_accessor status: ("PUBLISHED" | "SAVED")
|
|
7536
|
+
attr_accessor last_modified_time: ::Time
|
|
7537
|
+
attr_accessor last_modified_region: ::String
|
|
7538
|
+
SENSITIVE: []
|
|
7539
|
+
end
|
|
7540
|
+
|
|
7285
7541
|
class Threshold
|
|
7286
7542
|
attr_accessor comparison: ("LT")
|
|
7287
7543
|
attr_accessor threshold_value: ::Float
|
|
@@ -7610,6 +7866,7 @@ module Aws::Connect
|
|
|
7610
7866
|
attr_accessor items: ::Array[Types::EvaluationFormItem]
|
|
7611
7867
|
attr_accessor scoring_strategy: Types::EvaluationFormScoringStrategy
|
|
7612
7868
|
attr_accessor auto_evaluation_configuration: Types::EvaluationFormAutoEvaluationConfiguration
|
|
7869
|
+
attr_accessor review_configuration: Types::EvaluationReviewConfiguration
|
|
7613
7870
|
attr_accessor as_draft: bool
|
|
7614
7871
|
attr_accessor client_token: ::String
|
|
7615
7872
|
attr_accessor target_configuration: Types::EvaluationFormTargetConfiguration
|
|
@@ -7893,6 +8150,23 @@ module Aws::Connect
|
|
|
7893
8150
|
SENSITIVE: []
|
|
7894
8151
|
end
|
|
7895
8152
|
|
|
8153
|
+
class UpdateTestCaseRequest
|
|
8154
|
+
attr_accessor instance_id: ::String
|
|
8155
|
+
attr_accessor test_case_id: ::String
|
|
8156
|
+
attr_accessor content: ::String
|
|
8157
|
+
attr_accessor entry_point: Types::TestCaseEntryPoint
|
|
8158
|
+
attr_accessor initialization_data: ::String
|
|
8159
|
+
attr_accessor name: ::String
|
|
8160
|
+
attr_accessor description: ::String
|
|
8161
|
+
attr_accessor status: ("PUBLISHED" | "SAVED")
|
|
8162
|
+
attr_accessor last_modified_time: ::Time
|
|
8163
|
+
attr_accessor last_modified_region: ::String
|
|
8164
|
+
SENSITIVE: []
|
|
8165
|
+
end
|
|
8166
|
+
|
|
8167
|
+
class UpdateTestCaseResponse < Aws::EmptyStructure
|
|
8168
|
+
end
|
|
8169
|
+
|
|
7896
8170
|
class UpdateTrafficDistributionRequest
|
|
7897
8171
|
attr_accessor id: ::String
|
|
7898
8172
|
attr_accessor telephony_config: Types::TelephonyConfig
|
|
@@ -8306,6 +8580,13 @@ module Aws::Connect
|
|
|
8306
8580
|
SENSITIVE: []
|
|
8307
8581
|
end
|
|
8308
8582
|
|
|
8583
|
+
class VoiceCallEntryPointParameters
|
|
8584
|
+
attr_accessor source_phone_number: ::String
|
|
8585
|
+
attr_accessor destination_phone_number: ::String
|
|
8586
|
+
attr_accessor flow_id: ::String
|
|
8587
|
+
SENSITIVE: []
|
|
8588
|
+
end
|
|
8589
|
+
|
|
8309
8590
|
class VoiceRecordingConfiguration
|
|
8310
8591
|
attr_accessor voice_recording_track: ("FROM_AGENT" | "TO_AGENT" | "ALL")
|
|
8311
8592
|
attr_accessor ivr_recording_track: ("ALL")
|
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.237.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.241.
|
|
21
|
+
version: 3.241.4
|
|
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.241.
|
|
31
|
+
version: 3.241.4
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|