aws-sdk-connect 1.236.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.
@@ -6815,6 +6815,89 @@ module Aws::Connect
6815
6815
  include Aws::Structure
6816
6816
  end
6817
6817
 
6818
+ # @!attribute [rw] instance_id
6819
+ # The identifier of the Amazon Connect instance.
6820
+ # @return [String]
6821
+ #
6822
+ # @!attribute [rw] name
6823
+ # The name of the test.
6824
+ # @return [String]
6825
+ #
6826
+ # @!attribute [rw] description
6827
+ # The description of the test.
6828
+ # @return [String]
6829
+ #
6830
+ # @!attribute [rw] content
6831
+ # The JSON string that represents the content of the test.
6832
+ # @return [String]
6833
+ #
6834
+ # @!attribute [rw] entry_point
6835
+ # Defines the starting point for your test.
6836
+ # @return [Types::TestCaseEntryPoint]
6837
+ #
6838
+ # @!attribute [rw] initialization_data
6839
+ # Defines the initial custom attributes for your test.
6840
+ # @return [String]
6841
+ #
6842
+ # @!attribute [rw] status
6843
+ # Indicates the test status as either SAVED or PUBLISHED. The
6844
+ # PUBLISHED status will initiate validation on the content. The SAVED
6845
+ # status does not initiate validation of the content.
6846
+ # @return [String]
6847
+ #
6848
+ # @!attribute [rw] test_case_id
6849
+ # Id of the test case if you want to create it in a replica region
6850
+ # using Amazon Connect Global Resiliency
6851
+ # @return [String]
6852
+ #
6853
+ # @!attribute [rw] tags
6854
+ # The tags used to organize, track, or control access for this
6855
+ # resource.
6856
+ # @return [Hash<String,String>]
6857
+ #
6858
+ # @!attribute [rw] last_modified_time
6859
+ # The time at which the resource was last modified.
6860
+ # @return [Time]
6861
+ #
6862
+ # @!attribute [rw] last_modified_region
6863
+ # The region in which the resource was last modified
6864
+ # @return [String]
6865
+ #
6866
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateTestCaseRequest AWS API Documentation
6867
+ #
6868
+ class CreateTestCaseRequest < Struct.new(
6869
+ :instance_id,
6870
+ :name,
6871
+ :description,
6872
+ :content,
6873
+ :entry_point,
6874
+ :initialization_data,
6875
+ :status,
6876
+ :test_case_id,
6877
+ :tags,
6878
+ :last_modified_time,
6879
+ :last_modified_region)
6880
+ SENSITIVE = []
6881
+ include Aws::Structure
6882
+ end
6883
+
6884
+ # @!attribute [rw] test_case_id
6885
+ # The identifier of the test.
6886
+ # @return [String]
6887
+ #
6888
+ # @!attribute [rw] test_case_arn
6889
+ # The Amazon Resource Name (ARN) of the test.
6890
+ # @return [String]
6891
+ #
6892
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateTestCaseResponse AWS API Documentation
6893
+ #
6894
+ class CreateTestCaseResponse < Struct.new(
6895
+ :test_case_id,
6896
+ :test_case_arn)
6897
+ SENSITIVE = []
6898
+ include Aws::Structure
6899
+ end
6900
+
6818
6901
  # @!attribute [rw] name
6819
6902
  # The name for the traffic distribution group.
6820
6903
  # @return [String]
@@ -8976,6 +9059,27 @@ module Aws::Connect
8976
9059
  #
8977
9060
  class DeleteTaskTemplateResponse < Aws::EmptyStructure; end
8978
9061
 
9062
+ # @!attribute [rw] instance_id
9063
+ # The identifier of the Amazon Connect instance.
9064
+ # @return [String]
9065
+ #
9066
+ # @!attribute [rw] test_case_id
9067
+ # The identifier of the test case to delete.
9068
+ # @return [String]
9069
+ #
9070
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteTestCaseRequest AWS API Documentation
9071
+ #
9072
+ class DeleteTestCaseRequest < Struct.new(
9073
+ :instance_id,
9074
+ :test_case_id)
9075
+ SENSITIVE = []
9076
+ include Aws::Structure
9077
+ end
9078
+
9079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteTestCaseResponse AWS API Documentation
9080
+ #
9081
+ class DeleteTestCaseResponse < Aws::EmptyStructure; end
9082
+
8979
9083
  # @!attribute [rw] traffic_distribution_group_id
8980
9084
  # The identifier of the traffic distribution group. This can be the ID
8981
9085
  # or the ARN of the traffic distribution group.
@@ -10121,6 +10225,42 @@ module Aws::Connect
10121
10225
  include Aws::Structure
10122
10226
  end
10123
10227
 
10228
+ # @!attribute [rw] instance_id
10229
+ # The identifier of the Amazon Connect instance.
10230
+ # @return [String]
10231
+ #
10232
+ # @!attribute [rw] test_case_id
10233
+ # The identifier of the test case.
10234
+ # @return [String]
10235
+ #
10236
+ # @!attribute [rw] status
10237
+ # The status of the test case version to retrieve. If not specified,
10238
+ # returns the published version if available, otherwise returns the
10239
+ # saved version.
10240
+ # @return [String]
10241
+ #
10242
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeTestCaseRequest AWS API Documentation
10243
+ #
10244
+ class DescribeTestCaseRequest < Struct.new(
10245
+ :instance_id,
10246
+ :test_case_id,
10247
+ :status)
10248
+ SENSITIVE = []
10249
+ include Aws::Structure
10250
+ end
10251
+
10252
+ # @!attribute [rw] test_case
10253
+ # The test case object containing all test case information.
10254
+ # @return [Types::TestCase]
10255
+ #
10256
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeTestCaseResponse AWS API Documentation
10257
+ #
10258
+ class DescribeTestCaseResponse < Struct.new(
10259
+ :test_case)
10260
+ SENSITIVE = []
10261
+ include Aws::Structure
10262
+ end
10263
+
10124
10264
  # @!attribute [rw] traffic_distribution_group_id
10125
10265
  # The identifier of the traffic distribution group. This can be the ID
10126
10266
  # or the ARN if the API is being called in the Region where the
@@ -13670,6 +13810,35 @@ module Aws::Connect
13670
13810
  include Aws::Structure
13671
13811
  end
13672
13812
 
13813
+ # Contains information about a test case execution record.
13814
+ #
13815
+ # @!attribute [rw] observation_id
13816
+ # The identifier of the execution record.
13817
+ # @return [String]
13818
+ #
13819
+ # @!attribute [rw] status
13820
+ # The status of the action execution.
13821
+ # @return [String]
13822
+ #
13823
+ # @!attribute [rw] timestamp
13824
+ # The timestamp when the action was executed.
13825
+ # @return [Time]
13826
+ #
13827
+ # @!attribute [rw] record
13828
+ # The details of the executed record.
13829
+ # @return [String]
13830
+ #
13831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ExecutionRecord AWS API Documentation
13832
+ #
13833
+ class ExecutionRecord < Struct.new(
13834
+ :observation_id,
13835
+ :status,
13836
+ :timestamp,
13837
+ :record)
13838
+ SENSITIVE = []
13839
+ include Aws::Structure
13840
+ end
13841
+
13673
13842
  # An object to specify the expiration of a routing step.
13674
13843
  #
13675
13844
  # @!attribute [rw] duration_in_seconds
@@ -17341,6 +17510,55 @@ module Aws::Connect
17341
17510
  include Aws::Structure
17342
17511
  end
17343
17512
 
17513
+ # @!attribute [rw] instance_id
17514
+ # The identifier of the Amazon Connect instance.
17515
+ # @return [String]
17516
+ #
17517
+ # @!attribute [rw] test_case_id
17518
+ # The identifier of the test case.
17519
+ # @return [String]
17520
+ #
17521
+ # @!attribute [rw] test_case_execution_id
17522
+ # The identifier of the test case execution.
17523
+ # @return [String]
17524
+ #
17525
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetTestCaseExecutionSummaryRequest AWS API Documentation
17526
+ #
17527
+ class GetTestCaseExecutionSummaryRequest < Struct.new(
17528
+ :instance_id,
17529
+ :test_case_id,
17530
+ :test_case_execution_id)
17531
+ SENSITIVE = []
17532
+ include Aws::Structure
17533
+ end
17534
+
17535
+ # @!attribute [rw] start_time
17536
+ # The timestamp when the test case execution started.
17537
+ # @return [Time]
17538
+ #
17539
+ # @!attribute [rw] end_time
17540
+ # The timestamp when the test case execution ended.
17541
+ # @return [Time]
17542
+ #
17543
+ # @!attribute [rw] status
17544
+ # The status of the test case execution.
17545
+ # @return [String]
17546
+ #
17547
+ # @!attribute [rw] observation_summary
17548
+ # Summary statistics for the test case execution.
17549
+ # @return [Types::ObservationSummary]
17550
+ #
17551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetTestCaseExecutionSummaryResponse AWS API Documentation
17552
+ #
17553
+ class GetTestCaseExecutionSummaryResponse < Struct.new(
17554
+ :start_time,
17555
+ :end_time,
17556
+ :status,
17557
+ :observation_summary)
17558
+ SENSITIVE = []
17559
+ include Aws::Structure
17560
+ end
17561
+
17344
17562
  # @!attribute [rw] id
17345
17563
  # The identifier of the traffic distribution group. This can be the ID
17346
17564
  # or the ARN if the API is being called in the Region where the
@@ -19073,6 +19291,20 @@ module Aws::Connect
19073
19291
  class Unknown < InvalidRequestExceptionReason; end
19074
19292
  end
19075
19293
 
19294
+ # The test is not valid.
19295
+ #
19296
+ # @!attribute [rw] problems
19297
+ # The problems with the test. Please fix before trying again.
19298
+ # @return [Array<Types::ProblemDetail>]
19299
+ #
19300
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InvalidTestCaseException AWS API Documentation
19301
+ #
19302
+ class InvalidTestCaseException < Struct.new(
19303
+ :problems)
19304
+ SENSITIVE = []
19305
+ include Aws::Structure
19306
+ end
19307
+
19076
19308
  # A field that is invisible to an agent.
19077
19309
  #
19078
19310
  # @!attribute [rw] id
@@ -22076,16 +22308,21 @@ module Aws::Connect
22076
22308
  include Aws::Structure
22077
22309
  end
22078
22310
 
22079
- # @!attribute [rw] traffic_distribution_group_id
22080
- # The identifier of the traffic distribution group. This can be the ID
22081
- # or the ARN if the API is being called in the Region where the
22082
- # traffic distribution group was created. The ARN must be provided if
22083
- # the call is from the replicated Region.
22311
+ # @!attribute [rw] instance_id
22312
+ # The identifier of the Amazon Connect instance.
22084
22313
  # @return [String]
22085
22314
  #
22086
- # @!attribute [rw] max_results
22087
- # The maximum number of results to return per page.
22088
- # @return [Integer]
22315
+ # @!attribute [rw] test_case_id
22316
+ # The identifier of the test case.
22317
+ # @return [String]
22318
+ #
22319
+ # @!attribute [rw] test_case_execution_id
22320
+ # The identifier of the test case execution.
22321
+ # @return [String]
22322
+ #
22323
+ # @!attribute [rw] status
22324
+ # Filter execution records by status.
22325
+ # @return [String]
22089
22326
  #
22090
22327
  # @!attribute [rw] next_token
22091
22328
  # The token for the next set of results. Use the value returned in the
@@ -22093,95 +22330,110 @@ module Aws::Connect
22093
22330
  # results.
22094
22331
  # @return [String]
22095
22332
  #
22096
- # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupUsersRequest AWS API Documentation
22333
+ # @!attribute [rw] max_results
22334
+ # The maximum number of results to return per page.
22335
+ # @return [Integer]
22097
22336
  #
22098
- class ListTrafficDistributionGroupUsersRequest < Struct.new(
22099
- :traffic_distribution_group_id,
22100
- :max_results,
22101
- :next_token)
22337
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCaseExecutionRecordsRequest AWS API Documentation
22338
+ #
22339
+ class ListTestCaseExecutionRecordsRequest < Struct.new(
22340
+ :instance_id,
22341
+ :test_case_id,
22342
+ :test_case_execution_id,
22343
+ :status,
22344
+ :next_token,
22345
+ :max_results)
22102
22346
  SENSITIVE = []
22103
22347
  include Aws::Structure
22104
22348
  end
22105
22349
 
22350
+ # @!attribute [rw] execution_records
22351
+ # An array of test case execution record objects.
22352
+ # @return [Array<Types::ExecutionRecord>]
22353
+ #
22106
22354
  # @!attribute [rw] next_token
22107
22355
  # If there are additional results, this is the token for the next set
22108
22356
  # of results.
22109
22357
  # @return [String]
22110
22358
  #
22111
- # @!attribute [rw] traffic_distribution_group_user_summary_list
22112
- # A list of traffic distribution group users.
22113
- # @return [Array<Types::TrafficDistributionGroupUserSummary>]
22114
- #
22115
- # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupUsersResponse AWS API Documentation
22359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCaseExecutionRecordsResponse AWS API Documentation
22116
22360
  #
22117
- class ListTrafficDistributionGroupUsersResponse < Struct.new(
22118
- :next_token,
22119
- :traffic_distribution_group_user_summary_list)
22361
+ class ListTestCaseExecutionRecordsResponse < Struct.new(
22362
+ :execution_records,
22363
+ :next_token)
22120
22364
  SENSITIVE = []
22121
22365
  include Aws::Structure
22122
22366
  end
22123
22367
 
22124
- # @!attribute [rw] max_results
22125
- # The maximum number of results to return per page.
22126
- # @return [Integer]
22368
+ # @!attribute [rw] instance_id
22369
+ # The identifier of the Amazon Connect instance.
22370
+ # @return [String]
22127
22371
  #
22128
- # @!attribute [rw] next_token
22129
- # The token for the next set of results. Use the value returned in the
22130
- # previous response in the next request to retrieve the next set of
22131
- # results.
22372
+ # @!attribute [rw] test_case_id
22373
+ # Filter executions by test case identifier.
22132
22374
  # @return [String]
22133
22375
  #
22134
- # @!attribute [rw] instance_id
22135
- # The identifier of the Amazon Connect instance. You can [find the
22136
- # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
22376
+ # @!attribute [rw] test_case_name
22377
+ # Filter executions by test case name.
22378
+ # @return [String]
22137
22379
  #
22380
+ # @!attribute [rw] start_time
22381
+ # Filter executions that started after this time.
22382
+ # @return [Time]
22138
22383
  #
22384
+ # @!attribute [rw] end_time
22385
+ # Filter executions that started before this time.
22386
+ # @return [Time]
22139
22387
  #
22140
- # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
22388
+ # @!attribute [rw] status
22389
+ # Filter executions by status.
22141
22390
  # @return [String]
22142
22391
  #
22143
- # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupsRequest AWS API Documentation
22392
+ # @!attribute [rw] next_token
22393
+ # The token for the next set of results. Use the value returned in the
22394
+ # previous response in the next request to retrieve the next set of
22395
+ # results.
22396
+ # @return [String]
22144
22397
  #
22145
- class ListTrafficDistributionGroupsRequest < Struct.new(
22146
- :max_results,
22398
+ # @!attribute [rw] max_results
22399
+ # The maximum number of results to return per page.
22400
+ # @return [Integer]
22401
+ #
22402
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCaseExecutionsRequest AWS API Documentation
22403
+ #
22404
+ class ListTestCaseExecutionsRequest < Struct.new(
22405
+ :instance_id,
22406
+ :test_case_id,
22407
+ :test_case_name,
22408
+ :start_time,
22409
+ :end_time,
22410
+ :status,
22147
22411
  :next_token,
22148
- :instance_id)
22412
+ :max_results)
22149
22413
  SENSITIVE = []
22150
22414
  include Aws::Structure
22151
22415
  end
22152
22416
 
22417
+ # @!attribute [rw] test_case_executions
22418
+ # An array of test case execution summary objects.
22419
+ # @return [Array<Types::TestCaseExecution>]
22420
+ #
22153
22421
  # @!attribute [rw] next_token
22154
22422
  # If there are additional results, this is the token for the next set
22155
22423
  # of results.
22156
22424
  # @return [String]
22157
22425
  #
22158
- # @!attribute [rw] traffic_distribution_group_summary_list
22159
- # A list of traffic distribution groups.
22160
- # @return [Array<Types::TrafficDistributionGroupSummary>]
22161
- #
22162
- # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupsResponse AWS API Documentation
22426
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCaseExecutionsResponse AWS API Documentation
22163
22427
  #
22164
- class ListTrafficDistributionGroupsResponse < Struct.new(
22165
- :next_token,
22166
- :traffic_distribution_group_summary_list)
22428
+ class ListTestCaseExecutionsResponse < Struct.new(
22429
+ :test_case_executions,
22430
+ :next_token)
22167
22431
  SENSITIVE = []
22168
22432
  include Aws::Structure
22169
22433
  end
22170
22434
 
22171
- # Provides summary information about the use cases for the specified
22172
- # integration association.
22173
- #
22174
22435
  # @!attribute [rw] instance_id
22175
- # The identifier of the Amazon Connect instance. You can [find the
22176
- # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
22177
- #
22178
- #
22179
- #
22180
- # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
22181
- # @return [String]
22182
- #
22183
- # @!attribute [rw] integration_association_id
22184
- # The identifier for the integration association.
22436
+ # The identifier of the Amazon Connect instance.
22185
22437
  # @return [String]
22186
22438
  #
22187
22439
  # @!attribute [rw] next_token
@@ -22194,20 +22446,166 @@ module Aws::Connect
22194
22446
  # The maximum number of results to return per page.
22195
22447
  # @return [Integer]
22196
22448
  #
22197
- # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUseCasesRequest AWS API Documentation
22449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCasesRequest AWS API Documentation
22198
22450
  #
22199
- class ListUseCasesRequest < Struct.new(
22451
+ class ListTestCasesRequest < Struct.new(
22200
22452
  :instance_id,
22201
- :integration_association_id,
22202
22453
  :next_token,
22203
22454
  :max_results)
22204
22455
  SENSITIVE = []
22205
22456
  include Aws::Structure
22206
22457
  end
22207
22458
 
22208
- # @!attribute [rw] use_case_summary_list
22209
- # The use cases.
22210
- # @return [Array<Types::UseCase>]
22459
+ # @!attribute [rw] test_case_summary_list
22460
+ # Information about the tests.
22461
+ # @return [Array<Types::TestCaseSummary>]
22462
+ #
22463
+ # @!attribute [rw] next_token
22464
+ # If there are additional results, this is the token for the next set
22465
+ # of results.
22466
+ # @return [String]
22467
+ #
22468
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTestCasesResponse AWS API Documentation
22469
+ #
22470
+ class ListTestCasesResponse < Struct.new(
22471
+ :test_case_summary_list,
22472
+ :next_token)
22473
+ SENSITIVE = []
22474
+ include Aws::Structure
22475
+ end
22476
+
22477
+ # @!attribute [rw] traffic_distribution_group_id
22478
+ # The identifier of the traffic distribution group. This can be the ID
22479
+ # or the ARN if the API is being called in the Region where the
22480
+ # traffic distribution group was created. The ARN must be provided if
22481
+ # the call is from the replicated Region.
22482
+ # @return [String]
22483
+ #
22484
+ # @!attribute [rw] max_results
22485
+ # The maximum number of results to return per page.
22486
+ # @return [Integer]
22487
+ #
22488
+ # @!attribute [rw] next_token
22489
+ # The token for the next set of results. Use the value returned in the
22490
+ # previous response in the next request to retrieve the next set of
22491
+ # results.
22492
+ # @return [String]
22493
+ #
22494
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupUsersRequest AWS API Documentation
22495
+ #
22496
+ class ListTrafficDistributionGroupUsersRequest < Struct.new(
22497
+ :traffic_distribution_group_id,
22498
+ :max_results,
22499
+ :next_token)
22500
+ SENSITIVE = []
22501
+ include Aws::Structure
22502
+ end
22503
+
22504
+ # @!attribute [rw] next_token
22505
+ # If there are additional results, this is the token for the next set
22506
+ # of results.
22507
+ # @return [String]
22508
+ #
22509
+ # @!attribute [rw] traffic_distribution_group_user_summary_list
22510
+ # A list of traffic distribution group users.
22511
+ # @return [Array<Types::TrafficDistributionGroupUserSummary>]
22512
+ #
22513
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupUsersResponse AWS API Documentation
22514
+ #
22515
+ class ListTrafficDistributionGroupUsersResponse < Struct.new(
22516
+ :next_token,
22517
+ :traffic_distribution_group_user_summary_list)
22518
+ SENSITIVE = []
22519
+ include Aws::Structure
22520
+ end
22521
+
22522
+ # @!attribute [rw] max_results
22523
+ # The maximum number of results to return per page.
22524
+ # @return [Integer]
22525
+ #
22526
+ # @!attribute [rw] next_token
22527
+ # The token for the next set of results. Use the value returned in the
22528
+ # previous response in the next request to retrieve the next set of
22529
+ # results.
22530
+ # @return [String]
22531
+ #
22532
+ # @!attribute [rw] instance_id
22533
+ # The identifier of the Amazon Connect instance. You can [find the
22534
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
22535
+ #
22536
+ #
22537
+ #
22538
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
22539
+ # @return [String]
22540
+ #
22541
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupsRequest AWS API Documentation
22542
+ #
22543
+ class ListTrafficDistributionGroupsRequest < Struct.new(
22544
+ :max_results,
22545
+ :next_token,
22546
+ :instance_id)
22547
+ SENSITIVE = []
22548
+ include Aws::Structure
22549
+ end
22550
+
22551
+ # @!attribute [rw] next_token
22552
+ # If there are additional results, this is the token for the next set
22553
+ # of results.
22554
+ # @return [String]
22555
+ #
22556
+ # @!attribute [rw] traffic_distribution_group_summary_list
22557
+ # A list of traffic distribution groups.
22558
+ # @return [Array<Types::TrafficDistributionGroupSummary>]
22559
+ #
22560
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupsResponse AWS API Documentation
22561
+ #
22562
+ class ListTrafficDistributionGroupsResponse < Struct.new(
22563
+ :next_token,
22564
+ :traffic_distribution_group_summary_list)
22565
+ SENSITIVE = []
22566
+ include Aws::Structure
22567
+ end
22568
+
22569
+ # Provides summary information about the use cases for the specified
22570
+ # integration association.
22571
+ #
22572
+ # @!attribute [rw] instance_id
22573
+ # The identifier of the Amazon Connect instance. You can [find the
22574
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
22575
+ #
22576
+ #
22577
+ #
22578
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
22579
+ # @return [String]
22580
+ #
22581
+ # @!attribute [rw] integration_association_id
22582
+ # The identifier for the integration association.
22583
+ # @return [String]
22584
+ #
22585
+ # @!attribute [rw] next_token
22586
+ # The token for the next set of results. Use the value returned in the
22587
+ # previous response in the next request to retrieve the next set of
22588
+ # results.
22589
+ # @return [String]
22590
+ #
22591
+ # @!attribute [rw] max_results
22592
+ # The maximum number of results to return per page.
22593
+ # @return [Integer]
22594
+ #
22595
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUseCasesRequest AWS API Documentation
22596
+ #
22597
+ class ListUseCasesRequest < Struct.new(
22598
+ :instance_id,
22599
+ :integration_association_id,
22600
+ :next_token,
22601
+ :max_results)
22602
+ SENSITIVE = []
22603
+ include Aws::Structure
22604
+ end
22605
+
22606
+ # @!attribute [rw] use_case_summary_list
22607
+ # The use cases.
22608
+ # @return [Array<Types::UseCase>]
22211
22609
  #
22212
22610
  # @!attribute [rw] next_token
22213
22611
  # If there are additional results, this is the token for the next set
@@ -23251,6 +23649,30 @@ module Aws::Connect
23251
23649
  include Aws::Structure
23252
23650
  end
23253
23651
 
23652
+ # Contains summary statistics about a test case execution.
23653
+ #
23654
+ # @!attribute [rw] total_observations
23655
+ # The total number of observations in the test case.
23656
+ # @return [Integer]
23657
+ #
23658
+ # @!attribute [rw] observations_passed
23659
+ # The number of observations that passed during execution.
23660
+ # @return [Integer]
23661
+ #
23662
+ # @!attribute [rw] observations_failed
23663
+ # The number of observations that failed during execution.
23664
+ # @return [Integer]
23665
+ #
23666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ObservationSummary AWS API Documentation
23667
+ #
23668
+ class ObservationSummary < Struct.new(
23669
+ :total_observations,
23670
+ :observations_passed,
23671
+ :observations_failed)
23672
+ SENSITIVE = []
23673
+ include Aws::Structure
23674
+ end
23675
+
23254
23676
  # Information about the hours of operations with the effective override
23255
23677
  # applied.
23256
23678
  #
@@ -28238,6 +28660,64 @@ module Aws::Connect
28238
28660
  include Aws::Structure
28239
28661
  end
28240
28662
 
28663
+ # @!attribute [rw] instance_id
28664
+ # The identifier of the Amazon Connect instance. You can find the
28665
+ # instance ID in the Amazon Resource Name (ARN) of the instance.
28666
+ # @return [String]
28667
+ #
28668
+ # @!attribute [rw] next_token
28669
+ # The token for the next set of results. Use the value returned in the
28670
+ # previous response in the next request to retrieve the next set of
28671
+ # results.
28672
+ # @return [String]
28673
+ #
28674
+ # @!attribute [rw] max_results
28675
+ # The maximum number of results to return per page.
28676
+ # @return [Integer]
28677
+ #
28678
+ # @!attribute [rw] search_filter
28679
+ # Filters to be applied to search results.
28680
+ # @return [Types::TestCaseSearchFilter]
28681
+ #
28682
+ # @!attribute [rw] search_criteria
28683
+ # The search criteria to be used to return test cases.
28684
+ # @return [Types::TestCaseSearchCriteria]
28685
+ #
28686
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchTestCasesRequest AWS API Documentation
28687
+ #
28688
+ class SearchTestCasesRequest < Struct.new(
28689
+ :instance_id,
28690
+ :next_token,
28691
+ :max_results,
28692
+ :search_filter,
28693
+ :search_criteria)
28694
+ SENSITIVE = []
28695
+ include Aws::Structure
28696
+ end
28697
+
28698
+ # @!attribute [rw] test_cases
28699
+ # Information about the test cases.
28700
+ # @return [Array<Types::TestCase>]
28701
+ #
28702
+ # @!attribute [rw] next_token
28703
+ # If there are additional results, this is the token for the next set
28704
+ # of results.
28705
+ # @return [String]
28706
+ #
28707
+ # @!attribute [rw] approximate_total_count
28708
+ # The total number of test cases which matched your search query.
28709
+ # @return [Integer]
28710
+ #
28711
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchTestCasesResponse AWS API Documentation
28712
+ #
28713
+ class SearchTestCasesResponse < Struct.new(
28714
+ :test_cases,
28715
+ :next_token,
28716
+ :approximate_total_count)
28717
+ SENSITIVE = []
28718
+ include Aws::Structure
28719
+ end
28720
+
28241
28721
  # @!attribute [rw] instance_id
28242
28722
  # The identifier of the Amazon Connect instance. You can find the
28243
28723
  # instanceId in the ARN of the instance.
@@ -30598,6 +31078,57 @@ module Aws::Connect
30598
31078
  include Aws::Structure
30599
31079
  end
30600
31080
 
31081
+ # @!attribute [rw] instance_id
31082
+ # The identifier of the Amazon Connect instance.
31083
+ # @return [String]
31084
+ #
31085
+ # @!attribute [rw] test_case_id
31086
+ # The identifier of the test case to execute.
31087
+ # @return [String]
31088
+ #
31089
+ # @!attribute [rw] client_token
31090
+ # A unique, case-sensitive identifier that you provide to ensure the
31091
+ # idempotency of the request. If not provided, the Amazon Web Services
31092
+ # SDK populates this field. For more information about idempotency,
31093
+ # see [Making retries safe with idempotent APIs][1].
31094
+ #
31095
+ #
31096
+ #
31097
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
31098
+ # @return [String]
31099
+ #
31100
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTestCaseExecutionRequest AWS API Documentation
31101
+ #
31102
+ class StartTestCaseExecutionRequest < Struct.new(
31103
+ :instance_id,
31104
+ :test_case_id,
31105
+ :client_token)
31106
+ SENSITIVE = []
31107
+ include Aws::Structure
31108
+ end
31109
+
31110
+ # @!attribute [rw] test_case_execution_id
31111
+ # The identifier of the test case execution.
31112
+ # @return [String]
31113
+ #
31114
+ # @!attribute [rw] test_case_id
31115
+ # The identifier of the test case resource that was executed.
31116
+ # @return [String]
31117
+ #
31118
+ # @!attribute [rw] status
31119
+ # The status of a test case execution.
31120
+ # @return [String]
31121
+ #
31122
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTestCaseExecutionResponse AWS API Documentation
31123
+ #
31124
+ class StartTestCaseExecutionResponse < Struct.new(
31125
+ :test_case_execution_id,
31126
+ :test_case_id,
31127
+ :status)
31128
+ SENSITIVE = []
31129
+ include Aws::Structure
31130
+ end
31131
+
30601
31132
  # @!attribute [rw] attributes
30602
31133
  # A custom key-value pair using an attribute map. The attributes are
30603
31134
  # standard Amazon Connect attributes, and can be accessed in flows
@@ -30906,6 +31437,44 @@ module Aws::Connect
30906
31437
  #
30907
31438
  class StopContactStreamingResponse < Aws::EmptyStructure; end
30908
31439
 
31440
+ # @!attribute [rw] instance_id
31441
+ # The identifier of the Amazon Connect instance.
31442
+ # @return [String]
31443
+ #
31444
+ # @!attribute [rw] test_case_execution_id
31445
+ # The identifier of the test case execution to stop.
31446
+ # @return [String]
31447
+ #
31448
+ # @!attribute [rw] test_case_id
31449
+ # The identifier of the test case.
31450
+ # @return [String]
31451
+ #
31452
+ # @!attribute [rw] client_token
31453
+ # A unique, case-sensitive identifier that you provide to ensure the
31454
+ # idempotency of the request. If not provided, the Amazon Web Services
31455
+ # SDK populates this field. For more information about idempotency,
31456
+ # see [Making retries safe with idempotent APIs][1].
31457
+ #
31458
+ #
31459
+ #
31460
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
31461
+ # @return [String]
31462
+ #
31463
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopTestCaseExecutionRequest AWS API Documentation
31464
+ #
31465
+ class StopTestCaseExecutionRequest < Struct.new(
31466
+ :instance_id,
31467
+ :test_case_execution_id,
31468
+ :test_case_id,
31469
+ :client_token)
31470
+ SENSITIVE = []
31471
+ include Aws::Structure
31472
+ end
31473
+
31474
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopTestCaseExecutionResponse AWS API Documentation
31475
+ #
31476
+ class StopTestCaseExecutionResponse < Aws::EmptyStructure; end
31477
+
30909
31478
  # A leaf node condition which can be used to specify a string condition.
30910
31479
  #
30911
31480
  # @!attribute [rw] field_name
@@ -31491,6 +32060,225 @@ module Aws::Connect
31491
32060
  include Aws::Structure
31492
32061
  end
31493
32062
 
32063
+ # Contains information about a test case.
32064
+ #
32065
+ # @!attribute [rw] arn
32066
+ # The Amazon Resource Name (ARN) of the test case.
32067
+ # @return [String]
32068
+ #
32069
+ # @!attribute [rw] id
32070
+ # The identifier of the test case.
32071
+ # @return [String]
32072
+ #
32073
+ # @!attribute [rw] name
32074
+ # The name of the test case.
32075
+ # @return [String]
32076
+ #
32077
+ # @!attribute [rw] content
32078
+ # The JSON string that represents the content of the test.
32079
+ # @return [String]
32080
+ #
32081
+ # @!attribute [rw] entry_point
32082
+ # Defines the starting point for the test, including channel type and
32083
+ # parameters.
32084
+ # @return [Types::TestCaseEntryPoint]
32085
+ #
32086
+ # @!attribute [rw] initialization_data
32087
+ # Defines the test attributes for precise data representation.
32088
+ # @return [String]
32089
+ #
32090
+ # @!attribute [rw] description
32091
+ # The description of the test case.
32092
+ # @return [String]
32093
+ #
32094
+ # @!attribute [rw] status
32095
+ # Indicates the test status as either SAVED or PUBLISHED.
32096
+ # @return [String]
32097
+ #
32098
+ # @!attribute [rw] last_modified_time
32099
+ # The time at which the test case was last modified.
32100
+ # @return [Time]
32101
+ #
32102
+ # @!attribute [rw] last_modified_region
32103
+ # The region in which the test case was last modified.
32104
+ # @return [String]
32105
+ #
32106
+ # @!attribute [rw] tags
32107
+ # The tags used to organize, track, or control access for this
32108
+ # resource.
32109
+ # @return [Hash<String,String>]
32110
+ #
32111
+ # @!attribute [rw] test_case_sha_256
32112
+ # The SHA256 hash of the test case content.
32113
+ # @return [String]
32114
+ #
32115
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCase AWS API Documentation
32116
+ #
32117
+ class TestCase < Struct.new(
32118
+ :arn,
32119
+ :id,
32120
+ :name,
32121
+ :content,
32122
+ :entry_point,
32123
+ :initialization_data,
32124
+ :description,
32125
+ :status,
32126
+ :last_modified_time,
32127
+ :last_modified_region,
32128
+ :tags,
32129
+ :test_case_sha_256)
32130
+ SENSITIVE = []
32131
+ include Aws::Structure
32132
+ end
32133
+
32134
+ # Defines the starting point for a test case.
32135
+ #
32136
+ # @!attribute [rw] type
32137
+ # The type of entry point.
32138
+ # @return [String]
32139
+ #
32140
+ # @!attribute [rw] voice_call_entry_point_parameters
32141
+ # Parameters for voice call entry point.
32142
+ # @return [Types::VoiceCallEntryPointParameters]
32143
+ #
32144
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseEntryPoint AWS API Documentation
32145
+ #
32146
+ class TestCaseEntryPoint < Struct.new(
32147
+ :type,
32148
+ :voice_call_entry_point_parameters)
32149
+ SENSITIVE = []
32150
+ include Aws::Structure
32151
+ end
32152
+
32153
+ # Contains information about a test case execution.
32154
+ #
32155
+ # @!attribute [rw] start_time
32156
+ # The timestamp when the test case execution started.
32157
+ # @return [Time]
32158
+ #
32159
+ # @!attribute [rw] end_time
32160
+ # The timestamp when the test case execution ended.
32161
+ # @return [Time]
32162
+ #
32163
+ # @!attribute [rw] test_case_execution_id
32164
+ # The identifier of the test case execution.
32165
+ # @return [String]
32166
+ #
32167
+ # @!attribute [rw] test_case_id
32168
+ # The identifier of the test case.
32169
+ # @return [String]
32170
+ #
32171
+ # @!attribute [rw] test_case_execution_status
32172
+ # The status of the test case execution.
32173
+ # @return [String]
32174
+ #
32175
+ # @!attribute [rw] tags
32176
+ # The tags used to organize, track, or control access for this
32177
+ # resource.
32178
+ # @return [Hash<String,String>]
32179
+ #
32180
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseExecution AWS API Documentation
32181
+ #
32182
+ class TestCaseExecution < Struct.new(
32183
+ :start_time,
32184
+ :end_time,
32185
+ :test_case_execution_id,
32186
+ :test_case_id,
32187
+ :test_case_execution_status,
32188
+ :tags)
32189
+ SENSITIVE = []
32190
+ include Aws::Structure
32191
+ end
32192
+
32193
+ # The search criteria to be used to return test cases.
32194
+ #
32195
+ # @!attribute [rw] or_conditions
32196
+ # A list of conditions which would be applied together with an OR
32197
+ # condition.
32198
+ # @return [Array<Types::TestCaseSearchCriteria>]
32199
+ #
32200
+ # @!attribute [rw] and_conditions
32201
+ # A list of conditions which would be applied together with an AND
32202
+ # condition.
32203
+ # @return [Array<Types::TestCaseSearchCriteria>]
32204
+ #
32205
+ # @!attribute [rw] string_condition
32206
+ # A leaf node condition which can be used to specify a string
32207
+ # condition.
32208
+ # @return [Types::StringCondition]
32209
+ #
32210
+ # @!attribute [rw] status_condition
32211
+ # The status of the test case.
32212
+ # @return [String]
32213
+ #
32214
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseSearchCriteria AWS API Documentation
32215
+ #
32216
+ class TestCaseSearchCriteria < Struct.new(
32217
+ :or_conditions,
32218
+ :and_conditions,
32219
+ :string_condition,
32220
+ :status_condition)
32221
+ SENSITIVE = []
32222
+ include Aws::Structure
32223
+ end
32224
+
32225
+ # Filters to be applied to search results.
32226
+ #
32227
+ # @!attribute [rw] tag_filter
32228
+ # An object that can be used to specify Tag conditions inside the
32229
+ # SearchFilter. This accepts an OR of AND (List of List) input where:
32230
+ # Top level list specifies conditions that need to be applied with OR
32231
+ # operator. Inner list specifies conditions that need to be applied
32232
+ # with AND operator.
32233
+ # @return [Types::ControlPlaneTagFilter]
32234
+ #
32235
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseSearchFilter AWS API Documentation
32236
+ #
32237
+ class TestCaseSearchFilter < Struct.new(
32238
+ :tag_filter)
32239
+ SENSITIVE = []
32240
+ include Aws::Structure
32241
+ end
32242
+
32243
+ # Contains summary information about a test case.
32244
+ #
32245
+ # @!attribute [rw] id
32246
+ # The identifier of the test case.
32247
+ # @return [String]
32248
+ #
32249
+ # @!attribute [rw] arn
32250
+ # The Amazon Resource Name (ARN) of the test case.
32251
+ # @return [String]
32252
+ #
32253
+ # @!attribute [rw] name
32254
+ # The name of the test case.
32255
+ # @return [String]
32256
+ #
32257
+ # @!attribute [rw] status
32258
+ # The status of the test case.
32259
+ # @return [String]
32260
+ #
32261
+ # @!attribute [rw] last_modified_time
32262
+ # The time at which the test case was last modified.
32263
+ # @return [Time]
32264
+ #
32265
+ # @!attribute [rw] last_modified_region
32266
+ # The region in which the test case was last modified.
32267
+ # @return [String]
32268
+ #
32269
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseSummary AWS API Documentation
32270
+ #
32271
+ class TestCaseSummary < Struct.new(
32272
+ :id,
32273
+ :arn,
32274
+ :name,
32275
+ :status,
32276
+ :last_modified_time,
32277
+ :last_modified_region)
32278
+ SENSITIVE = []
32279
+ include Aws::Structure
32280
+ end
32281
+
31494
32282
  # Contains information about the threshold for service level metrics.
31495
32283
  #
31496
32284
  # @!attribute [rw] comparison
@@ -34104,6 +34892,69 @@ module Aws::Connect
34104
34892
  include Aws::Structure
34105
34893
  end
34106
34894
 
34895
+ # @!attribute [rw] instance_id
34896
+ # The identifier of the Amazon Connect instance.
34897
+ # @return [String]
34898
+ #
34899
+ # @!attribute [rw] test_case_id
34900
+ # The identifier of the test case to update.
34901
+ # @return [String]
34902
+ #
34903
+ # @!attribute [rw] content
34904
+ # The JSON string that represents the content of the test.
34905
+ # @return [String]
34906
+ #
34907
+ # @!attribute [rw] entry_point
34908
+ # Defines the starting point for your test.
34909
+ # @return [Types::TestCaseEntryPoint]
34910
+ #
34911
+ # @!attribute [rw] initialization_data
34912
+ # Defines the test attributes for precise data representation.
34913
+ # @return [String]
34914
+ #
34915
+ # @!attribute [rw] name
34916
+ # The name of the test case.
34917
+ # @return [String]
34918
+ #
34919
+ # @!attribute [rw] description
34920
+ # The description of the test case.
34921
+ # @return [String]
34922
+ #
34923
+ # @!attribute [rw] status
34924
+ # Indicates the test status as either SAVED or PUBLISHED. The
34925
+ # PUBLISHED status will initiate validation on the content. The SAVED
34926
+ # status does not initiate validation of the content.
34927
+ # @return [String]
34928
+ #
34929
+ # @!attribute [rw] last_modified_time
34930
+ # The time at which the resource was last modified.
34931
+ # @return [Time]
34932
+ #
34933
+ # @!attribute [rw] last_modified_region
34934
+ # The region in which the resource was last modified
34935
+ # @return [String]
34936
+ #
34937
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateTestCaseRequest AWS API Documentation
34938
+ #
34939
+ class UpdateTestCaseRequest < Struct.new(
34940
+ :instance_id,
34941
+ :test_case_id,
34942
+ :content,
34943
+ :entry_point,
34944
+ :initialization_data,
34945
+ :name,
34946
+ :description,
34947
+ :status,
34948
+ :last_modified_time,
34949
+ :last_modified_region)
34950
+ SENSITIVE = []
34951
+ include Aws::Structure
34952
+ end
34953
+
34954
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateTestCaseResponse AWS API Documentation
34955
+ #
34956
+ class UpdateTestCaseResponse < Aws::EmptyStructure; end
34957
+
34107
34958
  # @!attribute [rw] id
34108
34959
  # The identifier of the traffic distribution group. This can be the ID
34109
34960
  # or the ARN if the API is being called in the Region where the
@@ -35822,6 +36673,30 @@ module Aws::Connect
35822
36673
  include Aws::Structure
35823
36674
  end
35824
36675
 
36676
+ # Parameters for initiating a voice call test.
36677
+ #
36678
+ # @!attribute [rw] source_phone_number
36679
+ # The source phone number for the test.
36680
+ # @return [String]
36681
+ #
36682
+ # @!attribute [rw] destination_phone_number
36683
+ # The destination phone number for the test.
36684
+ # @return [String]
36685
+ #
36686
+ # @!attribute [rw] flow_id
36687
+ # The flow identifier for the test.
36688
+ # @return [String]
36689
+ #
36690
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/VoiceCallEntryPointParameters AWS API Documentation
36691
+ #
36692
+ class VoiceCallEntryPointParameters < Struct.new(
36693
+ :source_phone_number,
36694
+ :destination_phone_number,
36695
+ :flow_id)
36696
+ SENSITIVE = []
36697
+ include Aws::Structure
36698
+ end
36699
+
35825
36700
  # Contains information about the recording configuration settings.
35826
36701
  #
35827
36702
  # @!attribute [rw] voice_recording_track