aws-sdk-apptest 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3259 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::AppTest
11
+ module Types
12
+
13
+ # The account or role doesn't have the right permissions to make the
14
+ # request.
15
+ #
16
+ # @!attribute [rw] message
17
+ # @return [String]
18
+ #
19
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/AccessDeniedException AWS API Documentation
20
+ #
21
+ class AccessDeniedException < Struct.new(
22
+ :message)
23
+ SENSITIVE = []
24
+ include Aws::Structure
25
+ end
26
+
27
+ # Defines a batch.
28
+ #
29
+ # @!attribute [rw] batch_job_name
30
+ # The job name of the batch.
31
+ # @return [String]
32
+ #
33
+ # @!attribute [rw] batch_job_parameters
34
+ # The batch job parameters of the batch.
35
+ # @return [Hash<String,String>]
36
+ #
37
+ # @!attribute [rw] export_data_set_names
38
+ # The export data set names of the batch.
39
+ # @return [Array<String>]
40
+ #
41
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/Batch AWS API Documentation
42
+ #
43
+ class Batch < Struct.new(
44
+ :batch_job_name,
45
+ :batch_job_parameters,
46
+ :export_data_set_names)
47
+ SENSITIVE = []
48
+ include Aws::Structure
49
+ end
50
+
51
+ # Defines a batch step input.
52
+ #
53
+ # @!attribute [rw] resource
54
+ # The resource of the batch step input.
55
+ # @return [Types::MainframeResourceSummary]
56
+ #
57
+ # @!attribute [rw] batch_job_name
58
+ # The batch job name of the batch step input.
59
+ # @return [String]
60
+ #
61
+ # @!attribute [rw] batch_job_parameters
62
+ # The batch job parameters of the batch step input.
63
+ # @return [Hash<String,String>]
64
+ #
65
+ # @!attribute [rw] export_data_set_names
66
+ # The export data set names of the batch step input.
67
+ # @return [Array<String>]
68
+ #
69
+ # @!attribute [rw] properties
70
+ # The properties of the batch step input.
71
+ # @return [Types::MainframeActionProperties]
72
+ #
73
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/BatchStepInput AWS API Documentation
74
+ #
75
+ class BatchStepInput < Struct.new(
76
+ :resource,
77
+ :batch_job_name,
78
+ :batch_job_parameters,
79
+ :export_data_set_names,
80
+ :properties)
81
+ SENSITIVE = []
82
+ include Aws::Structure
83
+ end
84
+
85
+ # Defines a batch step output.
86
+ #
87
+ # @!attribute [rw] data_set_export_location
88
+ # The data set export location of the batch step output.
89
+ # @return [String]
90
+ #
91
+ # @!attribute [rw] dms_output_location
92
+ # The Database Migration Service (DMS) output location of the batch
93
+ # step output.
94
+ # @return [String]
95
+ #
96
+ # @!attribute [rw] data_set_details
97
+ # The data set details of the batch step output.
98
+ # @return [Array<Types::DataSet>]
99
+ #
100
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/BatchStepOutput AWS API Documentation
101
+ #
102
+ class BatchStepOutput < Struct.new(
103
+ :data_set_export_location,
104
+ :dms_output_location,
105
+ :data_set_details)
106
+ SENSITIVE = []
107
+ include Aws::Structure
108
+ end
109
+
110
+ # Summarizes a batch job.
111
+ #
112
+ # @!attribute [rw] step_input
113
+ # The step input of the batch summary.
114
+ # @return [Types::BatchStepInput]
115
+ #
116
+ # @!attribute [rw] step_output
117
+ # The step output of the batch summary.
118
+ # @return [Types::BatchStepOutput]
119
+ #
120
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/BatchSummary AWS API Documentation
121
+ #
122
+ class BatchSummary < Struct.new(
123
+ :step_input,
124
+ :step_output)
125
+ SENSITIVE = []
126
+ include Aws::Structure
127
+ end
128
+
129
+ # Specifies the CloudFormation template and its parameters.
130
+ #
131
+ # @!attribute [rw] template_location
132
+ # The template location of the CloudFormation template.
133
+ # @return [String]
134
+ #
135
+ # @!attribute [rw] parameters
136
+ # The CloudFormation properties in the CloudFormation template.
137
+ # @return [Hash<String,String>]
138
+ #
139
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CloudFormation AWS API Documentation
140
+ #
141
+ class CloudFormation < Struct.new(
142
+ :template_location,
143
+ :parameters)
144
+ SENSITIVE = []
145
+ include Aws::Structure
146
+ end
147
+
148
+ # Specifies the CloudFormation action.
149
+ #
150
+ # @!attribute [rw] resource
151
+ # The resource of the CloudFormation action.
152
+ # @return [String]
153
+ #
154
+ # @!attribute [rw] action_type
155
+ # The action type of the CloudFormation action.
156
+ # @return [String]
157
+ #
158
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CloudFormationAction AWS API Documentation
159
+ #
160
+ class CloudFormationAction < Struct.new(
161
+ :resource,
162
+ :action_type)
163
+ SENSITIVE = []
164
+ include Aws::Structure
165
+ end
166
+
167
+ # Specifies the CloudFormation step summary.
168
+ #
169
+ # @note CloudFormationStepSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CloudFormationStepSummary corresponding to the set member.
170
+ #
171
+ # @!attribute [rw] create_cloudformation
172
+ # Creates the CloudFormation summary of the step.
173
+ # @return [Types::CreateCloudFormationSummary]
174
+ #
175
+ # @!attribute [rw] delete_cloudformation
176
+ # Deletes the CloudFormation summary of the CloudFormation step
177
+ # summary.
178
+ # @return [Types::DeleteCloudFormationSummary]
179
+ #
180
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CloudFormationStepSummary AWS API Documentation
181
+ #
182
+ class CloudFormationStepSummary < Struct.new(
183
+ :create_cloudformation,
184
+ :delete_cloudformation,
185
+ :unknown)
186
+ SENSITIVE = []
187
+ include Aws::Structure
188
+ include Aws::Structure::Union
189
+
190
+ class CreateCloudformation < CloudFormationStepSummary; end
191
+ class DeleteCloudformation < CloudFormationStepSummary; end
192
+ class Unknown < CloudFormationStepSummary; end
193
+ end
194
+
195
+ # Compares the action.
196
+ #
197
+ # @!attribute [rw] input
198
+ # The input of the compare action.
199
+ # @return [Types::Input]
200
+ #
201
+ # @!attribute [rw] output
202
+ # The output of the compare action.
203
+ # @return [Types::Output]
204
+ #
205
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CompareAction AWS API Documentation
206
+ #
207
+ class CompareAction < Struct.new(
208
+ :input,
209
+ :output)
210
+ SENSITIVE = []
211
+ include Aws::Structure
212
+ end
213
+
214
+ # Specifies the compare action summary.
215
+ #
216
+ # @!attribute [rw] type
217
+ # The type of the compare action summary.
218
+ # @return [Types::File]
219
+ #
220
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CompareActionSummary AWS API Documentation
221
+ #
222
+ class CompareActionSummary < Struct.new(
223
+ :type)
224
+ SENSITIVE = []
225
+ include Aws::Structure
226
+ end
227
+
228
+ # Specifies the compare data sets step input.
229
+ #
230
+ # @!attribute [rw] source_location
231
+ # The source location of the compare data sets step input location.
232
+ # @return [String]
233
+ #
234
+ # @!attribute [rw] target_location
235
+ # The target location of the compare data sets step input location.
236
+ # @return [String]
237
+ #
238
+ # @!attribute [rw] source_data_sets
239
+ # The source data sets of the compare data sets step input location.
240
+ # @return [Array<Types::DataSet>]
241
+ #
242
+ # @!attribute [rw] target_data_sets
243
+ # The target data sets of the compare data sets step input location.
244
+ # @return [Array<Types::DataSet>]
245
+ #
246
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CompareDataSetsStepInput AWS API Documentation
247
+ #
248
+ class CompareDataSetsStepInput < Struct.new(
249
+ :source_location,
250
+ :target_location,
251
+ :source_data_sets,
252
+ :target_data_sets)
253
+ SENSITIVE = []
254
+ include Aws::Structure
255
+ end
256
+
257
+ # Specifies the compare data sets step output.
258
+ #
259
+ # @!attribute [rw] comparison_output_location
260
+ # The comparison output location of the compare data sets step output.
261
+ # @return [String]
262
+ #
263
+ # @!attribute [rw] comparison_status
264
+ # The comparison status of the compare data sets step output.
265
+ # @return [String]
266
+ #
267
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CompareDataSetsStepOutput AWS API Documentation
268
+ #
269
+ class CompareDataSetsStepOutput < Struct.new(
270
+ :comparison_output_location,
271
+ :comparison_status)
272
+ SENSITIVE = []
273
+ include Aws::Structure
274
+ end
275
+
276
+ # Compares data sets summary.
277
+ #
278
+ # @!attribute [rw] step_input
279
+ # The step input of the compare data sets summary.
280
+ # @return [Types::CompareDataSetsStepInput]
281
+ #
282
+ # @!attribute [rw] step_output
283
+ # The step output of the compare data sets summary.
284
+ # @return [Types::CompareDataSetsStepOutput]
285
+ #
286
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CompareDataSetsSummary AWS API Documentation
287
+ #
288
+ class CompareDataSetsSummary < Struct.new(
289
+ :step_input,
290
+ :step_output)
291
+ SENSITIVE = []
292
+ include Aws::Structure
293
+ end
294
+
295
+ # Compares the database Change Data Capture (CDC) step input.
296
+ #
297
+ # @!attribute [rw] source_location
298
+ # The source location of the compare database CDC step input.
299
+ # @return [String]
300
+ #
301
+ # @!attribute [rw] target_location
302
+ # The target location of the compare database CDC step input.
303
+ # @return [String]
304
+ #
305
+ # @!attribute [rw] output_location
306
+ # The output location of the compare database CDC step input.
307
+ # @return [String]
308
+ #
309
+ # @!attribute [rw] source_metadata
310
+ # The source metadata of the compare database CDC step input.
311
+ # @return [Types::SourceDatabaseMetadata]
312
+ #
313
+ # @!attribute [rw] target_metadata
314
+ # The target metadata location of the compare database CDC step input.
315
+ # @return [Types::TargetDatabaseMetadata]
316
+ #
317
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CompareDatabaseCDCStepInput AWS API Documentation
318
+ #
319
+ class CompareDatabaseCDCStepInput < Struct.new(
320
+ :source_location,
321
+ :target_location,
322
+ :output_location,
323
+ :source_metadata,
324
+ :target_metadata)
325
+ SENSITIVE = []
326
+ include Aws::Structure
327
+ end
328
+
329
+ # Compares the database CDC step output.
330
+ #
331
+ # @!attribute [rw] comparison_output_location
332
+ # The comparison output of the compare database CDC step output.
333
+ # @return [String]
334
+ #
335
+ # @!attribute [rw] comparison_status
336
+ # The comparison status of the compare database CDC step output.
337
+ # @return [String]
338
+ #
339
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CompareDatabaseCDCStepOutput AWS API Documentation
340
+ #
341
+ class CompareDatabaseCDCStepOutput < Struct.new(
342
+ :comparison_output_location,
343
+ :comparison_status)
344
+ SENSITIVE = []
345
+ include Aws::Structure
346
+ end
347
+
348
+ # Compares the database CDC summary.
349
+ #
350
+ # @!attribute [rw] step_input
351
+ # The step input of the compare database CDC summary.
352
+ # @return [Types::CompareDatabaseCDCStepInput]
353
+ #
354
+ # @!attribute [rw] step_output
355
+ # The step output of the compare database CDC summary.
356
+ # @return [Types::CompareDatabaseCDCStepOutput]
357
+ #
358
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CompareDatabaseCDCSummary AWS API Documentation
359
+ #
360
+ class CompareDatabaseCDCSummary < Struct.new(
361
+ :step_input,
362
+ :step_output)
363
+ SENSITIVE = []
364
+ include Aws::Structure
365
+ end
366
+
367
+ # Compares the file type.
368
+ #
369
+ # @note CompareFileType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CompareFileType corresponding to the set member.
370
+ #
371
+ # @!attribute [rw] datasets
372
+ # The data sets in the compare file type.
373
+ # @return [Types::CompareDataSetsSummary]
374
+ #
375
+ # @!attribute [rw] database_cdc
376
+ # The database CDC of the compare file type.
377
+ # @return [Types::CompareDatabaseCDCSummary]
378
+ #
379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CompareFileType AWS API Documentation
380
+ #
381
+ class CompareFileType < Struct.new(
382
+ :datasets,
383
+ :database_cdc,
384
+ :unknown)
385
+ SENSITIVE = []
386
+ include Aws::Structure
387
+ include Aws::Structure::Union
388
+
389
+ class Datasets < CompareFileType; end
390
+ class DatabaseCdc < CompareFileType; end
391
+ class Unknown < CompareFileType; end
392
+ end
393
+
394
+ # The parameters provided in the request conflict with existing
395
+ # resources.
396
+ #
397
+ # @!attribute [rw] message
398
+ # @return [String]
399
+ #
400
+ # @!attribute [rw] resource_id
401
+ # The resource ID of the conflicts with existing resources.
402
+ # @return [String]
403
+ #
404
+ # @!attribute [rw] resource_type
405
+ # The resource type of the conflicts with existing resources.
406
+ # @return [String]
407
+ #
408
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ConflictException AWS API Documentation
409
+ #
410
+ class ConflictException < Struct.new(
411
+ :message,
412
+ :resource_id,
413
+ :resource_type)
414
+ SENSITIVE = []
415
+ include Aws::Structure
416
+ end
417
+
418
+ # Creates the CloudFormation step input.
419
+ #
420
+ # @!attribute [rw] template_location
421
+ # The template location of the CloudFormation step input.
422
+ # @return [String]
423
+ #
424
+ # @!attribute [rw] parameters
425
+ # The CloudFormation properties of the CloudFormation step input.
426
+ # @return [Hash<String,String>]
427
+ #
428
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CreateCloudFormationStepInput AWS API Documentation
429
+ #
430
+ class CreateCloudFormationStepInput < Struct.new(
431
+ :template_location,
432
+ :parameters)
433
+ SENSITIVE = []
434
+ include Aws::Structure
435
+ end
436
+
437
+ # Creates a CloudFormation step output.
438
+ #
439
+ # @!attribute [rw] stack_id
440
+ # The stack ID of the CloudFormation step output.
441
+ # @return [String]
442
+ #
443
+ # @!attribute [rw] exports
444
+ # The exports of the CloudFormation step output.
445
+ # @return [Hash<String,String>]
446
+ #
447
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CreateCloudFormationStepOutput AWS API Documentation
448
+ #
449
+ class CreateCloudFormationStepOutput < Struct.new(
450
+ :stack_id,
451
+ :exports)
452
+ SENSITIVE = []
453
+ include Aws::Structure
454
+ end
455
+
456
+ # Creates a CloudFormation summary.
457
+ #
458
+ # @!attribute [rw] step_input
459
+ # The step input of the CloudFormation summary.
460
+ # @return [Types::CreateCloudFormationStepInput]
461
+ #
462
+ # @!attribute [rw] step_output
463
+ # The step output of the CloudFormation summary.
464
+ # @return [Types::CreateCloudFormationStepOutput]
465
+ #
466
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CreateCloudFormationSummary AWS API Documentation
467
+ #
468
+ class CreateCloudFormationSummary < Struct.new(
469
+ :step_input,
470
+ :step_output)
471
+ SENSITIVE = []
472
+ include Aws::Structure
473
+ end
474
+
475
+ # @!attribute [rw] name
476
+ # The name of the test case.
477
+ # @return [String]
478
+ #
479
+ # @!attribute [rw] description
480
+ # The description of the test case.
481
+ # @return [String]
482
+ #
483
+ # @!attribute [rw] steps
484
+ # The steps in the test case.
485
+ # @return [Array<Types::Step>]
486
+ #
487
+ # @!attribute [rw] client_token
488
+ # The client token of the test case.
489
+ #
490
+ # **A suitable default value is auto-generated.** You should normally
491
+ # not need to pass this option.
492
+ # @return [String]
493
+ #
494
+ # @!attribute [rw] tags
495
+ # The specified tags of the test case.
496
+ # @return [Hash<String,String>]
497
+ #
498
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CreateTestCaseRequest AWS API Documentation
499
+ #
500
+ class CreateTestCaseRequest < Struct.new(
501
+ :name,
502
+ :description,
503
+ :steps,
504
+ :client_token,
505
+ :tags)
506
+ SENSITIVE = []
507
+ include Aws::Structure
508
+ end
509
+
510
+ # @!attribute [rw] test_case_id
511
+ # The test case ID of the test case.
512
+ # @return [String]
513
+ #
514
+ # @!attribute [rw] test_case_version
515
+ # The test case version of the test case.
516
+ # @return [Integer]
517
+ #
518
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CreateTestCaseResponse AWS API Documentation
519
+ #
520
+ class CreateTestCaseResponse < Struct.new(
521
+ :test_case_id,
522
+ :test_case_version)
523
+ SENSITIVE = []
524
+ include Aws::Structure
525
+ end
526
+
527
+ # @!attribute [rw] name
528
+ # The name of the test configuration.
529
+ # @return [String]
530
+ #
531
+ # @!attribute [rw] description
532
+ # The description of the test configuration.
533
+ # @return [String]
534
+ #
535
+ # @!attribute [rw] resources
536
+ # The defined resources of the test configuration.
537
+ # @return [Array<Types::Resource>]
538
+ #
539
+ # @!attribute [rw] properties
540
+ # The properties of the test configuration.
541
+ # @return [Hash<String,String>]
542
+ #
543
+ # @!attribute [rw] client_token
544
+ # The client token of the test configuration.
545
+ #
546
+ # **A suitable default value is auto-generated.** You should normally
547
+ # not need to pass this option.
548
+ # @return [String]
549
+ #
550
+ # @!attribute [rw] tags
551
+ # The tags of the test configuration.
552
+ # @return [Hash<String,String>]
553
+ #
554
+ # @!attribute [rw] service_settings
555
+ # The service settings of the test configuration.
556
+ # @return [Types::ServiceSettings]
557
+ #
558
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CreateTestConfigurationRequest AWS API Documentation
559
+ #
560
+ class CreateTestConfigurationRequest < Struct.new(
561
+ :name,
562
+ :description,
563
+ :resources,
564
+ :properties,
565
+ :client_token,
566
+ :tags,
567
+ :service_settings)
568
+ SENSITIVE = []
569
+ include Aws::Structure
570
+ end
571
+
572
+ # @!attribute [rw] test_configuration_id
573
+ # The test configuration ID.
574
+ # @return [String]
575
+ #
576
+ # @!attribute [rw] test_configuration_version
577
+ # The test configuration version.
578
+ # @return [Integer]
579
+ #
580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CreateTestConfigurationResponse AWS API Documentation
581
+ #
582
+ class CreateTestConfigurationResponse < Struct.new(
583
+ :test_configuration_id,
584
+ :test_configuration_version)
585
+ SENSITIVE = []
586
+ include Aws::Structure
587
+ end
588
+
589
+ # @!attribute [rw] name
590
+ # The name of the test suite.
591
+ # @return [String]
592
+ #
593
+ # @!attribute [rw] description
594
+ # The description of the test suite.
595
+ # @return [String]
596
+ #
597
+ # @!attribute [rw] before_steps
598
+ # The before steps of the test suite.
599
+ # @return [Array<Types::Step>]
600
+ #
601
+ # @!attribute [rw] after_steps
602
+ # The after steps of the test suite.
603
+ # @return [Array<Types::Step>]
604
+ #
605
+ # @!attribute [rw] test_cases
606
+ # The test cases in the test suite.
607
+ # @return [Types::TestCases]
608
+ #
609
+ # @!attribute [rw] client_token
610
+ # The client token of the test suite.
611
+ #
612
+ # **A suitable default value is auto-generated.** You should normally
613
+ # not need to pass this option.
614
+ # @return [String]
615
+ #
616
+ # @!attribute [rw] tags
617
+ # The tags of the test suite.
618
+ # @return [Hash<String,String>]
619
+ #
620
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CreateTestSuiteRequest AWS API Documentation
621
+ #
622
+ class CreateTestSuiteRequest < Struct.new(
623
+ :name,
624
+ :description,
625
+ :before_steps,
626
+ :after_steps,
627
+ :test_cases,
628
+ :client_token,
629
+ :tags)
630
+ SENSITIVE = []
631
+ include Aws::Structure
632
+ end
633
+
634
+ # @!attribute [rw] test_suite_id
635
+ # The suite ID of the test suite.
636
+ # @return [String]
637
+ #
638
+ # @!attribute [rw] test_suite_version
639
+ # The suite version of the test suite.
640
+ # @return [Integer]
641
+ #
642
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/CreateTestSuiteResponse AWS API Documentation
643
+ #
644
+ class CreateTestSuiteResponse < Struct.new(
645
+ :test_suite_id,
646
+ :test_suite_version)
647
+ SENSITIVE = []
648
+ include Aws::Structure
649
+ end
650
+
651
+ # Defines a data set.
652
+ #
653
+ # @!attribute [rw] type
654
+ # The type of the data set.
655
+ # @return [String]
656
+ #
657
+ # @!attribute [rw] name
658
+ # The name of the data set.
659
+ # @return [String]
660
+ #
661
+ # @!attribute [rw] ccsid
662
+ # The CCSID of the data set.
663
+ # @return [String]
664
+ #
665
+ # @!attribute [rw] format
666
+ # The format of the data set.
667
+ # @return [String]
668
+ #
669
+ # @!attribute [rw] length
670
+ # The length of the data set.
671
+ # @return [Integer]
672
+ #
673
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DataSet AWS API Documentation
674
+ #
675
+ class DataSet < Struct.new(
676
+ :type,
677
+ :name,
678
+ :ccsid,
679
+ :format,
680
+ :length)
681
+ SENSITIVE = []
682
+ include Aws::Structure
683
+ end
684
+
685
+ # Defines the Change Data Capture (CDC) of the database.
686
+ #
687
+ # @!attribute [rw] source_metadata
688
+ # The source metadata of the database CDC.
689
+ # @return [Types::SourceDatabaseMetadata]
690
+ #
691
+ # @!attribute [rw] target_metadata
692
+ # The target metadata of the database CDC.
693
+ # @return [Types::TargetDatabaseMetadata]
694
+ #
695
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DatabaseCDC AWS API Documentation
696
+ #
697
+ class DatabaseCDC < Struct.new(
698
+ :source_metadata,
699
+ :target_metadata)
700
+ SENSITIVE = []
701
+ include Aws::Structure
702
+ end
703
+
704
+ # Deletes the CloudFormation step input.
705
+ #
706
+ # @!attribute [rw] stack_id
707
+ # The stack ID of the deleted CloudFormation step input.
708
+ # @return [String]
709
+ #
710
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteCloudFormationStepInput AWS API Documentation
711
+ #
712
+ class DeleteCloudFormationStepInput < Struct.new(
713
+ :stack_id)
714
+ SENSITIVE = []
715
+ include Aws::Structure
716
+ end
717
+
718
+ # Deletes the CloudFormation summary step output.
719
+ #
720
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteCloudFormationStepOutput AWS API Documentation
721
+ #
722
+ class DeleteCloudFormationStepOutput < Aws::EmptyStructure; end
723
+
724
+ # Deletes the CloudFormation summary.
725
+ #
726
+ # @!attribute [rw] step_input
727
+ # The step input of the deleted CloudFormation summary.
728
+ # @return [Types::DeleteCloudFormationStepInput]
729
+ #
730
+ # @!attribute [rw] step_output
731
+ # The step output of the deleted CloudFormation summary.
732
+ # @return [Types::DeleteCloudFormationStepOutput]
733
+ #
734
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteCloudFormationSummary AWS API Documentation
735
+ #
736
+ class DeleteCloudFormationSummary < Struct.new(
737
+ :step_input,
738
+ :step_output)
739
+ SENSITIVE = []
740
+ include Aws::Structure
741
+ end
742
+
743
+ # @!attribute [rw] test_case_id
744
+ # The test case ID of the test case.
745
+ # @return [String]
746
+ #
747
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteTestCaseRequest AWS API Documentation
748
+ #
749
+ class DeleteTestCaseRequest < Struct.new(
750
+ :test_case_id)
751
+ SENSITIVE = []
752
+ include Aws::Structure
753
+ end
754
+
755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteTestCaseResponse AWS API Documentation
756
+ #
757
+ class DeleteTestCaseResponse < Aws::EmptyStructure; end
758
+
759
+ # @!attribute [rw] test_configuration_id
760
+ # The test ID of the test configuration.
761
+ # @return [String]
762
+ #
763
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteTestConfigurationRequest AWS API Documentation
764
+ #
765
+ class DeleteTestConfigurationRequest < Struct.new(
766
+ :test_configuration_id)
767
+ SENSITIVE = []
768
+ include Aws::Structure
769
+ end
770
+
771
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteTestConfigurationResponse AWS API Documentation
772
+ #
773
+ class DeleteTestConfigurationResponse < Aws::EmptyStructure; end
774
+
775
+ # @!attribute [rw] test_run_id
776
+ # The run ID of the test run.
777
+ # @return [String]
778
+ #
779
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteTestRunRequest AWS API Documentation
780
+ #
781
+ class DeleteTestRunRequest < Struct.new(
782
+ :test_run_id)
783
+ SENSITIVE = []
784
+ include Aws::Structure
785
+ end
786
+
787
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteTestRunResponse AWS API Documentation
788
+ #
789
+ class DeleteTestRunResponse < Aws::EmptyStructure; end
790
+
791
+ # @!attribute [rw] test_suite_id
792
+ # The test ID of the test suite.
793
+ # @return [String]
794
+ #
795
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteTestSuiteRequest AWS API Documentation
796
+ #
797
+ class DeleteTestSuiteRequest < Struct.new(
798
+ :test_suite_id)
799
+ SENSITIVE = []
800
+ include Aws::Structure
801
+ end
802
+
803
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/DeleteTestSuiteResponse AWS API Documentation
804
+ #
805
+ class DeleteTestSuiteResponse < Aws::EmptyStructure; end
806
+
807
+ # Defines a file.
808
+ #
809
+ # @note File is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of File corresponding to the set member.
810
+ #
811
+ # @!attribute [rw] file_type
812
+ # The file type of the file.
813
+ # @return [Types::CompareFileType]
814
+ #
815
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/File AWS API Documentation
816
+ #
817
+ class File < Struct.new(
818
+ :file_type,
819
+ :unknown)
820
+ SENSITIVE = []
821
+ include Aws::Structure
822
+ include Aws::Structure::Union
823
+
824
+ class FileType < File; end
825
+ class Unknown < File; end
826
+ end
827
+
828
+ # Specifies a file metadata.
829
+ #
830
+ # @note FileMetadata is a union - when making an API calls you must set exactly one of the members.
831
+ #
832
+ # @note FileMetadata is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FileMetadata corresponding to the set member.
833
+ #
834
+ # @!attribute [rw] data_sets
835
+ # The data sets of the file metadata.
836
+ # @return [Array<Types::DataSet>]
837
+ #
838
+ # @!attribute [rw] database_cdc
839
+ # The database CDC of the file metadata.
840
+ # @return [Types::DatabaseCDC]
841
+ #
842
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/FileMetadata AWS API Documentation
843
+ #
844
+ class FileMetadata < Struct.new(
845
+ :data_sets,
846
+ :database_cdc,
847
+ :unknown)
848
+ SENSITIVE = []
849
+ include Aws::Structure
850
+ include Aws::Structure::Union
851
+
852
+ class DataSets < FileMetadata; end
853
+ class DatabaseCdc < FileMetadata; end
854
+ class Unknown < FileMetadata; end
855
+ end
856
+
857
+ # @!attribute [rw] test_case_id
858
+ # The request test ID of the test case.
859
+ # @return [String]
860
+ #
861
+ # @!attribute [rw] test_case_version
862
+ # The test case version of the test case.
863
+ # @return [Integer]
864
+ #
865
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/GetTestCaseRequest AWS API Documentation
866
+ #
867
+ class GetTestCaseRequest < Struct.new(
868
+ :test_case_id,
869
+ :test_case_version)
870
+ SENSITIVE = []
871
+ include Aws::Structure
872
+ end
873
+
874
+ # @!attribute [rw] test_case_id
875
+ # The response test ID of the test case.
876
+ # @return [String]
877
+ #
878
+ # @!attribute [rw] test_case_arn
879
+ # The Amazon Resource Name (ARN) of the test case.
880
+ # @return [String]
881
+ #
882
+ # @!attribute [rw] name
883
+ # The name of the test case.
884
+ # @return [String]
885
+ #
886
+ # @!attribute [rw] description
887
+ # The description of the test case.
888
+ # @return [String]
889
+ #
890
+ # @!attribute [rw] latest_version
891
+ # The latest version of the test case.
892
+ # @return [Types::TestCaseLatestVersion]
893
+ #
894
+ # @!attribute [rw] test_case_version
895
+ # The case version of the test case.
896
+ # @return [Integer]
897
+ #
898
+ # @!attribute [rw] status
899
+ # The status of the test case.
900
+ # @return [String]
901
+ #
902
+ # @!attribute [rw] status_reason
903
+ # The status reason of the test case.
904
+ # @return [String]
905
+ #
906
+ # @!attribute [rw] creation_time
907
+ # The creation time of the test case.
908
+ # @return [Time]
909
+ #
910
+ # @!attribute [rw] last_update_time
911
+ # The last update time of the test case.
912
+ # @return [Time]
913
+ #
914
+ # @!attribute [rw] steps
915
+ # The steps of the test case.
916
+ # @return [Array<Types::Step>]
917
+ #
918
+ # @!attribute [rw] tags
919
+ # The tags of the test case.
920
+ # @return [Hash<String,String>]
921
+ #
922
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/GetTestCaseResponse AWS API Documentation
923
+ #
924
+ class GetTestCaseResponse < Struct.new(
925
+ :test_case_id,
926
+ :test_case_arn,
927
+ :name,
928
+ :description,
929
+ :latest_version,
930
+ :test_case_version,
931
+ :status,
932
+ :status_reason,
933
+ :creation_time,
934
+ :last_update_time,
935
+ :steps,
936
+ :tags)
937
+ SENSITIVE = []
938
+ include Aws::Structure
939
+ end
940
+
941
+ # @!attribute [rw] test_configuration_id
942
+ # The request test configuration ID.
943
+ # @return [String]
944
+ #
945
+ # @!attribute [rw] test_configuration_version
946
+ # The test configuration version.
947
+ # @return [Integer]
948
+ #
949
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/GetTestConfigurationRequest AWS API Documentation
950
+ #
951
+ class GetTestConfigurationRequest < Struct.new(
952
+ :test_configuration_id,
953
+ :test_configuration_version)
954
+ SENSITIVE = []
955
+ include Aws::Structure
956
+ end
957
+
958
+ # @!attribute [rw] test_configuration_id
959
+ # The response test configuration ID.
960
+ # @return [String]
961
+ #
962
+ # @!attribute [rw] name
963
+ # The test configuration name
964
+ # @return [String]
965
+ #
966
+ # @!attribute [rw] test_configuration_arn
967
+ # The test configuration Amazon Resource Name (ARN).
968
+ # @return [String]
969
+ #
970
+ # @!attribute [rw] latest_version
971
+ # The latest version of the test configuration.
972
+ # @return [Types::TestConfigurationLatestVersion]
973
+ #
974
+ # @!attribute [rw] test_configuration_version
975
+ # The test configuration version.
976
+ # @return [Integer]
977
+ #
978
+ # @!attribute [rw] status
979
+ # The status of the test configuration.
980
+ # @return [String]
981
+ #
982
+ # @!attribute [rw] status_reason
983
+ # The status reason of the test configuration.
984
+ # @return [String]
985
+ #
986
+ # @!attribute [rw] creation_time
987
+ # The creation time of the test configuration.
988
+ # @return [Time]
989
+ #
990
+ # @!attribute [rw] last_update_time
991
+ # The last update time of the test configuration.
992
+ # @return [Time]
993
+ #
994
+ # @!attribute [rw] description
995
+ # The description of the test configuration.
996
+ # @return [String]
997
+ #
998
+ # @!attribute [rw] resources
999
+ # The resources of the test configuration.
1000
+ # @return [Array<Types::Resource>]
1001
+ #
1002
+ # @!attribute [rw] properties
1003
+ # The properties of the test configuration.
1004
+ # @return [Hash<String,String>]
1005
+ #
1006
+ # @!attribute [rw] tags
1007
+ # The tags of the test configuration.
1008
+ # @return [Hash<String,String>]
1009
+ #
1010
+ # @!attribute [rw] service_settings
1011
+ # The service settings of the test configuration.
1012
+ # @return [Types::ServiceSettings]
1013
+ #
1014
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/GetTestConfigurationResponse AWS API Documentation
1015
+ #
1016
+ class GetTestConfigurationResponse < Struct.new(
1017
+ :test_configuration_id,
1018
+ :name,
1019
+ :test_configuration_arn,
1020
+ :latest_version,
1021
+ :test_configuration_version,
1022
+ :status,
1023
+ :status_reason,
1024
+ :creation_time,
1025
+ :last_update_time,
1026
+ :description,
1027
+ :resources,
1028
+ :properties,
1029
+ :tags,
1030
+ :service_settings)
1031
+ SENSITIVE = []
1032
+ include Aws::Structure
1033
+ end
1034
+
1035
+ # @!attribute [rw] test_run_id
1036
+ # The test run ID of the test run step.
1037
+ # @return [String]
1038
+ #
1039
+ # @!attribute [rw] step_name
1040
+ # The step name of the test run step.
1041
+ # @return [String]
1042
+ #
1043
+ # @!attribute [rw] test_case_id
1044
+ # The test case ID of a test run step.
1045
+ # @return [String]
1046
+ #
1047
+ # @!attribute [rw] test_suite_id
1048
+ # The test suite ID of a test run step.
1049
+ # @return [String]
1050
+ #
1051
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/GetTestRunStepRequest AWS API Documentation
1052
+ #
1053
+ class GetTestRunStepRequest < Struct.new(
1054
+ :test_run_id,
1055
+ :step_name,
1056
+ :test_case_id,
1057
+ :test_suite_id)
1058
+ SENSITIVE = []
1059
+ include Aws::Structure
1060
+ end
1061
+
1062
+ # @!attribute [rw] step_name
1063
+ # The step name of the test run step.
1064
+ # @return [String]
1065
+ #
1066
+ # @!attribute [rw] test_run_id
1067
+ # The test run ID of the test run step.
1068
+ # @return [String]
1069
+ #
1070
+ # @!attribute [rw] test_case_id
1071
+ # The test case ID of the test run step.
1072
+ # @return [String]
1073
+ #
1074
+ # @!attribute [rw] test_case_version
1075
+ # The test case version of the test run step.
1076
+ # @return [Integer]
1077
+ #
1078
+ # @!attribute [rw] test_suite_id
1079
+ # The test suite ID of the test run step.
1080
+ # @return [String]
1081
+ #
1082
+ # @!attribute [rw] test_suite_version
1083
+ # The test suite version of the test run step.
1084
+ # @return [Integer]
1085
+ #
1086
+ # @!attribute [rw] before_step
1087
+ # The before steps of the test run step.
1088
+ # @return [Boolean]
1089
+ #
1090
+ # @!attribute [rw] after_step
1091
+ # The after steps of the test run step.
1092
+ # @return [Boolean]
1093
+ #
1094
+ # @!attribute [rw] status
1095
+ # The status of the test run step.
1096
+ # @return [String]
1097
+ #
1098
+ # @!attribute [rw] status_reason
1099
+ # The status reason of the test run step.
1100
+ # @return [String]
1101
+ #
1102
+ # @!attribute [rw] run_start_time
1103
+ # The run start time of the test run step.
1104
+ # @return [Time]
1105
+ #
1106
+ # @!attribute [rw] run_end_time
1107
+ # The run end time of the test run step.
1108
+ # @return [Time]
1109
+ #
1110
+ # @!attribute [rw] step_run_summary
1111
+ # The step run summary of the test run step.
1112
+ # @return [Types::StepRunSummary]
1113
+ #
1114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/GetTestRunStepResponse AWS API Documentation
1115
+ #
1116
+ class GetTestRunStepResponse < Struct.new(
1117
+ :step_name,
1118
+ :test_run_id,
1119
+ :test_case_id,
1120
+ :test_case_version,
1121
+ :test_suite_id,
1122
+ :test_suite_version,
1123
+ :before_step,
1124
+ :after_step,
1125
+ :status,
1126
+ :status_reason,
1127
+ :run_start_time,
1128
+ :run_end_time,
1129
+ :step_run_summary)
1130
+ SENSITIVE = []
1131
+ include Aws::Structure
1132
+ end
1133
+
1134
+ # @!attribute [rw] test_suite_id
1135
+ # The ID of the test suite.
1136
+ # @return [String]
1137
+ #
1138
+ # @!attribute [rw] test_suite_version
1139
+ # The version of the test suite.
1140
+ # @return [Integer]
1141
+ #
1142
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/GetTestSuiteRequest AWS API Documentation
1143
+ #
1144
+ class GetTestSuiteRequest < Struct.new(
1145
+ :test_suite_id,
1146
+ :test_suite_version)
1147
+ SENSITIVE = []
1148
+ include Aws::Structure
1149
+ end
1150
+
1151
+ # @!attribute [rw] test_suite_id
1152
+ # The response ID of the test suite.
1153
+ # @return [String]
1154
+ #
1155
+ # @!attribute [rw] name
1156
+ # The name of the test suite.
1157
+ # @return [String]
1158
+ #
1159
+ # @!attribute [rw] latest_version
1160
+ # The latest version of the test suite.
1161
+ # @return [Types::TestSuiteLatestVersion]
1162
+ #
1163
+ # @!attribute [rw] test_suite_version
1164
+ # The version of the test suite.
1165
+ # @return [Integer]
1166
+ #
1167
+ # @!attribute [rw] status
1168
+ # The status of the test suite.
1169
+ # @return [String]
1170
+ #
1171
+ # @!attribute [rw] status_reason
1172
+ # The status reason of the test suite.
1173
+ # @return [String]
1174
+ #
1175
+ # @!attribute [rw] test_suite_arn
1176
+ # The test suite Amazon Resource Name (ARN).
1177
+ # @return [String]
1178
+ #
1179
+ # @!attribute [rw] creation_time
1180
+ # The creation time of the test suite.
1181
+ # @return [Time]
1182
+ #
1183
+ # @!attribute [rw] last_update_time
1184
+ # The last update time of the test suite.
1185
+ # @return [Time]
1186
+ #
1187
+ # @!attribute [rw] description
1188
+ # The description of the test suite.
1189
+ # @return [String]
1190
+ #
1191
+ # @!attribute [rw] before_steps
1192
+ # The before steps of the test suite.
1193
+ # @return [Array<Types::Step>]
1194
+ #
1195
+ # @!attribute [rw] after_steps
1196
+ # The after steps of the test suite.
1197
+ # @return [Array<Types::Step>]
1198
+ #
1199
+ # @!attribute [rw] test_cases
1200
+ # The test cases of the test suite.
1201
+ # @return [Types::TestCases]
1202
+ #
1203
+ # @!attribute [rw] tags
1204
+ # The tags of the test suite.
1205
+ # @return [Hash<String,String>]
1206
+ #
1207
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/GetTestSuiteResponse AWS API Documentation
1208
+ #
1209
+ class GetTestSuiteResponse < Struct.new(
1210
+ :test_suite_id,
1211
+ :name,
1212
+ :latest_version,
1213
+ :test_suite_version,
1214
+ :status,
1215
+ :status_reason,
1216
+ :test_suite_arn,
1217
+ :creation_time,
1218
+ :last_update_time,
1219
+ :description,
1220
+ :before_steps,
1221
+ :after_steps,
1222
+ :test_cases,
1223
+ :tags)
1224
+ SENSITIVE = []
1225
+ include Aws::Structure
1226
+ end
1227
+
1228
+ # Specifies the input.
1229
+ #
1230
+ # @note Input is a union - when making an API calls you must set exactly one of the members.
1231
+ #
1232
+ # @note Input is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Input corresponding to the set member.
1233
+ #
1234
+ # @!attribute [rw] file
1235
+ # The file in the input.
1236
+ # @return [Types::InputFile]
1237
+ #
1238
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/Input AWS API Documentation
1239
+ #
1240
+ class Input < Struct.new(
1241
+ :file,
1242
+ :unknown)
1243
+ SENSITIVE = []
1244
+ include Aws::Structure
1245
+ include Aws::Structure::Union
1246
+
1247
+ class File < Input; end
1248
+ class Unknown < Input; end
1249
+ end
1250
+
1251
+ # Specifies the input file.
1252
+ #
1253
+ # @!attribute [rw] source_location
1254
+ # The source location of the input file.
1255
+ # @return [String]
1256
+ #
1257
+ # @!attribute [rw] target_location
1258
+ # The target location of the input file.
1259
+ # @return [String]
1260
+ #
1261
+ # @!attribute [rw] file_metadata
1262
+ # The file metadata of the input file.
1263
+ # @return [Types::FileMetadata]
1264
+ #
1265
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/InputFile AWS API Documentation
1266
+ #
1267
+ class InputFile < Struct.new(
1268
+ :source_location,
1269
+ :target_location,
1270
+ :file_metadata)
1271
+ SENSITIVE = []
1272
+ include Aws::Structure
1273
+ end
1274
+
1275
+ # An unexpected error occurred during the processing of the request.
1276
+ #
1277
+ # @!attribute [rw] message
1278
+ # @return [String]
1279
+ #
1280
+ # @!attribute [rw] retry_after_seconds
1281
+ # The number of seconds to retry the query.
1282
+ # @return [Integer]
1283
+ #
1284
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/InternalServerException AWS API Documentation
1285
+ #
1286
+ class InternalServerException < Struct.new(
1287
+ :message,
1288
+ :retry_after_seconds)
1289
+ SENSITIVE = []
1290
+ include Aws::Structure
1291
+ end
1292
+
1293
+ # @!attribute [rw] resource_arn
1294
+ # The Amazon Resource Name (ARN) of the resource.
1295
+ # @return [String]
1296
+ #
1297
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTagsForResourceRequest AWS API Documentation
1298
+ #
1299
+ class ListTagsForResourceRequest < Struct.new(
1300
+ :resource_arn)
1301
+ SENSITIVE = []
1302
+ include Aws::Structure
1303
+ end
1304
+
1305
+ # @!attribute [rw] tags
1306
+ # The tags of the resource.
1307
+ # @return [Hash<String,String>]
1308
+ #
1309
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTagsForResourceResponse AWS API Documentation
1310
+ #
1311
+ class ListTagsForResourceResponse < Struct.new(
1312
+ :tags)
1313
+ SENSITIVE = []
1314
+ include Aws::Structure
1315
+ end
1316
+
1317
+ # @!attribute [rw] test_case_ids
1318
+ # The IDs of the test cases.
1319
+ # @return [Array<String>]
1320
+ #
1321
+ # @!attribute [rw] next_token
1322
+ # The next token of the test cases.
1323
+ # @return [String]
1324
+ #
1325
+ # @!attribute [rw] max_results
1326
+ # The maximum results of the test case.
1327
+ # @return [Integer]
1328
+ #
1329
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestCasesRequest AWS API Documentation
1330
+ #
1331
+ class ListTestCasesRequest < Struct.new(
1332
+ :test_case_ids,
1333
+ :next_token,
1334
+ :max_results)
1335
+ SENSITIVE = []
1336
+ include Aws::Structure
1337
+ end
1338
+
1339
+ # @!attribute [rw] test_cases
1340
+ # The test cases in an application.
1341
+ # @return [Array<Types::TestCaseSummary>]
1342
+ #
1343
+ # @!attribute [rw] next_token
1344
+ # The next token in test cases.
1345
+ # @return [String]
1346
+ #
1347
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestCasesResponse AWS API Documentation
1348
+ #
1349
+ class ListTestCasesResponse < Struct.new(
1350
+ :test_cases,
1351
+ :next_token)
1352
+ SENSITIVE = []
1353
+ include Aws::Structure
1354
+ end
1355
+
1356
+ # @!attribute [rw] test_configuration_ids
1357
+ # The configuration IDs of the test configurations.
1358
+ # @return [Array<String>]
1359
+ #
1360
+ # @!attribute [rw] next_token
1361
+ # The next token for the test configurations.
1362
+ # @return [String]
1363
+ #
1364
+ # @!attribute [rw] max_results
1365
+ # The maximum results of the test configuration.
1366
+ # @return [Integer]
1367
+ #
1368
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestConfigurationsRequest AWS API Documentation
1369
+ #
1370
+ class ListTestConfigurationsRequest < Struct.new(
1371
+ :test_configuration_ids,
1372
+ :next_token,
1373
+ :max_results)
1374
+ SENSITIVE = []
1375
+ include Aws::Structure
1376
+ end
1377
+
1378
+ # @!attribute [rw] test_configurations
1379
+ # The test configurations.
1380
+ # @return [Array<Types::TestConfigurationSummary>]
1381
+ #
1382
+ # @!attribute [rw] next_token
1383
+ # The next token in the test configurations.
1384
+ # @return [String]
1385
+ #
1386
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestConfigurationsResponse AWS API Documentation
1387
+ #
1388
+ class ListTestConfigurationsResponse < Struct.new(
1389
+ :test_configurations,
1390
+ :next_token)
1391
+ SENSITIVE = []
1392
+ include Aws::Structure
1393
+ end
1394
+
1395
+ # @!attribute [rw] test_run_id
1396
+ # The test run ID of the test run steps.
1397
+ # @return [String]
1398
+ #
1399
+ # @!attribute [rw] test_case_id
1400
+ # The test case ID of the test run steps.
1401
+ # @return [String]
1402
+ #
1403
+ # @!attribute [rw] test_suite_id
1404
+ # The test suite ID of the test run steps.
1405
+ # @return [String]
1406
+ #
1407
+ # @!attribute [rw] next_token
1408
+ # The token from a previous step to retrieve the next page of results.
1409
+ # @return [String]
1410
+ #
1411
+ # @!attribute [rw] max_results
1412
+ # The maximum number of test run steps to return in one page of
1413
+ # results.
1414
+ # @return [Integer]
1415
+ #
1416
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestRunStepsRequest AWS API Documentation
1417
+ #
1418
+ class ListTestRunStepsRequest < Struct.new(
1419
+ :test_run_id,
1420
+ :test_case_id,
1421
+ :test_suite_id,
1422
+ :next_token,
1423
+ :max_results)
1424
+ SENSITIVE = []
1425
+ include Aws::Structure
1426
+ end
1427
+
1428
+ # @!attribute [rw] test_run_steps
1429
+ # The test run steps of the response query.
1430
+ # @return [Array<Types::TestRunStepSummary>]
1431
+ #
1432
+ # @!attribute [rw] next_token
1433
+ # The token from a previous request to retrieve the next page of
1434
+ # results.
1435
+ # @return [String]
1436
+ #
1437
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestRunStepsResponse AWS API Documentation
1438
+ #
1439
+ class ListTestRunStepsResponse < Struct.new(
1440
+ :test_run_steps,
1441
+ :next_token)
1442
+ SENSITIVE = []
1443
+ include Aws::Structure
1444
+ end
1445
+
1446
+ # @!attribute [rw] test_run_id
1447
+ # The test run ID of the test cases.
1448
+ # @return [String]
1449
+ #
1450
+ # @!attribute [rw] next_token
1451
+ # The token from a previous request to retrieve the next page of
1452
+ # results.
1453
+ # @return [String]
1454
+ #
1455
+ # @!attribute [rw] max_results
1456
+ # The maximum number of test run test cases to return in one page of
1457
+ # results.
1458
+ # @return [Integer]
1459
+ #
1460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestRunTestCasesRequest AWS API Documentation
1461
+ #
1462
+ class ListTestRunTestCasesRequest < Struct.new(
1463
+ :test_run_id,
1464
+ :next_token,
1465
+ :max_results)
1466
+ SENSITIVE = []
1467
+ include Aws::Structure
1468
+ end
1469
+
1470
+ # @!attribute [rw] test_run_test_cases
1471
+ # The test run of the test cases.
1472
+ # @return [Array<Types::TestCaseRunSummary>]
1473
+ #
1474
+ # @!attribute [rw] next_token
1475
+ # The token from a previous request to retrieve the next page of
1476
+ # results.
1477
+ # @return [String]
1478
+ #
1479
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestRunTestCasesResponse AWS API Documentation
1480
+ #
1481
+ class ListTestRunTestCasesResponse < Struct.new(
1482
+ :test_run_test_cases,
1483
+ :next_token)
1484
+ SENSITIVE = []
1485
+ include Aws::Structure
1486
+ end
1487
+
1488
+ # @!attribute [rw] test_suite_id
1489
+ # The test suite ID of the test runs.
1490
+ # @return [String]
1491
+ #
1492
+ # @!attribute [rw] test_run_ids
1493
+ # The test run IDs of the test runs.
1494
+ # @return [Array<String>]
1495
+ #
1496
+ # @!attribute [rw] next_token
1497
+ # The token from the previous request to retrieve the next page of
1498
+ # test run results.
1499
+ # @return [String]
1500
+ #
1501
+ # @!attribute [rw] max_results
1502
+ # The maximum number of test runs to return in one page of results.
1503
+ # @return [Integer]
1504
+ #
1505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestRunsRequest AWS API Documentation
1506
+ #
1507
+ class ListTestRunsRequest < Struct.new(
1508
+ :test_suite_id,
1509
+ :test_run_ids,
1510
+ :next_token,
1511
+ :max_results)
1512
+ SENSITIVE = []
1513
+ include Aws::Structure
1514
+ end
1515
+
1516
+ # @!attribute [rw] test_runs
1517
+ # The test runs of the response query.
1518
+ # @return [Array<Types::TestRunSummary>]
1519
+ #
1520
+ # @!attribute [rw] next_token
1521
+ # The token from the previous request to retrieve the next page of
1522
+ # results.
1523
+ # @return [String]
1524
+ #
1525
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestRunsResponse AWS API Documentation
1526
+ #
1527
+ class ListTestRunsResponse < Struct.new(
1528
+ :test_runs,
1529
+ :next_token)
1530
+ SENSITIVE = []
1531
+ include Aws::Structure
1532
+ end
1533
+
1534
+ # @!attribute [rw] test_suite_ids
1535
+ # The suite ID of the test suites.
1536
+ # @return [Array<String>]
1537
+ #
1538
+ # @!attribute [rw] next_token
1539
+ # The token from a previous request to retrieve the next page of
1540
+ # results.
1541
+ # @return [String]
1542
+ #
1543
+ # @!attribute [rw] max_results
1544
+ # The maximum number of test suites to return in one page of results.
1545
+ # @return [Integer]
1546
+ #
1547
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestSuitesRequest AWS API Documentation
1548
+ #
1549
+ class ListTestSuitesRequest < Struct.new(
1550
+ :test_suite_ids,
1551
+ :next_token,
1552
+ :max_results)
1553
+ SENSITIVE = []
1554
+ include Aws::Structure
1555
+ end
1556
+
1557
+ # @!attribute [rw] test_suites
1558
+ # The test suites returned with the response query.
1559
+ # @return [Array<Types::TestSuiteSummary>]
1560
+ #
1561
+ # @!attribute [rw] next_token
1562
+ # The token from a previous request to retrieve the next page of test
1563
+ # suites results.
1564
+ # @return [String]
1565
+ #
1566
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ListTestSuitesResponse AWS API Documentation
1567
+ #
1568
+ class ListTestSuitesResponse < Struct.new(
1569
+ :test_suites,
1570
+ :next_token)
1571
+ SENSITIVE = []
1572
+ include Aws::Structure
1573
+ end
1574
+
1575
+ # Specifies the AWS Mainframe Modernization managed action properties.
1576
+ #
1577
+ # @!attribute [rw] force_stop
1578
+ # Force stops the AWS Mainframe Modernization managed action
1579
+ # properties.
1580
+ # @return [Boolean]
1581
+ #
1582
+ # @!attribute [rw] import_data_set_location
1583
+ # The import data set location of the AWS Mainframe Modernization
1584
+ # managed action properties.
1585
+ # @return [String]
1586
+ #
1587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2ManagedActionProperties AWS API Documentation
1588
+ #
1589
+ class M2ManagedActionProperties < Struct.new(
1590
+ :force_stop,
1591
+ :import_data_set_location)
1592
+ SENSITIVE = []
1593
+ include Aws::Structure
1594
+ end
1595
+
1596
+ # Specifies the AWS Mainframe Modernization managed application.
1597
+ #
1598
+ # @!attribute [rw] application_id
1599
+ # The application ID of the AWS Mainframe Modernization managed
1600
+ # application.
1601
+ # @return [String]
1602
+ #
1603
+ # @!attribute [rw] runtime
1604
+ # The runtime of the AWS Mainframe Modernization managed application.
1605
+ # @return [String]
1606
+ #
1607
+ # @!attribute [rw] vpc_endpoint_service_name
1608
+ # The VPC endpoint service name of the AWS Mainframe Modernization
1609
+ # managed application.
1610
+ # @return [String]
1611
+ #
1612
+ # @!attribute [rw] listener_port
1613
+ # The listener port of the AWS Mainframe Modernization managed
1614
+ # application.
1615
+ # @return [String]
1616
+ #
1617
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2ManagedApplication AWS API Documentation
1618
+ #
1619
+ class M2ManagedApplication < Struct.new(
1620
+ :application_id,
1621
+ :runtime,
1622
+ :vpc_endpoint_service_name,
1623
+ :listener_port)
1624
+ SENSITIVE = []
1625
+ include Aws::Structure
1626
+ end
1627
+
1628
+ # Specifies the AWS Mainframe Modernization managed application action.
1629
+ #
1630
+ # @!attribute [rw] resource
1631
+ # The resource of the AWS Mainframe Modernization managed application
1632
+ # action.
1633
+ # @return [String]
1634
+ #
1635
+ # @!attribute [rw] action_type
1636
+ # The action type of the AWS Mainframe Modernization managed
1637
+ # application action.
1638
+ # @return [String]
1639
+ #
1640
+ # @!attribute [rw] properties
1641
+ # The properties of the AWS Mainframe Modernization managed
1642
+ # application action.
1643
+ # @return [Types::M2ManagedActionProperties]
1644
+ #
1645
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2ManagedApplicationAction AWS API Documentation
1646
+ #
1647
+ class M2ManagedApplicationAction < Struct.new(
1648
+ :resource,
1649
+ :action_type,
1650
+ :properties)
1651
+ SENSITIVE = []
1652
+ include Aws::Structure
1653
+ end
1654
+
1655
+ # Specifies the AWS Mainframe Modernization managed application step
1656
+ # input.
1657
+ #
1658
+ # @!attribute [rw] application_id
1659
+ # The application ID of the AWS Mainframe Modernization managed
1660
+ # application step input.
1661
+ # @return [String]
1662
+ #
1663
+ # @!attribute [rw] runtime
1664
+ # The runtime of the AWS Mainframe Modernization managed application
1665
+ # step input.
1666
+ # @return [String]
1667
+ #
1668
+ # @!attribute [rw] vpc_endpoint_service_name
1669
+ # The VPC endpoint service name of the AWS Mainframe Modernization
1670
+ # managed application step input.
1671
+ # @return [String]
1672
+ #
1673
+ # @!attribute [rw] listener_port
1674
+ # The listener port of the AWS Mainframe Modernization managed
1675
+ # application step input.
1676
+ # @return [Integer]
1677
+ #
1678
+ # @!attribute [rw] action_type
1679
+ # The action type of the AWS Mainframe Modernization managed
1680
+ # application step input.
1681
+ # @return [String]
1682
+ #
1683
+ # @!attribute [rw] properties
1684
+ # The properties of the AWS Mainframe Modernization managed
1685
+ # application step input.
1686
+ # @return [Types::M2ManagedActionProperties]
1687
+ #
1688
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2ManagedApplicationStepInput AWS API Documentation
1689
+ #
1690
+ class M2ManagedApplicationStepInput < Struct.new(
1691
+ :application_id,
1692
+ :runtime,
1693
+ :vpc_endpoint_service_name,
1694
+ :listener_port,
1695
+ :action_type,
1696
+ :properties)
1697
+ SENSITIVE = []
1698
+ include Aws::Structure
1699
+ end
1700
+
1701
+ # Specifies the AWS Mainframe Modernization managed application step
1702
+ # output.
1703
+ #
1704
+ # @!attribute [rw] import_data_set_summary
1705
+ # The import data set summary of the AWS Mainframe Modernization
1706
+ # managed application step output.
1707
+ # @return [Hash<String,String>]
1708
+ #
1709
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2ManagedApplicationStepOutput AWS API Documentation
1710
+ #
1711
+ class M2ManagedApplicationStepOutput < Struct.new(
1712
+ :import_data_set_summary)
1713
+ SENSITIVE = []
1714
+ include Aws::Structure
1715
+ end
1716
+
1717
+ # Specifies the AWS Mainframe Modernization managed application step
1718
+ # summary.
1719
+ #
1720
+ # @!attribute [rw] step_input
1721
+ # The step input of the AWS Mainframe Modernization managed
1722
+ # application step summary.
1723
+ # @return [Types::M2ManagedApplicationStepInput]
1724
+ #
1725
+ # @!attribute [rw] step_output
1726
+ # The step output of the AWS Mainframe Modernization managed
1727
+ # application step summary.
1728
+ # @return [Types::M2ManagedApplicationStepOutput]
1729
+ #
1730
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2ManagedApplicationStepSummary AWS API Documentation
1731
+ #
1732
+ class M2ManagedApplicationStepSummary < Struct.new(
1733
+ :step_input,
1734
+ :step_output)
1735
+ SENSITIVE = []
1736
+ include Aws::Structure
1737
+ end
1738
+
1739
+ # Specifies the AWS Mainframe Modernization managed application summary.
1740
+ #
1741
+ # @!attribute [rw] application_id
1742
+ # The application ID of the AWS Mainframe Modernization managed
1743
+ # application summary.
1744
+ # @return [String]
1745
+ #
1746
+ # @!attribute [rw] runtime
1747
+ # The runtime of the AWS Mainframe Modernization managed application
1748
+ # summary.
1749
+ # @return [String]
1750
+ #
1751
+ # @!attribute [rw] listener_port
1752
+ # The listener port of the AWS Mainframe Modernization managed
1753
+ # application summary.
1754
+ # @return [Integer]
1755
+ #
1756
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2ManagedApplicationSummary AWS API Documentation
1757
+ #
1758
+ class M2ManagedApplicationSummary < Struct.new(
1759
+ :application_id,
1760
+ :runtime,
1761
+ :listener_port)
1762
+ SENSITIVE = []
1763
+ include Aws::Structure
1764
+ end
1765
+
1766
+ # Specifies the AWS Mainframe Modernization non-managed application.
1767
+ #
1768
+ # @!attribute [rw] vpc_endpoint_service_name
1769
+ # The VPC endpoint service name of the AWS Mainframe Modernization
1770
+ # non-managed application.
1771
+ # @return [String]
1772
+ #
1773
+ # @!attribute [rw] listener_port
1774
+ # The listener port of the AWS Mainframe Modernization non-managed
1775
+ # application.
1776
+ # @return [String]
1777
+ #
1778
+ # @!attribute [rw] runtime
1779
+ # The runtime of the AWS Mainframe Modernization non-managed
1780
+ # application.
1781
+ # @return [String]
1782
+ #
1783
+ # @!attribute [rw] web_app_name
1784
+ # The web application name of the AWS Mainframe Modernization
1785
+ # non-managed application.
1786
+ # @return [String]
1787
+ #
1788
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2NonManagedApplication AWS API Documentation
1789
+ #
1790
+ class M2NonManagedApplication < Struct.new(
1791
+ :vpc_endpoint_service_name,
1792
+ :listener_port,
1793
+ :runtime,
1794
+ :web_app_name)
1795
+ SENSITIVE = []
1796
+ include Aws::Structure
1797
+ end
1798
+
1799
+ # Specifies the AWS Mainframe Modernization non-managed application
1800
+ # action.
1801
+ #
1802
+ # @!attribute [rw] resource
1803
+ # The resource of the AWS Mainframe Modernization non-managed
1804
+ # application action.
1805
+ # @return [String]
1806
+ #
1807
+ # @!attribute [rw] action_type
1808
+ # The action type of the AWS Mainframe Modernization non-managed
1809
+ # application action.
1810
+ # @return [String]
1811
+ #
1812
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2NonManagedApplicationAction AWS API Documentation
1813
+ #
1814
+ class M2NonManagedApplicationAction < Struct.new(
1815
+ :resource,
1816
+ :action_type)
1817
+ SENSITIVE = []
1818
+ include Aws::Structure
1819
+ end
1820
+
1821
+ # Specifies the AWS Mainframe Modernization non-managed application step
1822
+ # input.
1823
+ #
1824
+ # @!attribute [rw] vpc_endpoint_service_name
1825
+ # The VPC endpoint service name of the AWS Mainframe Modernization
1826
+ # non-managed application step input.
1827
+ # @return [String]
1828
+ #
1829
+ # @!attribute [rw] listener_port
1830
+ # The listener port of the AWS Mainframe Modernization non-managed
1831
+ # application step input.
1832
+ # @return [Integer]
1833
+ #
1834
+ # @!attribute [rw] runtime
1835
+ # The runtime of the AWS Mainframe Modernization non-managed
1836
+ # application step input.
1837
+ # @return [String]
1838
+ #
1839
+ # @!attribute [rw] web_app_name
1840
+ # The web app name of the AWS Mainframe Modernization non-managed
1841
+ # application step input.
1842
+ # @return [String]
1843
+ #
1844
+ # @!attribute [rw] action_type
1845
+ # The action type of the AWS Mainframe Modernization non-managed
1846
+ # application step input.
1847
+ # @return [String]
1848
+ #
1849
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2NonManagedApplicationStepInput AWS API Documentation
1850
+ #
1851
+ class M2NonManagedApplicationStepInput < Struct.new(
1852
+ :vpc_endpoint_service_name,
1853
+ :listener_port,
1854
+ :runtime,
1855
+ :web_app_name,
1856
+ :action_type)
1857
+ SENSITIVE = []
1858
+ include Aws::Structure
1859
+ end
1860
+
1861
+ # Specifies the AWS Mainframe Modernization non-managed application step
1862
+ # output.
1863
+ #
1864
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2NonManagedApplicationStepOutput AWS API Documentation
1865
+ #
1866
+ class M2NonManagedApplicationStepOutput < Aws::EmptyStructure; end
1867
+
1868
+ # Specifies the AWS Mainframe Modernization non-managed application step
1869
+ # summary.
1870
+ #
1871
+ # @!attribute [rw] step_input
1872
+ # The step input of the AWS Mainframe Modernization non-managed
1873
+ # application step summary.
1874
+ # @return [Types::M2NonManagedApplicationStepInput]
1875
+ #
1876
+ # @!attribute [rw] step_output
1877
+ # The step output of the AWS Mainframe Modernization non-managed
1878
+ # application step summary.
1879
+ # @return [Types::M2NonManagedApplicationStepOutput]
1880
+ #
1881
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2NonManagedApplicationStepSummary AWS API Documentation
1882
+ #
1883
+ class M2NonManagedApplicationStepSummary < Struct.new(
1884
+ :step_input,
1885
+ :step_output)
1886
+ SENSITIVE = []
1887
+ include Aws::Structure
1888
+ end
1889
+
1890
+ # Specifies the AWS Mainframe Modernization non-managed application
1891
+ # summary.
1892
+ #
1893
+ # @!attribute [rw] vpc_endpoint_service_name
1894
+ # The VPC endpoint service name of the AWS Mainframe Modernization
1895
+ # non-managed application summary.
1896
+ # @return [String]
1897
+ #
1898
+ # @!attribute [rw] listener_port
1899
+ # The listener port of the AWS Mainframe Modernization non-managed
1900
+ # application summary.
1901
+ # @return [Integer]
1902
+ #
1903
+ # @!attribute [rw] runtime
1904
+ # The runtime of the AWS Mainframe Modernization non-managed
1905
+ # application summary.
1906
+ # @return [String]
1907
+ #
1908
+ # @!attribute [rw] web_app_name
1909
+ # The web application name of the AWS Mainframe Modernization
1910
+ # non-managed application summary.
1911
+ # @return [String]
1912
+ #
1913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/M2NonManagedApplicationSummary AWS API Documentation
1914
+ #
1915
+ class M2NonManagedApplicationSummary < Struct.new(
1916
+ :vpc_endpoint_service_name,
1917
+ :listener_port,
1918
+ :runtime,
1919
+ :web_app_name)
1920
+ SENSITIVE = []
1921
+ include Aws::Structure
1922
+ end
1923
+
1924
+ # Specifies the mainframe action.
1925
+ #
1926
+ # @!attribute [rw] resource
1927
+ # The resource of the mainframe action.
1928
+ # @return [String]
1929
+ #
1930
+ # @!attribute [rw] action_type
1931
+ # The action type of the mainframe action.
1932
+ # @return [Types::MainframeActionType]
1933
+ #
1934
+ # @!attribute [rw] properties
1935
+ # The properties of the mainframe action.
1936
+ # @return [Types::MainframeActionProperties]
1937
+ #
1938
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/MainframeAction AWS API Documentation
1939
+ #
1940
+ class MainframeAction < Struct.new(
1941
+ :resource,
1942
+ :action_type,
1943
+ :properties)
1944
+ SENSITIVE = []
1945
+ include Aws::Structure
1946
+ end
1947
+
1948
+ # Specifies the mainframe action properties.
1949
+ #
1950
+ # @!attribute [rw] dms_task_arn
1951
+ # The DMS task ARN of the mainframe action properties.
1952
+ # @return [String]
1953
+ #
1954
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/MainframeActionProperties AWS API Documentation
1955
+ #
1956
+ class MainframeActionProperties < Struct.new(
1957
+ :dms_task_arn)
1958
+ SENSITIVE = []
1959
+ include Aws::Structure
1960
+ end
1961
+
1962
+ # Specifies the mainframe action summary.
1963
+ #
1964
+ # @note MainframeActionSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MainframeActionSummary corresponding to the set member.
1965
+ #
1966
+ # @!attribute [rw] batch
1967
+ # The batch of the mainframe action summary.
1968
+ # @return [Types::BatchSummary]
1969
+ #
1970
+ # @!attribute [rw] tn3270
1971
+ # The tn3270 port of the mainframe action summary.
1972
+ # @return [Types::TN3270Summary]
1973
+ #
1974
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/MainframeActionSummary AWS API Documentation
1975
+ #
1976
+ class MainframeActionSummary < Struct.new(
1977
+ :batch,
1978
+ :tn3270,
1979
+ :unknown)
1980
+ SENSITIVE = []
1981
+ include Aws::Structure
1982
+ include Aws::Structure::Union
1983
+
1984
+ class Batch < MainframeActionSummary; end
1985
+ class Tn3270 < MainframeActionSummary; end
1986
+ class Unknown < MainframeActionSummary; end
1987
+ end
1988
+
1989
+ # Specifies the mainframe action type.
1990
+ #
1991
+ # @note MainframeActionType is a union - when making an API calls you must set exactly one of the members.
1992
+ #
1993
+ # @note MainframeActionType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MainframeActionType corresponding to the set member.
1994
+ #
1995
+ # @!attribute [rw] batch
1996
+ # The batch of the mainframe action type.
1997
+ # @return [Types::Batch]
1998
+ #
1999
+ # @!attribute [rw] tn3270
2000
+ # The tn3270 port of the mainframe action type.
2001
+ # @return [Types::TN3270]
2002
+ #
2003
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/MainframeActionType AWS API Documentation
2004
+ #
2005
+ class MainframeActionType < Struct.new(
2006
+ :batch,
2007
+ :tn3270,
2008
+ :unknown)
2009
+ SENSITIVE = []
2010
+ include Aws::Structure
2011
+ include Aws::Structure::Union
2012
+
2013
+ class Batch < MainframeActionType; end
2014
+ class Tn3270 < MainframeActionType; end
2015
+ class Unknown < MainframeActionType; end
2016
+ end
2017
+
2018
+ # Specifies the mainframe resource summary.
2019
+ #
2020
+ # @note MainframeResourceSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MainframeResourceSummary corresponding to the set member.
2021
+ #
2022
+ # @!attribute [rw] m2_managed_application
2023
+ # The AWS Mainframe Modernization managed application in the mainframe
2024
+ # resource summary.
2025
+ # @return [Types::M2ManagedApplicationSummary]
2026
+ #
2027
+ # @!attribute [rw] m2_non_managed_application
2028
+ # The AWS Mainframe Modernization non-managed application in the
2029
+ # mainframe resource summary.
2030
+ # @return [Types::M2NonManagedApplicationSummary]
2031
+ #
2032
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/MainframeResourceSummary AWS API Documentation
2033
+ #
2034
+ class MainframeResourceSummary < Struct.new(
2035
+ :m2_managed_application,
2036
+ :m2_non_managed_application,
2037
+ :unknown)
2038
+ SENSITIVE = []
2039
+ include Aws::Structure
2040
+ include Aws::Structure::Union
2041
+
2042
+ class M2ManagedApplication < MainframeResourceSummary; end
2043
+ class M2NonManagedApplication < MainframeResourceSummary; end
2044
+ class Unknown < MainframeResourceSummary; end
2045
+ end
2046
+
2047
+ # Specifies an output.
2048
+ #
2049
+ # @note Output is a union - when making an API calls you must set exactly one of the members.
2050
+ #
2051
+ # @note Output is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Output corresponding to the set member.
2052
+ #
2053
+ # @!attribute [rw] file
2054
+ # The file of the output.
2055
+ # @return [Types::OutputFile]
2056
+ #
2057
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/Output AWS API Documentation
2058
+ #
2059
+ class Output < Struct.new(
2060
+ :file,
2061
+ :unknown)
2062
+ SENSITIVE = []
2063
+ include Aws::Structure
2064
+ include Aws::Structure::Union
2065
+
2066
+ class File < Output; end
2067
+ class Unknown < Output; end
2068
+ end
2069
+
2070
+ # Specifies an output file.
2071
+ #
2072
+ # @!attribute [rw] file_location
2073
+ # The file location of the output file.
2074
+ # @return [String]
2075
+ #
2076
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/OutputFile AWS API Documentation
2077
+ #
2078
+ class OutputFile < Struct.new(
2079
+ :file_location)
2080
+ SENSITIVE = []
2081
+ include Aws::Structure
2082
+ end
2083
+
2084
+ # Specifies a resource.
2085
+ #
2086
+ # @!attribute [rw] name
2087
+ # The name of the resource.
2088
+ # @return [String]
2089
+ #
2090
+ # @!attribute [rw] type
2091
+ # The type of the resource.
2092
+ # @return [Types::ResourceType]
2093
+ #
2094
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/Resource AWS API Documentation
2095
+ #
2096
+ class Resource < Struct.new(
2097
+ :name,
2098
+ :type)
2099
+ SENSITIVE = []
2100
+ include Aws::Structure
2101
+ end
2102
+
2103
+ # Specifies a resource action.
2104
+ #
2105
+ # @note ResourceAction is a union - when making an API calls you must set exactly one of the members.
2106
+ #
2107
+ # @note ResourceAction is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceAction corresponding to the set member.
2108
+ #
2109
+ # @!attribute [rw] m2_managed_application_action
2110
+ # The AWS Mainframe Modernization managed application action of the
2111
+ # resource action.
2112
+ # @return [Types::M2ManagedApplicationAction]
2113
+ #
2114
+ # @!attribute [rw] m2_non_managed_application_action
2115
+ # The AWS Mainframe Modernization non-managed application action of
2116
+ # the resource action.
2117
+ # @return [Types::M2NonManagedApplicationAction]
2118
+ #
2119
+ # @!attribute [rw] cloud_formation_action
2120
+ # The CloudFormation action of the resource action.
2121
+ # @return [Types::CloudFormationAction]
2122
+ #
2123
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ResourceAction AWS API Documentation
2124
+ #
2125
+ class ResourceAction < Struct.new(
2126
+ :m2_managed_application_action,
2127
+ :m2_non_managed_application_action,
2128
+ :cloud_formation_action,
2129
+ :unknown)
2130
+ SENSITIVE = []
2131
+ include Aws::Structure
2132
+ include Aws::Structure::Union
2133
+
2134
+ class M2ManagedApplicationAction < ResourceAction; end
2135
+ class M2NonManagedApplicationAction < ResourceAction; end
2136
+ class CloudFormationAction < ResourceAction; end
2137
+ class Unknown < ResourceAction; end
2138
+ end
2139
+
2140
+ # Specifies the resource action summary.
2141
+ #
2142
+ # @note ResourceActionSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceActionSummary corresponding to the set member.
2143
+ #
2144
+ # @!attribute [rw] cloud_formation
2145
+ # The CloudFormation template of the resource action summary.
2146
+ # @return [Types::CloudFormationStepSummary]
2147
+ #
2148
+ # @!attribute [rw] m2_managed_application
2149
+ # The AWS Mainframe Modernization managed application of the resource
2150
+ # action summary.
2151
+ # @return [Types::M2ManagedApplicationStepSummary]
2152
+ #
2153
+ # @!attribute [rw] m2_non_managed_application
2154
+ # The AWS Mainframe Modernization non-managed application of the
2155
+ # resource action summary.
2156
+ # @return [Types::M2NonManagedApplicationStepSummary]
2157
+ #
2158
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ResourceActionSummary AWS API Documentation
2159
+ #
2160
+ class ResourceActionSummary < Struct.new(
2161
+ :cloud_formation,
2162
+ :m2_managed_application,
2163
+ :m2_non_managed_application,
2164
+ :unknown)
2165
+ SENSITIVE = []
2166
+ include Aws::Structure
2167
+ include Aws::Structure::Union
2168
+
2169
+ class CloudFormation < ResourceActionSummary; end
2170
+ class M2ManagedApplication < ResourceActionSummary; end
2171
+ class M2NonManagedApplication < ResourceActionSummary; end
2172
+ class Unknown < ResourceActionSummary; end
2173
+ end
2174
+
2175
+ # The specified resource was not found.
2176
+ #
2177
+ # @!attribute [rw] message
2178
+ # @return [String]
2179
+ #
2180
+ # @!attribute [rw] resource_id
2181
+ # The resource ID of the resource not found.
2182
+ # @return [String]
2183
+ #
2184
+ # @!attribute [rw] resource_type
2185
+ # The resource type of the resource not found.
2186
+ # @return [String]
2187
+ #
2188
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ResourceNotFoundException AWS API Documentation
2189
+ #
2190
+ class ResourceNotFoundException < Struct.new(
2191
+ :message,
2192
+ :resource_id,
2193
+ :resource_type)
2194
+ SENSITIVE = []
2195
+ include Aws::Structure
2196
+ end
2197
+
2198
+ # Specifies the resource type.
2199
+ #
2200
+ # @note ResourceType is a union - when making an API calls you must set exactly one of the members.
2201
+ #
2202
+ # @note ResourceType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceType corresponding to the set member.
2203
+ #
2204
+ # @!attribute [rw] cloud_formation
2205
+ # The CloudFormation template of the resource type.
2206
+ # @return [Types::CloudFormation]
2207
+ #
2208
+ # @!attribute [rw] m2_managed_application
2209
+ # The AWS Mainframe Modernization managed application of the resource
2210
+ # type.
2211
+ # @return [Types::M2ManagedApplication]
2212
+ #
2213
+ # @!attribute [rw] m2_non_managed_application
2214
+ # The AWS Mainframe Modernization non-managed application of the
2215
+ # resource type.
2216
+ # @return [Types::M2NonManagedApplication]
2217
+ #
2218
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ResourceType AWS API Documentation
2219
+ #
2220
+ class ResourceType < Struct.new(
2221
+ :cloud_formation,
2222
+ :m2_managed_application,
2223
+ :m2_non_managed_application,
2224
+ :unknown)
2225
+ SENSITIVE = []
2226
+ include Aws::Structure
2227
+ include Aws::Structure::Union
2228
+
2229
+ class CloudFormation < ResourceType; end
2230
+ class M2ManagedApplication < ResourceType; end
2231
+ class M2NonManagedApplication < ResourceType; end
2232
+ class Unknown < ResourceType; end
2233
+ end
2234
+
2235
+ # Specifies the script.
2236
+ #
2237
+ # @!attribute [rw] script_location
2238
+ # The script location of the scripts.
2239
+ # @return [String]
2240
+ #
2241
+ # @!attribute [rw] type
2242
+ # The type of the scripts.
2243
+ # @return [String]
2244
+ #
2245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/Script AWS API Documentation
2246
+ #
2247
+ class Script < Struct.new(
2248
+ :script_location,
2249
+ :type)
2250
+ SENSITIVE = []
2251
+ include Aws::Structure
2252
+ end
2253
+
2254
+ # Specifies the scripts summary.
2255
+ #
2256
+ # @!attribute [rw] script_location
2257
+ # The script location of the script summary.
2258
+ # @return [String]
2259
+ #
2260
+ # @!attribute [rw] type
2261
+ # The type of the script summary.
2262
+ # @return [String]
2263
+ #
2264
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ScriptSummary AWS API Documentation
2265
+ #
2266
+ class ScriptSummary < Struct.new(
2267
+ :script_location,
2268
+ :type)
2269
+ SENSITIVE = []
2270
+ include Aws::Structure
2271
+ end
2272
+
2273
+ # One or more quotas for AWS Application Testing exceeds the limit.
2274
+ #
2275
+ # @!attribute [rw] message
2276
+ # @return [String]
2277
+ #
2278
+ # @!attribute [rw] resource_id
2279
+ # The resource ID of AWS Application Testing that exceeded the limit.
2280
+ # @return [String]
2281
+ #
2282
+ # @!attribute [rw] resource_type
2283
+ # The resource type of AWS Application Testing that exceeded the
2284
+ # limit.
2285
+ # @return [String]
2286
+ #
2287
+ # @!attribute [rw] service_code
2288
+ # The service code of AWS Application Testing that exceeded the limit.
2289
+ # @return [String]
2290
+ #
2291
+ # @!attribute [rw] quota_code
2292
+ # The quote codes of AWS Application Testing that exceeded the limit.
2293
+ # @return [String]
2294
+ #
2295
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ServiceQuotaExceededException AWS API Documentation
2296
+ #
2297
+ class ServiceQuotaExceededException < Struct.new(
2298
+ :message,
2299
+ :resource_id,
2300
+ :resource_type,
2301
+ :service_code,
2302
+ :quota_code)
2303
+ SENSITIVE = []
2304
+ include Aws::Structure
2305
+ end
2306
+
2307
+ # Specifies the service settings.
2308
+ #
2309
+ # @!attribute [rw] kms_key_id
2310
+ # The KMS key ID of the service settings.
2311
+ # @return [String]
2312
+ #
2313
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ServiceSettings AWS API Documentation
2314
+ #
2315
+ class ServiceSettings < Struct.new(
2316
+ :kms_key_id)
2317
+ SENSITIVE = []
2318
+ include Aws::Structure
2319
+ end
2320
+
2321
+ # Specifies the source database metadata.
2322
+ #
2323
+ # @!attribute [rw] type
2324
+ # The type of the source database metadata.
2325
+ # @return [String]
2326
+ #
2327
+ # @!attribute [rw] capture_tool
2328
+ # The capture tool of the source database metadata.
2329
+ # @return [String]
2330
+ #
2331
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/SourceDatabaseMetadata AWS API Documentation
2332
+ #
2333
+ class SourceDatabaseMetadata < Struct.new(
2334
+ :type,
2335
+ :capture_tool)
2336
+ SENSITIVE = []
2337
+ include Aws::Structure
2338
+ end
2339
+
2340
+ # @!attribute [rw] test_suite_id
2341
+ # The test suite ID of the test run.
2342
+ # @return [String]
2343
+ #
2344
+ # @!attribute [rw] test_configuration_id
2345
+ # The configuration ID of the test run.
2346
+ # @return [String]
2347
+ #
2348
+ # @!attribute [rw] client_token
2349
+ # The client token of the test run.
2350
+ #
2351
+ # **A suitable default value is auto-generated.** You should normally
2352
+ # not need to pass this option.
2353
+ # @return [String]
2354
+ #
2355
+ # @!attribute [rw] tags
2356
+ # The tags of the test run.
2357
+ # @return [Hash<String,String>]
2358
+ #
2359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/StartTestRunRequest AWS API Documentation
2360
+ #
2361
+ class StartTestRunRequest < Struct.new(
2362
+ :test_suite_id,
2363
+ :test_configuration_id,
2364
+ :client_token,
2365
+ :tags)
2366
+ SENSITIVE = []
2367
+ include Aws::Structure
2368
+ end
2369
+
2370
+ # @!attribute [rw] test_run_id
2371
+ # The test run ID of the test run.
2372
+ # @return [String]
2373
+ #
2374
+ # @!attribute [rw] test_run_status
2375
+ # The test run status of the test run.
2376
+ # @return [String]
2377
+ #
2378
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/StartTestRunResponse AWS API Documentation
2379
+ #
2380
+ class StartTestRunResponse < Struct.new(
2381
+ :test_run_id,
2382
+ :test_run_status)
2383
+ SENSITIVE = []
2384
+ include Aws::Structure
2385
+ end
2386
+
2387
+ # Defines a step.
2388
+ #
2389
+ # @!attribute [rw] name
2390
+ # The name of the step.
2391
+ # @return [String]
2392
+ #
2393
+ # @!attribute [rw] description
2394
+ # The description of the step.
2395
+ # @return [String]
2396
+ #
2397
+ # @!attribute [rw] action
2398
+ # The action of the step.
2399
+ # @return [Types::StepAction]
2400
+ #
2401
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/Step AWS API Documentation
2402
+ #
2403
+ class Step < Struct.new(
2404
+ :name,
2405
+ :description,
2406
+ :action)
2407
+ SENSITIVE = []
2408
+ include Aws::Structure
2409
+ end
2410
+
2411
+ # Specifies a step action.
2412
+ #
2413
+ # @note StepAction is a union - when making an API calls you must set exactly one of the members.
2414
+ #
2415
+ # @note StepAction is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StepAction corresponding to the set member.
2416
+ #
2417
+ # @!attribute [rw] resource_action
2418
+ # The resource action of the step action.
2419
+ # @return [Types::ResourceAction]
2420
+ #
2421
+ # @!attribute [rw] mainframe_action
2422
+ # The mainframe action of the step action.
2423
+ # @return [Types::MainframeAction]
2424
+ #
2425
+ # @!attribute [rw] compare_action
2426
+ # The compare action of the step action.
2427
+ # @return [Types::CompareAction]
2428
+ #
2429
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/StepAction AWS API Documentation
2430
+ #
2431
+ class StepAction < Struct.new(
2432
+ :resource_action,
2433
+ :mainframe_action,
2434
+ :compare_action,
2435
+ :unknown)
2436
+ SENSITIVE = []
2437
+ include Aws::Structure
2438
+ include Aws::Structure::Union
2439
+
2440
+ class ResourceAction < StepAction; end
2441
+ class MainframeAction < StepAction; end
2442
+ class CompareAction < StepAction; end
2443
+ class Unknown < StepAction; end
2444
+ end
2445
+
2446
+ # Defines the step run summary.
2447
+ #
2448
+ # @note StepRunSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StepRunSummary corresponding to the set member.
2449
+ #
2450
+ # @!attribute [rw] mainframe_action
2451
+ # The mainframe action of the step run summary.
2452
+ # @return [Types::MainframeActionSummary]
2453
+ #
2454
+ # @!attribute [rw] compare_action
2455
+ # The compare action of the step run summary.
2456
+ # @return [Types::CompareActionSummary]
2457
+ #
2458
+ # @!attribute [rw] resource_action
2459
+ # The resource action of the step run summary.
2460
+ # @return [Types::ResourceActionSummary]
2461
+ #
2462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/StepRunSummary AWS API Documentation
2463
+ #
2464
+ class StepRunSummary < Struct.new(
2465
+ :mainframe_action,
2466
+ :compare_action,
2467
+ :resource_action,
2468
+ :unknown)
2469
+ SENSITIVE = []
2470
+ include Aws::Structure
2471
+ include Aws::Structure::Union
2472
+
2473
+ class MainframeAction < StepRunSummary; end
2474
+ class CompareAction < StepRunSummary; end
2475
+ class ResourceAction < StepRunSummary; end
2476
+ class Unknown < StepRunSummary; end
2477
+ end
2478
+
2479
+ # Specifies the TN3270 protocol.
2480
+ #
2481
+ # @!attribute [rw] script
2482
+ # The script of the TN3270 protocol.
2483
+ # @return [Types::Script]
2484
+ #
2485
+ # @!attribute [rw] export_data_set_names
2486
+ # The data set names of the TN3270 protocol.
2487
+ # @return [Array<String>]
2488
+ #
2489
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TN3270 AWS API Documentation
2490
+ #
2491
+ class TN3270 < Struct.new(
2492
+ :script,
2493
+ :export_data_set_names)
2494
+ SENSITIVE = []
2495
+ include Aws::Structure
2496
+ end
2497
+
2498
+ # Specifies a TN3270 step input.
2499
+ #
2500
+ # @!attribute [rw] resource
2501
+ # The resource of the TN3270 step input.
2502
+ # @return [Types::MainframeResourceSummary]
2503
+ #
2504
+ # @!attribute [rw] script
2505
+ # The script of the TN3270 step input.
2506
+ # @return [Types::ScriptSummary]
2507
+ #
2508
+ # @!attribute [rw] export_data_set_names
2509
+ # The export data set names of the TN3270 step input.
2510
+ # @return [Array<String>]
2511
+ #
2512
+ # @!attribute [rw] properties
2513
+ # The properties of the TN3270 step input.
2514
+ # @return [Types::MainframeActionProperties]
2515
+ #
2516
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TN3270StepInput AWS API Documentation
2517
+ #
2518
+ class TN3270StepInput < Struct.new(
2519
+ :resource,
2520
+ :script,
2521
+ :export_data_set_names,
2522
+ :properties)
2523
+ SENSITIVE = []
2524
+ include Aws::Structure
2525
+ end
2526
+
2527
+ # Specifies a TN3270 step output.
2528
+ #
2529
+ # @!attribute [rw] data_set_export_location
2530
+ # The data set export location of the TN3270 step output.
2531
+ # @return [String]
2532
+ #
2533
+ # @!attribute [rw] dms_output_location
2534
+ # The output location of the TN3270 step output.
2535
+ # @return [String]
2536
+ #
2537
+ # @!attribute [rw] data_set_details
2538
+ # The data set details of the TN3270 step output.
2539
+ # @return [Array<Types::DataSet>]
2540
+ #
2541
+ # @!attribute [rw] script_output_location
2542
+ # The script output location of the TN3270 step output.
2543
+ # @return [String]
2544
+ #
2545
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TN3270StepOutput AWS API Documentation
2546
+ #
2547
+ class TN3270StepOutput < Struct.new(
2548
+ :data_set_export_location,
2549
+ :dms_output_location,
2550
+ :data_set_details,
2551
+ :script_output_location)
2552
+ SENSITIVE = []
2553
+ include Aws::Structure
2554
+ end
2555
+
2556
+ # Specifies a TN3270 summary.
2557
+ #
2558
+ # @!attribute [rw] step_input
2559
+ # The step input of the TN3270 summary.
2560
+ # @return [Types::TN3270StepInput]
2561
+ #
2562
+ # @!attribute [rw] step_output
2563
+ # The step output of the TN3270 summary.
2564
+ # @return [Types::TN3270StepOutput]
2565
+ #
2566
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TN3270Summary AWS API Documentation
2567
+ #
2568
+ class TN3270Summary < Struct.new(
2569
+ :step_input,
2570
+ :step_output)
2571
+ SENSITIVE = []
2572
+ include Aws::Structure
2573
+ end
2574
+
2575
+ # @!attribute [rw] resource_arn
2576
+ # The Amazon Resource Name (ARN) of the tag resource.
2577
+ # @return [String]
2578
+ #
2579
+ # @!attribute [rw] tags
2580
+ # The tags of the resource.
2581
+ # @return [Hash<String,String>]
2582
+ #
2583
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TagResourceRequest AWS API Documentation
2584
+ #
2585
+ class TagResourceRequest < Struct.new(
2586
+ :resource_arn,
2587
+ :tags)
2588
+ SENSITIVE = []
2589
+ include Aws::Structure
2590
+ end
2591
+
2592
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TagResourceResponse AWS API Documentation
2593
+ #
2594
+ class TagResourceResponse < Aws::EmptyStructure; end
2595
+
2596
+ # Specifies a target database metadata.
2597
+ #
2598
+ # @!attribute [rw] type
2599
+ # The type of the target database metadata.
2600
+ # @return [String]
2601
+ #
2602
+ # @!attribute [rw] capture_tool
2603
+ # The capture tool of the target database metadata.
2604
+ # @return [String]
2605
+ #
2606
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TargetDatabaseMetadata AWS API Documentation
2607
+ #
2608
+ class TargetDatabaseMetadata < Struct.new(
2609
+ :type,
2610
+ :capture_tool)
2611
+ SENSITIVE = []
2612
+ include Aws::Structure
2613
+ end
2614
+
2615
+ # Specifies the latest version of a test case.
2616
+ #
2617
+ # @!attribute [rw] version
2618
+ # The version of the test case latest version.
2619
+ # @return [Integer]
2620
+ #
2621
+ # @!attribute [rw] status
2622
+ # The status of the test case latest version.
2623
+ # @return [String]
2624
+ #
2625
+ # @!attribute [rw] status_reason
2626
+ # The status reason of the test case latest version.
2627
+ # @return [String]
2628
+ #
2629
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TestCaseLatestVersion AWS API Documentation
2630
+ #
2631
+ class TestCaseLatestVersion < Struct.new(
2632
+ :version,
2633
+ :status,
2634
+ :status_reason)
2635
+ SENSITIVE = []
2636
+ include Aws::Structure
2637
+ end
2638
+
2639
+ # Specifies the test case run summary.
2640
+ #
2641
+ # @!attribute [rw] test_case_id
2642
+ # The test case id of the test case run summary.
2643
+ # @return [String]
2644
+ #
2645
+ # @!attribute [rw] test_case_version
2646
+ # The test case version of the test case run summary.
2647
+ # @return [Integer]
2648
+ #
2649
+ # @!attribute [rw] test_run_id
2650
+ # The test run id of the test case run summary.
2651
+ # @return [String]
2652
+ #
2653
+ # @!attribute [rw] status
2654
+ # The status of the test case run summary.
2655
+ # @return [String]
2656
+ #
2657
+ # @!attribute [rw] status_reason
2658
+ # The status reason of the test case run summary.
2659
+ # @return [String]
2660
+ #
2661
+ # @!attribute [rw] run_start_time
2662
+ # The run start time of the test case run summary.
2663
+ # @return [Time]
2664
+ #
2665
+ # @!attribute [rw] run_end_time
2666
+ # The run end time of the test case run summary.
2667
+ # @return [Time]
2668
+ #
2669
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TestCaseRunSummary AWS API Documentation
2670
+ #
2671
+ class TestCaseRunSummary < Struct.new(
2672
+ :test_case_id,
2673
+ :test_case_version,
2674
+ :test_run_id,
2675
+ :status,
2676
+ :status_reason,
2677
+ :run_start_time,
2678
+ :run_end_time)
2679
+ SENSITIVE = []
2680
+ include Aws::Structure
2681
+ end
2682
+
2683
+ # Specifies a test case summary.
2684
+ #
2685
+ # @!attribute [rw] test_case_id
2686
+ # The test case ID of the test case summary.
2687
+ # @return [String]
2688
+ #
2689
+ # @!attribute [rw] test_case_arn
2690
+ # The test case Amazon Resource Name (ARN) of the test case summary.
2691
+ # @return [String]
2692
+ #
2693
+ # @!attribute [rw] name
2694
+ # The name of the test case summary.
2695
+ # @return [String]
2696
+ #
2697
+ # @!attribute [rw] status_reason
2698
+ # The status reason of the test case summary.
2699
+ # @return [String]
2700
+ #
2701
+ # @!attribute [rw] latest_version
2702
+ # The latest version of the test case summary.
2703
+ # @return [Integer]
2704
+ #
2705
+ # @!attribute [rw] status
2706
+ # The status of the test case summary.
2707
+ # @return [String]
2708
+ #
2709
+ # @!attribute [rw] creation_time
2710
+ # The creation time of the test case summary.
2711
+ # @return [Time]
2712
+ #
2713
+ # @!attribute [rw] last_update_time
2714
+ # The last update time of the test case summary.
2715
+ # @return [Time]
2716
+ #
2717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TestCaseSummary AWS API Documentation
2718
+ #
2719
+ class TestCaseSummary < Struct.new(
2720
+ :test_case_id,
2721
+ :test_case_arn,
2722
+ :name,
2723
+ :status_reason,
2724
+ :latest_version,
2725
+ :status,
2726
+ :creation_time,
2727
+ :last_update_time)
2728
+ SENSITIVE = []
2729
+ include Aws::Structure
2730
+ end
2731
+
2732
+ # Specifies test cases.
2733
+ #
2734
+ # @note TestCases is a union - when making an API calls you must set exactly one of the members.
2735
+ #
2736
+ # @note TestCases is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TestCases corresponding to the set member.
2737
+ #
2738
+ # @!attribute [rw] sequential
2739
+ # The sequential of the test case.
2740
+ # @return [Array<String>]
2741
+ #
2742
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TestCases AWS API Documentation
2743
+ #
2744
+ class TestCases < Struct.new(
2745
+ :sequential,
2746
+ :unknown)
2747
+ SENSITIVE = []
2748
+ include Aws::Structure
2749
+ include Aws::Structure::Union
2750
+
2751
+ class Sequential < TestCases; end
2752
+ class Unknown < TestCases; end
2753
+ end
2754
+
2755
+ # Specifies the latest version of the test configuration.
2756
+ #
2757
+ # @!attribute [rw] version
2758
+ # The version of the test configuration latest version.
2759
+ # @return [Integer]
2760
+ #
2761
+ # @!attribute [rw] status
2762
+ # The status of the test configuration latest version.
2763
+ # @return [String]
2764
+ #
2765
+ # @!attribute [rw] status_reason
2766
+ # The status reason of the test configuration latest version.
2767
+ # @return [String]
2768
+ #
2769
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TestConfigurationLatestVersion AWS API Documentation
2770
+ #
2771
+ class TestConfigurationLatestVersion < Struct.new(
2772
+ :version,
2773
+ :status,
2774
+ :status_reason)
2775
+ SENSITIVE = []
2776
+ include Aws::Structure
2777
+ end
2778
+
2779
+ # Specifies a test configuration summary.
2780
+ #
2781
+ # @!attribute [rw] test_configuration_id
2782
+ # The test configuration ID of the test configuration summary.
2783
+ # @return [String]
2784
+ #
2785
+ # @!attribute [rw] name
2786
+ # The name of the test configuration summary.
2787
+ # @return [String]
2788
+ #
2789
+ # @!attribute [rw] status_reason
2790
+ # The status reason of the test configuration summary.
2791
+ # @return [String]
2792
+ #
2793
+ # @!attribute [rw] latest_version
2794
+ # The latest version of the test configuration summary.
2795
+ # @return [Integer]
2796
+ #
2797
+ # @!attribute [rw] test_configuration_arn
2798
+ # The test configuration ARN of the test configuration summary.
2799
+ # @return [String]
2800
+ #
2801
+ # @!attribute [rw] status
2802
+ # The status of the test configuration summary.
2803
+ # @return [String]
2804
+ #
2805
+ # @!attribute [rw] creation_time
2806
+ # The creation time of the test configuration summary.
2807
+ # @return [Time]
2808
+ #
2809
+ # @!attribute [rw] last_update_time
2810
+ # The last update time of the test configuration summary.
2811
+ # @return [Time]
2812
+ #
2813
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TestConfigurationSummary AWS API Documentation
2814
+ #
2815
+ class TestConfigurationSummary < Struct.new(
2816
+ :test_configuration_id,
2817
+ :name,
2818
+ :status_reason,
2819
+ :latest_version,
2820
+ :test_configuration_arn,
2821
+ :status,
2822
+ :creation_time,
2823
+ :last_update_time)
2824
+ SENSITIVE = []
2825
+ include Aws::Structure
2826
+ end
2827
+
2828
+ # Specifies a test run step summary.
2829
+ #
2830
+ # @!attribute [rw] step_name
2831
+ # The step name of the test run step summary.
2832
+ # @return [String]
2833
+ #
2834
+ # @!attribute [rw] test_run_id
2835
+ # The test run ID of the test run step summary.
2836
+ # @return [String]
2837
+ #
2838
+ # @!attribute [rw] test_case_id
2839
+ # The test case ID of the test run step summary.
2840
+ # @return [String]
2841
+ #
2842
+ # @!attribute [rw] test_case_version
2843
+ # The test case version of the test run step summary.
2844
+ # @return [Integer]
2845
+ #
2846
+ # @!attribute [rw] test_suite_id
2847
+ # The test suite ID of the test run step summary.
2848
+ # @return [String]
2849
+ #
2850
+ # @!attribute [rw] test_suite_version
2851
+ # The test suite version of the test run step summary.
2852
+ # @return [Integer]
2853
+ #
2854
+ # @!attribute [rw] before_step
2855
+ # The before step of the test run step summary.
2856
+ # @return [Boolean]
2857
+ #
2858
+ # @!attribute [rw] after_step
2859
+ # The after step of the test run step summary.
2860
+ # @return [Boolean]
2861
+ #
2862
+ # @!attribute [rw] status
2863
+ # The status of the test run step summary.
2864
+ # @return [String]
2865
+ #
2866
+ # @!attribute [rw] status_reason
2867
+ # The status reason of the test run step summary.
2868
+ # @return [String]
2869
+ #
2870
+ # @!attribute [rw] run_start_time
2871
+ # The run start time of the test run step summary.
2872
+ # @return [Time]
2873
+ #
2874
+ # @!attribute [rw] run_end_time
2875
+ # The run end time of the test run step summary.
2876
+ # @return [Time]
2877
+ #
2878
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TestRunStepSummary AWS API Documentation
2879
+ #
2880
+ class TestRunStepSummary < Struct.new(
2881
+ :step_name,
2882
+ :test_run_id,
2883
+ :test_case_id,
2884
+ :test_case_version,
2885
+ :test_suite_id,
2886
+ :test_suite_version,
2887
+ :before_step,
2888
+ :after_step,
2889
+ :status,
2890
+ :status_reason,
2891
+ :run_start_time,
2892
+ :run_end_time)
2893
+ SENSITIVE = []
2894
+ include Aws::Structure
2895
+ end
2896
+
2897
+ # Specifies a test run summary.
2898
+ #
2899
+ # @!attribute [rw] test_run_id
2900
+ # The test run ID of the test run summary.
2901
+ # @return [String]
2902
+ #
2903
+ # @!attribute [rw] test_run_arn
2904
+ # The test run ARN of the test run summary.
2905
+ # @return [String]
2906
+ #
2907
+ # @!attribute [rw] test_suite_id
2908
+ # The test suite ID of the test run summary.
2909
+ # @return [String]
2910
+ #
2911
+ # @!attribute [rw] test_suite_version
2912
+ # The test suite version of the test run summary.
2913
+ # @return [Integer]
2914
+ #
2915
+ # @!attribute [rw] test_configuration_id
2916
+ # The test configuration ID of the test run summary.
2917
+ # @return [String]
2918
+ #
2919
+ # @!attribute [rw] test_configuration_version
2920
+ # The test configuration version of the test run summary.
2921
+ # @return [Integer]
2922
+ #
2923
+ # @!attribute [rw] status
2924
+ # The status of the test run summary.
2925
+ # @return [String]
2926
+ #
2927
+ # @!attribute [rw] status_reason
2928
+ # The status reason of the test run summary.
2929
+ # @return [String]
2930
+ #
2931
+ # @!attribute [rw] run_start_time
2932
+ # The run start time of the test run summary.
2933
+ # @return [Time]
2934
+ #
2935
+ # @!attribute [rw] run_end_time
2936
+ # The run end time of the test run summary.
2937
+ # @return [Time]
2938
+ #
2939
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TestRunSummary AWS API Documentation
2940
+ #
2941
+ class TestRunSummary < Struct.new(
2942
+ :test_run_id,
2943
+ :test_run_arn,
2944
+ :test_suite_id,
2945
+ :test_suite_version,
2946
+ :test_configuration_id,
2947
+ :test_configuration_version,
2948
+ :status,
2949
+ :status_reason,
2950
+ :run_start_time,
2951
+ :run_end_time)
2952
+ SENSITIVE = []
2953
+ include Aws::Structure
2954
+ end
2955
+
2956
+ # Specifies the latest version of a test suite.
2957
+ #
2958
+ # @!attribute [rw] version
2959
+ # The version of the test suite latest version.
2960
+ # @return [Integer]
2961
+ #
2962
+ # @!attribute [rw] status
2963
+ # The status of the test suite latest version.
2964
+ # @return [String]
2965
+ #
2966
+ # @!attribute [rw] status_reason
2967
+ # The status reason of the test suite latest version.
2968
+ # @return [String]
2969
+ #
2970
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TestSuiteLatestVersion AWS API Documentation
2971
+ #
2972
+ class TestSuiteLatestVersion < Struct.new(
2973
+ :version,
2974
+ :status,
2975
+ :status_reason)
2976
+ SENSITIVE = []
2977
+ include Aws::Structure
2978
+ end
2979
+
2980
+ # Specifies the test suite summary.
2981
+ #
2982
+ # @!attribute [rw] test_suite_id
2983
+ # The test suite ID of the test suite summary.
2984
+ # @return [String]
2985
+ #
2986
+ # @!attribute [rw] name
2987
+ # The name of the test suite summary.
2988
+ # @return [String]
2989
+ #
2990
+ # @!attribute [rw] status_reason
2991
+ # The status reason of the test suite summary.
2992
+ # @return [String]
2993
+ #
2994
+ # @!attribute [rw] latest_version
2995
+ # The latest version of the test suite summary.
2996
+ # @return [Integer]
2997
+ #
2998
+ # @!attribute [rw] test_suite_arn
2999
+ # The test suite Amazon Resource Name (ARN) of the test suite summary.
3000
+ # @return [String]
3001
+ #
3002
+ # @!attribute [rw] status
3003
+ # The status of the test suite summary.
3004
+ # @return [String]
3005
+ #
3006
+ # @!attribute [rw] creation_time
3007
+ # The creation time of the test suite summary.
3008
+ # @return [Time]
3009
+ #
3010
+ # @!attribute [rw] last_update_time
3011
+ # The last update time of the test suite summary.
3012
+ # @return [Time]
3013
+ #
3014
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/TestSuiteSummary AWS API Documentation
3015
+ #
3016
+ class TestSuiteSummary < Struct.new(
3017
+ :test_suite_id,
3018
+ :name,
3019
+ :status_reason,
3020
+ :latest_version,
3021
+ :test_suite_arn,
3022
+ :status,
3023
+ :creation_time,
3024
+ :last_update_time)
3025
+ SENSITIVE = []
3026
+ include Aws::Structure
3027
+ end
3028
+
3029
+ # The number of requests made exceeds the limit.
3030
+ #
3031
+ # @!attribute [rw] message
3032
+ # @return [String]
3033
+ #
3034
+ # @!attribute [rw] service_code
3035
+ # The service code of requests that exceed the limit.
3036
+ # @return [String]
3037
+ #
3038
+ # @!attribute [rw] quota_code
3039
+ # The quota code of requests that exceed the limit.
3040
+ # @return [String]
3041
+ #
3042
+ # @!attribute [rw] retry_after_seconds
3043
+ # The number of seconds to retry after for requests that exceed the
3044
+ # limit.
3045
+ # @return [Integer]
3046
+ #
3047
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ThrottlingException AWS API Documentation
3048
+ #
3049
+ class ThrottlingException < Struct.new(
3050
+ :message,
3051
+ :service_code,
3052
+ :quota_code,
3053
+ :retry_after_seconds)
3054
+ SENSITIVE = []
3055
+ include Aws::Structure
3056
+ end
3057
+
3058
+ # @!attribute [rw] resource_arn
3059
+ # The Amazon Resource Name (ARN) of the resource.
3060
+ # @return [String]
3061
+ #
3062
+ # @!attribute [rw] tag_keys
3063
+ # The tag keys of the resource.
3064
+ # @return [Array<String>]
3065
+ #
3066
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/UntagResourceRequest AWS API Documentation
3067
+ #
3068
+ class UntagResourceRequest < Struct.new(
3069
+ :resource_arn,
3070
+ :tag_keys)
3071
+ SENSITIVE = []
3072
+ include Aws::Structure
3073
+ end
3074
+
3075
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/UntagResourceResponse AWS API Documentation
3076
+ #
3077
+ class UntagResourceResponse < Aws::EmptyStructure; end
3078
+
3079
+ # @!attribute [rw] test_case_id
3080
+ # The test case ID of the test case.
3081
+ # @return [String]
3082
+ #
3083
+ # @!attribute [rw] description
3084
+ # The description of the test case.
3085
+ # @return [String]
3086
+ #
3087
+ # @!attribute [rw] steps
3088
+ # The steps of the test case.
3089
+ # @return [Array<Types::Step>]
3090
+ #
3091
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/UpdateTestCaseRequest AWS API Documentation
3092
+ #
3093
+ class UpdateTestCaseRequest < Struct.new(
3094
+ :test_case_id,
3095
+ :description,
3096
+ :steps)
3097
+ SENSITIVE = []
3098
+ include Aws::Structure
3099
+ end
3100
+
3101
+ # @!attribute [rw] test_case_id
3102
+ # The test case ID of the test case.
3103
+ # @return [String]
3104
+ #
3105
+ # @!attribute [rw] test_case_version
3106
+ # The test case version of the test case.
3107
+ # @return [Integer]
3108
+ #
3109
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/UpdateTestCaseResponse AWS API Documentation
3110
+ #
3111
+ class UpdateTestCaseResponse < Struct.new(
3112
+ :test_case_id,
3113
+ :test_case_version)
3114
+ SENSITIVE = []
3115
+ include Aws::Structure
3116
+ end
3117
+
3118
+ # @!attribute [rw] test_configuration_id
3119
+ # The test configuration ID of the test configuration.
3120
+ # @return [String]
3121
+ #
3122
+ # @!attribute [rw] description
3123
+ # The description of the test configuration.
3124
+ # @return [String]
3125
+ #
3126
+ # @!attribute [rw] resources
3127
+ # The resources of the test configuration.
3128
+ # @return [Array<Types::Resource>]
3129
+ #
3130
+ # @!attribute [rw] properties
3131
+ # The properties of the test configuration.
3132
+ # @return [Hash<String,String>]
3133
+ #
3134
+ # @!attribute [rw] service_settings
3135
+ # The service settings of the test configuration.
3136
+ # @return [Types::ServiceSettings]
3137
+ #
3138
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/UpdateTestConfigurationRequest AWS API Documentation
3139
+ #
3140
+ class UpdateTestConfigurationRequest < Struct.new(
3141
+ :test_configuration_id,
3142
+ :description,
3143
+ :resources,
3144
+ :properties,
3145
+ :service_settings)
3146
+ SENSITIVE = []
3147
+ include Aws::Structure
3148
+ end
3149
+
3150
+ # @!attribute [rw] test_configuration_id
3151
+ # The configuration ID of the test configuration.
3152
+ # @return [String]
3153
+ #
3154
+ # @!attribute [rw] test_configuration_version
3155
+ # The configuration version of the test configuration.
3156
+ # @return [Integer]
3157
+ #
3158
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/UpdateTestConfigurationResponse AWS API Documentation
3159
+ #
3160
+ class UpdateTestConfigurationResponse < Struct.new(
3161
+ :test_configuration_id,
3162
+ :test_configuration_version)
3163
+ SENSITIVE = []
3164
+ include Aws::Structure
3165
+ end
3166
+
3167
+ # @!attribute [rw] test_suite_id
3168
+ # The test suite ID of the test suite.
3169
+ # @return [String]
3170
+ #
3171
+ # @!attribute [rw] description
3172
+ # The description of the test suite.
3173
+ # @return [String]
3174
+ #
3175
+ # @!attribute [rw] before_steps
3176
+ # The before steps for the test suite.
3177
+ # @return [Array<Types::Step>]
3178
+ #
3179
+ # @!attribute [rw] after_steps
3180
+ # The after steps of the test suite.
3181
+ # @return [Array<Types::Step>]
3182
+ #
3183
+ # @!attribute [rw] test_cases
3184
+ # The test cases in the test suite.
3185
+ # @return [Types::TestCases]
3186
+ #
3187
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/UpdateTestSuiteRequest AWS API Documentation
3188
+ #
3189
+ class UpdateTestSuiteRequest < Struct.new(
3190
+ :test_suite_id,
3191
+ :description,
3192
+ :before_steps,
3193
+ :after_steps,
3194
+ :test_cases)
3195
+ SENSITIVE = []
3196
+ include Aws::Structure
3197
+ end
3198
+
3199
+ # @!attribute [rw] test_suite_id
3200
+ # The test suite ID of the test suite.
3201
+ # @return [String]
3202
+ #
3203
+ # @!attribute [rw] test_suite_version
3204
+ # The test suite version of the test suite.
3205
+ # @return [Integer]
3206
+ #
3207
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/UpdateTestSuiteResponse AWS API Documentation
3208
+ #
3209
+ class UpdateTestSuiteResponse < Struct.new(
3210
+ :test_suite_id,
3211
+ :test_suite_version)
3212
+ SENSITIVE = []
3213
+ include Aws::Structure
3214
+ end
3215
+
3216
+ # One or more parameter provided in the request is not valid.
3217
+ #
3218
+ # @!attribute [rw] message
3219
+ # @return [String]
3220
+ #
3221
+ # @!attribute [rw] reason
3222
+ # The reason for the validation exception.
3223
+ # @return [String]
3224
+ #
3225
+ # @!attribute [rw] field_list
3226
+ # The field list of the validation exception.
3227
+ # @return [Array<Types::ValidationExceptionField>]
3228
+ #
3229
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ValidationException AWS API Documentation
3230
+ #
3231
+ class ValidationException < Struct.new(
3232
+ :message,
3233
+ :reason,
3234
+ :field_list)
3235
+ SENSITIVE = []
3236
+ include Aws::Structure
3237
+ end
3238
+
3239
+ # Specifies a validation exception field.
3240
+ #
3241
+ # @!attribute [rw] name
3242
+ # The name of the validation exception field.
3243
+ # @return [String]
3244
+ #
3245
+ # @!attribute [rw] message
3246
+ # The message stating reason for why service validation failed.
3247
+ # @return [String]
3248
+ #
3249
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apptest-2022-12-06/ValidationExceptionField AWS API Documentation
3250
+ #
3251
+ class ValidationExceptionField < Struct.new(
3252
+ :name,
3253
+ :message)
3254
+ SENSITIVE = []
3255
+ include Aws::Structure
3256
+ end
3257
+
3258
+ end
3259
+ end