aws-sdk-connect 1.236.0 → 1.238.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.
@@ -30566,6 +31046,11 @@ module Aws::Connect
30566
31046
  # </note>
30567
31047
  # @return [Hash<String,Types::SegmentAttributeValue>]
30568
31048
  #
31049
+ # @!attribute [rw] attachments
31050
+ # List of S3 presigned URLs of task attachments and their file name.
31051
+ # You can have a maximum of 5 attachments per task.
31052
+ # @return [Array<Types::TaskAttachment>]
31053
+ #
30569
31054
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTaskContactRequest AWS API Documentation
30570
31055
  #
30571
31056
  class StartTaskContactRequest < Struct.new(
@@ -30581,8 +31066,9 @@ module Aws::Connect
30581
31066
  :task_template_id,
30582
31067
  :quick_connect_id,
30583
31068
  :related_contact_id,
30584
- :segment_attributes)
30585
- SENSITIVE = [:name, :description]
31069
+ :segment_attributes,
31070
+ :attachments)
31071
+ SENSITIVE = [:name, :description, :attachments]
30586
31072
  include Aws::Structure
30587
31073
  end
30588
31074
 
@@ -30598,6 +31084,57 @@ module Aws::Connect
30598
31084
  include Aws::Structure
30599
31085
  end
30600
31086
 
31087
+ # @!attribute [rw] instance_id
31088
+ # The identifier of the Amazon Connect instance.
31089
+ # @return [String]
31090
+ #
31091
+ # @!attribute [rw] test_case_id
31092
+ # The identifier of the test case to execute.
31093
+ # @return [String]
31094
+ #
31095
+ # @!attribute [rw] client_token
31096
+ # A unique, case-sensitive identifier that you provide to ensure the
31097
+ # idempotency of the request. If not provided, the Amazon Web Services
31098
+ # SDK populates this field. For more information about idempotency,
31099
+ # see [Making retries safe with idempotent APIs][1].
31100
+ #
31101
+ #
31102
+ #
31103
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
31104
+ # @return [String]
31105
+ #
31106
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTestCaseExecutionRequest AWS API Documentation
31107
+ #
31108
+ class StartTestCaseExecutionRequest < Struct.new(
31109
+ :instance_id,
31110
+ :test_case_id,
31111
+ :client_token)
31112
+ SENSITIVE = []
31113
+ include Aws::Structure
31114
+ end
31115
+
31116
+ # @!attribute [rw] test_case_execution_id
31117
+ # The identifier of the test case execution.
31118
+ # @return [String]
31119
+ #
31120
+ # @!attribute [rw] test_case_id
31121
+ # The identifier of the test case resource that was executed.
31122
+ # @return [String]
31123
+ #
31124
+ # @!attribute [rw] status
31125
+ # The status of a test case execution.
31126
+ # @return [String]
31127
+ #
31128
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTestCaseExecutionResponse AWS API Documentation
31129
+ #
31130
+ class StartTestCaseExecutionResponse < Struct.new(
31131
+ :test_case_execution_id,
31132
+ :test_case_id,
31133
+ :status)
31134
+ SENSITIVE = []
31135
+ include Aws::Structure
31136
+ end
31137
+
30601
31138
  # @!attribute [rw] attributes
30602
31139
  # A custom key-value pair using an attribute map. The attributes are
30603
31140
  # standard Amazon Connect attributes, and can be accessed in flows
@@ -30906,6 +31443,44 @@ module Aws::Connect
30906
31443
  #
30907
31444
  class StopContactStreamingResponse < Aws::EmptyStructure; end
30908
31445
 
31446
+ # @!attribute [rw] instance_id
31447
+ # The identifier of the Amazon Connect instance.
31448
+ # @return [String]
31449
+ #
31450
+ # @!attribute [rw] test_case_execution_id
31451
+ # The identifier of the test case execution to stop.
31452
+ # @return [String]
31453
+ #
31454
+ # @!attribute [rw] test_case_id
31455
+ # The identifier of the test case.
31456
+ # @return [String]
31457
+ #
31458
+ # @!attribute [rw] client_token
31459
+ # A unique, case-sensitive identifier that you provide to ensure the
31460
+ # idempotency of the request. If not provided, the Amazon Web Services
31461
+ # SDK populates this field. For more information about idempotency,
31462
+ # see [Making retries safe with idempotent APIs][1].
31463
+ #
31464
+ #
31465
+ #
31466
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
31467
+ # @return [String]
31468
+ #
31469
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopTestCaseExecutionRequest AWS API Documentation
31470
+ #
31471
+ class StopTestCaseExecutionRequest < Struct.new(
31472
+ :instance_id,
31473
+ :test_case_execution_id,
31474
+ :test_case_id,
31475
+ :client_token)
31476
+ SENSITIVE = []
31477
+ include Aws::Structure
31478
+ end
31479
+
31480
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopTestCaseExecutionResponse AWS API Documentation
31481
+ #
31482
+ class StopTestCaseExecutionResponse < Aws::EmptyStructure; end
31483
+
30909
31484
  # A leaf node condition which can be used to specify a string condition.
30910
31485
  #
30911
31486
  # @!attribute [rw] field_name
@@ -31259,6 +31834,26 @@ module Aws::Connect
31259
31834
  include Aws::Structure
31260
31835
  end
31261
31836
 
31837
+ # Information about the task attachment files.
31838
+ #
31839
+ # @!attribute [rw] file_name
31840
+ # A case-sensitive name of the attached file being uploaded.
31841
+ # @return [String]
31842
+ #
31843
+ # @!attribute [rw] s3_url
31844
+ # The pre-signed URLs for the S3 bucket where the task attachment is
31845
+ # stored.
31846
+ # @return [String]
31847
+ #
31848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TaskAttachment AWS API Documentation
31849
+ #
31850
+ class TaskAttachment < Struct.new(
31851
+ :file_name,
31852
+ :s3_url)
31853
+ SENSITIVE = []
31854
+ include Aws::Structure
31855
+ end
31856
+
31262
31857
  # Describes constraints that apply to the template fields.
31263
31858
  #
31264
31859
  # @!attribute [rw] required_fields
@@ -31491,6 +32086,225 @@ module Aws::Connect
31491
32086
  include Aws::Structure
31492
32087
  end
31493
32088
 
32089
+ # Contains information about a test case.
32090
+ #
32091
+ # @!attribute [rw] arn
32092
+ # The Amazon Resource Name (ARN) of the test case.
32093
+ # @return [String]
32094
+ #
32095
+ # @!attribute [rw] id
32096
+ # The identifier of the test case.
32097
+ # @return [String]
32098
+ #
32099
+ # @!attribute [rw] name
32100
+ # The name of the test case.
32101
+ # @return [String]
32102
+ #
32103
+ # @!attribute [rw] content
32104
+ # The JSON string that represents the content of the test.
32105
+ # @return [String]
32106
+ #
32107
+ # @!attribute [rw] entry_point
32108
+ # Defines the starting point for the test, including channel type and
32109
+ # parameters.
32110
+ # @return [Types::TestCaseEntryPoint]
32111
+ #
32112
+ # @!attribute [rw] initialization_data
32113
+ # Defines the test attributes for precise data representation.
32114
+ # @return [String]
32115
+ #
32116
+ # @!attribute [rw] description
32117
+ # The description of the test case.
32118
+ # @return [String]
32119
+ #
32120
+ # @!attribute [rw] status
32121
+ # Indicates the test status as either SAVED or PUBLISHED.
32122
+ # @return [String]
32123
+ #
32124
+ # @!attribute [rw] last_modified_time
32125
+ # The time at which the test case was last modified.
32126
+ # @return [Time]
32127
+ #
32128
+ # @!attribute [rw] last_modified_region
32129
+ # The region in which the test case was last modified.
32130
+ # @return [String]
32131
+ #
32132
+ # @!attribute [rw] tags
32133
+ # The tags used to organize, track, or control access for this
32134
+ # resource.
32135
+ # @return [Hash<String,String>]
32136
+ #
32137
+ # @!attribute [rw] test_case_sha_256
32138
+ # The SHA256 hash of the test case content.
32139
+ # @return [String]
32140
+ #
32141
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCase AWS API Documentation
32142
+ #
32143
+ class TestCase < Struct.new(
32144
+ :arn,
32145
+ :id,
32146
+ :name,
32147
+ :content,
32148
+ :entry_point,
32149
+ :initialization_data,
32150
+ :description,
32151
+ :status,
32152
+ :last_modified_time,
32153
+ :last_modified_region,
32154
+ :tags,
32155
+ :test_case_sha_256)
32156
+ SENSITIVE = []
32157
+ include Aws::Structure
32158
+ end
32159
+
32160
+ # Defines the starting point for a test case.
32161
+ #
32162
+ # @!attribute [rw] type
32163
+ # The type of entry point.
32164
+ # @return [String]
32165
+ #
32166
+ # @!attribute [rw] voice_call_entry_point_parameters
32167
+ # Parameters for voice call entry point.
32168
+ # @return [Types::VoiceCallEntryPointParameters]
32169
+ #
32170
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseEntryPoint AWS API Documentation
32171
+ #
32172
+ class TestCaseEntryPoint < Struct.new(
32173
+ :type,
32174
+ :voice_call_entry_point_parameters)
32175
+ SENSITIVE = []
32176
+ include Aws::Structure
32177
+ end
32178
+
32179
+ # Contains information about a test case execution.
32180
+ #
32181
+ # @!attribute [rw] start_time
32182
+ # The timestamp when the test case execution started.
32183
+ # @return [Time]
32184
+ #
32185
+ # @!attribute [rw] end_time
32186
+ # The timestamp when the test case execution ended.
32187
+ # @return [Time]
32188
+ #
32189
+ # @!attribute [rw] test_case_execution_id
32190
+ # The identifier of the test case execution.
32191
+ # @return [String]
32192
+ #
32193
+ # @!attribute [rw] test_case_id
32194
+ # The identifier of the test case.
32195
+ # @return [String]
32196
+ #
32197
+ # @!attribute [rw] test_case_execution_status
32198
+ # The status of the test case execution.
32199
+ # @return [String]
32200
+ #
32201
+ # @!attribute [rw] tags
32202
+ # The tags used to organize, track, or control access for this
32203
+ # resource.
32204
+ # @return [Hash<String,String>]
32205
+ #
32206
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseExecution AWS API Documentation
32207
+ #
32208
+ class TestCaseExecution < Struct.new(
32209
+ :start_time,
32210
+ :end_time,
32211
+ :test_case_execution_id,
32212
+ :test_case_id,
32213
+ :test_case_execution_status,
32214
+ :tags)
32215
+ SENSITIVE = []
32216
+ include Aws::Structure
32217
+ end
32218
+
32219
+ # The search criteria to be used to return test cases.
32220
+ #
32221
+ # @!attribute [rw] or_conditions
32222
+ # A list of conditions which would be applied together with an OR
32223
+ # condition.
32224
+ # @return [Array<Types::TestCaseSearchCriteria>]
32225
+ #
32226
+ # @!attribute [rw] and_conditions
32227
+ # A list of conditions which would be applied together with an AND
32228
+ # condition.
32229
+ # @return [Array<Types::TestCaseSearchCriteria>]
32230
+ #
32231
+ # @!attribute [rw] string_condition
32232
+ # A leaf node condition which can be used to specify a string
32233
+ # condition.
32234
+ # @return [Types::StringCondition]
32235
+ #
32236
+ # @!attribute [rw] status_condition
32237
+ # The status of the test case.
32238
+ # @return [String]
32239
+ #
32240
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseSearchCriteria AWS API Documentation
32241
+ #
32242
+ class TestCaseSearchCriteria < Struct.new(
32243
+ :or_conditions,
32244
+ :and_conditions,
32245
+ :string_condition,
32246
+ :status_condition)
32247
+ SENSITIVE = []
32248
+ include Aws::Structure
32249
+ end
32250
+
32251
+ # Filters to be applied to search results.
32252
+ #
32253
+ # @!attribute [rw] tag_filter
32254
+ # An object that can be used to specify Tag conditions inside the
32255
+ # SearchFilter. This accepts an OR of AND (List of List) input where:
32256
+ # Top level list specifies conditions that need to be applied with OR
32257
+ # operator. Inner list specifies conditions that need to be applied
32258
+ # with AND operator.
32259
+ # @return [Types::ControlPlaneTagFilter]
32260
+ #
32261
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseSearchFilter AWS API Documentation
32262
+ #
32263
+ class TestCaseSearchFilter < Struct.new(
32264
+ :tag_filter)
32265
+ SENSITIVE = []
32266
+ include Aws::Structure
32267
+ end
32268
+
32269
+ # Contains summary information about a test case.
32270
+ #
32271
+ # @!attribute [rw] id
32272
+ # The identifier of the test case.
32273
+ # @return [String]
32274
+ #
32275
+ # @!attribute [rw] arn
32276
+ # The Amazon Resource Name (ARN) of the test case.
32277
+ # @return [String]
32278
+ #
32279
+ # @!attribute [rw] name
32280
+ # The name of the test case.
32281
+ # @return [String]
32282
+ #
32283
+ # @!attribute [rw] status
32284
+ # The status of the test case.
32285
+ # @return [String]
32286
+ #
32287
+ # @!attribute [rw] last_modified_time
32288
+ # The time at which the test case was last modified.
32289
+ # @return [Time]
32290
+ #
32291
+ # @!attribute [rw] last_modified_region
32292
+ # The region in which the test case was last modified.
32293
+ # @return [String]
32294
+ #
32295
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TestCaseSummary AWS API Documentation
32296
+ #
32297
+ class TestCaseSummary < Struct.new(
32298
+ :id,
32299
+ :arn,
32300
+ :name,
32301
+ :status,
32302
+ :last_modified_time,
32303
+ :last_modified_region)
32304
+ SENSITIVE = []
32305
+ include Aws::Structure
32306
+ end
32307
+
31494
32308
  # Contains information about the threshold for service level metrics.
31495
32309
  #
31496
32310
  # @!attribute [rw] comparison
@@ -34104,6 +34918,69 @@ module Aws::Connect
34104
34918
  include Aws::Structure
34105
34919
  end
34106
34920
 
34921
+ # @!attribute [rw] instance_id
34922
+ # The identifier of the Amazon Connect instance.
34923
+ # @return [String]
34924
+ #
34925
+ # @!attribute [rw] test_case_id
34926
+ # The identifier of the test case to update.
34927
+ # @return [String]
34928
+ #
34929
+ # @!attribute [rw] content
34930
+ # The JSON string that represents the content of the test.
34931
+ # @return [String]
34932
+ #
34933
+ # @!attribute [rw] entry_point
34934
+ # Defines the starting point for your test.
34935
+ # @return [Types::TestCaseEntryPoint]
34936
+ #
34937
+ # @!attribute [rw] initialization_data
34938
+ # Defines the test attributes for precise data representation.
34939
+ # @return [String]
34940
+ #
34941
+ # @!attribute [rw] name
34942
+ # The name of the test case.
34943
+ # @return [String]
34944
+ #
34945
+ # @!attribute [rw] description
34946
+ # The description of the test case.
34947
+ # @return [String]
34948
+ #
34949
+ # @!attribute [rw] status
34950
+ # Indicates the test status as either SAVED or PUBLISHED. The
34951
+ # PUBLISHED status will initiate validation on the content. The SAVED
34952
+ # status does not initiate validation of the content.
34953
+ # @return [String]
34954
+ #
34955
+ # @!attribute [rw] last_modified_time
34956
+ # The time at which the resource was last modified.
34957
+ # @return [Time]
34958
+ #
34959
+ # @!attribute [rw] last_modified_region
34960
+ # The region in which the resource was last modified
34961
+ # @return [String]
34962
+ #
34963
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateTestCaseRequest AWS API Documentation
34964
+ #
34965
+ class UpdateTestCaseRequest < Struct.new(
34966
+ :instance_id,
34967
+ :test_case_id,
34968
+ :content,
34969
+ :entry_point,
34970
+ :initialization_data,
34971
+ :name,
34972
+ :description,
34973
+ :status,
34974
+ :last_modified_time,
34975
+ :last_modified_region)
34976
+ SENSITIVE = []
34977
+ include Aws::Structure
34978
+ end
34979
+
34980
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateTestCaseResponse AWS API Documentation
34981
+ #
34982
+ class UpdateTestCaseResponse < Aws::EmptyStructure; end
34983
+
34107
34984
  # @!attribute [rw] id
34108
34985
  # The identifier of the traffic distribution group. This can be the ID
34109
34986
  # or the ARN if the API is being called in the Region where the
@@ -35822,6 +36699,30 @@ module Aws::Connect
35822
36699
  include Aws::Structure
35823
36700
  end
35824
36701
 
36702
+ # Parameters for initiating a voice call test.
36703
+ #
36704
+ # @!attribute [rw] source_phone_number
36705
+ # The source phone number for the test.
36706
+ # @return [String]
36707
+ #
36708
+ # @!attribute [rw] destination_phone_number
36709
+ # The destination phone number for the test.
36710
+ # @return [String]
36711
+ #
36712
+ # @!attribute [rw] flow_id
36713
+ # The flow identifier for the test.
36714
+ # @return [String]
36715
+ #
36716
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/VoiceCallEntryPointParameters AWS API Documentation
36717
+ #
36718
+ class VoiceCallEntryPointParameters < Struct.new(
36719
+ :source_phone_number,
36720
+ :destination_phone_number,
36721
+ :flow_id)
36722
+ SENSITIVE = []
36723
+ include Aws::Structure
36724
+ end
36725
+
35825
36726
  # Contains information about the recording configuration settings.
35826
36727
  #
35827
36728
  # @!attribute [rw] voice_recording_track