aws-sdk-migrationhuborchestrator 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2757 @@
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::MigrationHubOrchestrator
11
+ module Types
12
+
13
+ # You do not have sufficient access to perform this action.
14
+ #
15
+ # @!attribute [rw] message
16
+ # @return [String]
17
+ #
18
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/AccessDeniedException AWS API Documentation
19
+ #
20
+ class AccessDeniedException < Struct.new(
21
+ :message)
22
+ SENSITIVE = []
23
+ include Aws::Structure
24
+ end
25
+
26
+ # @note When making an API call, you may pass CreateMigrationWorkflowRequest
27
+ # data as a hash:
28
+ #
29
+ # {
30
+ # name: "CreateMigrationWorkflowRequestNameString", # required
31
+ # description: "CreateMigrationWorkflowRequestDescriptionString",
32
+ # template_id: "CreateMigrationWorkflowRequestTemplateIdString", # required
33
+ # application_configuration_id: "CreateMigrationWorkflowRequestApplicationConfigurationIdString", # required
34
+ # input_parameters: { # required
35
+ # "StepInputParametersKey" => {
36
+ # integer_value: 1,
37
+ # string_value: "StringValue",
38
+ # list_of_strings_value: ["StringListMember"],
39
+ # map_of_string_value: {
40
+ # "StringMapKey" => "StringMapValue",
41
+ # },
42
+ # },
43
+ # },
44
+ # step_targets: ["StringListMember"],
45
+ # tags: {
46
+ # "StringMapKey" => "StringMapValue",
47
+ # },
48
+ # }
49
+ #
50
+ # @!attribute [rw] name
51
+ # The name of the migration workflow.
52
+ # @return [String]
53
+ #
54
+ # @!attribute [rw] description
55
+ # The description of the migration workflow.
56
+ # @return [String]
57
+ #
58
+ # @!attribute [rw] template_id
59
+ # The ID of the template.
60
+ # @return [String]
61
+ #
62
+ # @!attribute [rw] application_configuration_id
63
+ # The configuration ID of the application configured in Application
64
+ # Discovery Service.
65
+ # @return [String]
66
+ #
67
+ # @!attribute [rw] input_parameters
68
+ # The input parameters required to create a migration workflow.
69
+ # @return [Hash<String,Types::StepInput>]
70
+ #
71
+ # @!attribute [rw] step_targets
72
+ # The servers on which a step will be run.
73
+ # @return [Array<String>]
74
+ #
75
+ # @!attribute [rw] tags
76
+ # The tags to add on a migration workflow.
77
+ # @return [Hash<String,String>]
78
+ #
79
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/CreateMigrationWorkflowRequest AWS API Documentation
80
+ #
81
+ class CreateMigrationWorkflowRequest < Struct.new(
82
+ :name,
83
+ :description,
84
+ :template_id,
85
+ :application_configuration_id,
86
+ :input_parameters,
87
+ :step_targets,
88
+ :tags)
89
+ SENSITIVE = [:input_parameters]
90
+ include Aws::Structure
91
+ end
92
+
93
+ # @!attribute [rw] id
94
+ # The ID of the migration workflow.
95
+ # @return [String]
96
+ #
97
+ # @!attribute [rw] arn
98
+ # The Amazon Resource Name (ARN) of the migration workflow.
99
+ # @return [String]
100
+ #
101
+ # @!attribute [rw] name
102
+ # The name of the migration workflow.
103
+ # @return [String]
104
+ #
105
+ # @!attribute [rw] description
106
+ # The description of the migration workflow.
107
+ # @return [String]
108
+ #
109
+ # @!attribute [rw] template_id
110
+ # The ID of the template.
111
+ # @return [String]
112
+ #
113
+ # @!attribute [rw] ads_application_configuration_id
114
+ # The configuration ID of the application configured in Application
115
+ # Discovery Service.
116
+ # @return [String]
117
+ #
118
+ # @!attribute [rw] workflow_inputs
119
+ # The inputs for creating a migration workflow.
120
+ # @return [Hash<String,Types::StepInput>]
121
+ #
122
+ # @!attribute [rw] step_targets
123
+ # The servers on which a step will be run.
124
+ # @return [Array<String>]
125
+ #
126
+ # @!attribute [rw] status
127
+ # The status of the migration workflow.
128
+ # @return [String]
129
+ #
130
+ # @!attribute [rw] creation_time
131
+ # The time at which the migration workflow was created.
132
+ # @return [Time]
133
+ #
134
+ # @!attribute [rw] tags
135
+ # The tags to add on a migration workflow.
136
+ # @return [Hash<String,String>]
137
+ #
138
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/CreateMigrationWorkflowResponse AWS API Documentation
139
+ #
140
+ class CreateMigrationWorkflowResponse < Struct.new(
141
+ :id,
142
+ :arn,
143
+ :name,
144
+ :description,
145
+ :template_id,
146
+ :ads_application_configuration_id,
147
+ :workflow_inputs,
148
+ :step_targets,
149
+ :status,
150
+ :creation_time,
151
+ :tags)
152
+ SENSITIVE = [:workflow_inputs]
153
+ include Aws::Structure
154
+ end
155
+
156
+ # @note When making an API call, you may pass CreateWorkflowStepGroupRequest
157
+ # data as a hash:
158
+ #
159
+ # {
160
+ # workflow_id: "MigrationWorkflowId", # required
161
+ # name: "StepGroupName", # required
162
+ # description: "StepGroupDescription",
163
+ # next: ["StringListMember"],
164
+ # previous: ["StringListMember"],
165
+ # }
166
+ #
167
+ # @!attribute [rw] workflow_id
168
+ # The ID of the migration workflow that will contain the step group.
169
+ # @return [String]
170
+ #
171
+ # @!attribute [rw] name
172
+ # The name of the step group.
173
+ # @return [String]
174
+ #
175
+ # @!attribute [rw] description
176
+ # The description of the step group.
177
+ # @return [String]
178
+ #
179
+ # @!attribute [rw] next
180
+ # The next step group.
181
+ # @return [Array<String>]
182
+ #
183
+ # @!attribute [rw] previous
184
+ # The previous step group.
185
+ # @return [Array<String>]
186
+ #
187
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/CreateWorkflowStepGroupRequest AWS API Documentation
188
+ #
189
+ class CreateWorkflowStepGroupRequest < Struct.new(
190
+ :workflow_id,
191
+ :name,
192
+ :description,
193
+ :next,
194
+ :previous)
195
+ SENSITIVE = []
196
+ include Aws::Structure
197
+ end
198
+
199
+ # @!attribute [rw] workflow_id
200
+ # The ID of the migration workflow that contains the step group.
201
+ # @return [String]
202
+ #
203
+ # @!attribute [rw] name
204
+ # The name of the step group.
205
+ # @return [String]
206
+ #
207
+ # @!attribute [rw] id
208
+ # The ID of the step group.
209
+ # @return [String]
210
+ #
211
+ # @!attribute [rw] description
212
+ # The description of the step group.
213
+ # @return [String]
214
+ #
215
+ # @!attribute [rw] tools
216
+ # List of AWS services utilized in a migration workflow.
217
+ # @return [Array<Types::Tool>]
218
+ #
219
+ # @!attribute [rw] next
220
+ # The next step group.
221
+ # @return [Array<String>]
222
+ #
223
+ # @!attribute [rw] previous
224
+ # The previous step group.
225
+ # @return [Array<String>]
226
+ #
227
+ # @!attribute [rw] creation_time
228
+ # The time at which the step group is created.
229
+ # @return [Time]
230
+ #
231
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/CreateWorkflowStepGroupResponse AWS API Documentation
232
+ #
233
+ class CreateWorkflowStepGroupResponse < Struct.new(
234
+ :workflow_id,
235
+ :name,
236
+ :id,
237
+ :description,
238
+ :tools,
239
+ :next,
240
+ :previous,
241
+ :creation_time)
242
+ SENSITIVE = []
243
+ include Aws::Structure
244
+ end
245
+
246
+ # @note When making an API call, you may pass CreateWorkflowStepRequest
247
+ # data as a hash:
248
+ #
249
+ # {
250
+ # name: "MigrationWorkflowName", # required
251
+ # step_group_id: "StepGroupId", # required
252
+ # workflow_id: "MigrationWorkflowId", # required
253
+ # step_action_type: "MANUAL", # required, accepts MANUAL, AUTOMATED
254
+ # description: "MigrationWorkflowDescription",
255
+ # workflow_step_automation_configuration: {
256
+ # script_location_s3_bucket: "S3Bucket",
257
+ # script_location_s3_key: {
258
+ # linux: "S3Key",
259
+ # windows: "S3Key",
260
+ # },
261
+ # command: {
262
+ # linux: "String",
263
+ # windows: "String",
264
+ # },
265
+ # run_environment: "AWS", # accepts AWS, ONPREMISE
266
+ # target_type: "SINGLE", # accepts SINGLE, ALL, NONE
267
+ # },
268
+ # step_target: ["StringListMember"],
269
+ # outputs: [
270
+ # {
271
+ # name: "WorkflowStepOutputName",
272
+ # data_type: "STRING", # accepts STRING, INTEGER, STRINGLIST, STRINGMAP
273
+ # required: false,
274
+ # value: {
275
+ # integer_value: 1,
276
+ # string_value: "StringValue",
277
+ # list_of_string_value: ["StringListMember"],
278
+ # },
279
+ # },
280
+ # ],
281
+ # previous: ["StringListMember"],
282
+ # next: ["StringListMember"],
283
+ # }
284
+ #
285
+ # @!attribute [rw] name
286
+ # The name of the step.
287
+ # @return [String]
288
+ #
289
+ # @!attribute [rw] step_group_id
290
+ # The ID of the step group.
291
+ # @return [String]
292
+ #
293
+ # @!attribute [rw] workflow_id
294
+ # The ID of the migration workflow.
295
+ # @return [String]
296
+ #
297
+ # @!attribute [rw] step_action_type
298
+ # The action type of the step. You must run and update the status of a
299
+ # manual step for the workflow to continue after the completion of the
300
+ # step.
301
+ # @return [String]
302
+ #
303
+ # @!attribute [rw] description
304
+ # The description of the step.
305
+ # @return [String]
306
+ #
307
+ # @!attribute [rw] workflow_step_automation_configuration
308
+ # The custom script to run tests on source or target environments.
309
+ # @return [Types::WorkflowStepAutomationConfiguration]
310
+ #
311
+ # @!attribute [rw] step_target
312
+ # The servers on which a step will be run.
313
+ # @return [Array<String>]
314
+ #
315
+ # @!attribute [rw] outputs
316
+ # The key value pairs added for the expected output.
317
+ # @return [Array<Types::WorkflowStepOutput>]
318
+ #
319
+ # @!attribute [rw] previous
320
+ # The previous step.
321
+ # @return [Array<String>]
322
+ #
323
+ # @!attribute [rw] next
324
+ # The next step.
325
+ # @return [Array<String>]
326
+ #
327
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/CreateWorkflowStepRequest AWS API Documentation
328
+ #
329
+ class CreateWorkflowStepRequest < Struct.new(
330
+ :name,
331
+ :step_group_id,
332
+ :workflow_id,
333
+ :step_action_type,
334
+ :description,
335
+ :workflow_step_automation_configuration,
336
+ :step_target,
337
+ :outputs,
338
+ :previous,
339
+ :next)
340
+ SENSITIVE = []
341
+ include Aws::Structure
342
+ end
343
+
344
+ # @!attribute [rw] id
345
+ # The ID of the step.
346
+ # @return [String]
347
+ #
348
+ # @!attribute [rw] step_group_id
349
+ # The ID of the step group.
350
+ # @return [String]
351
+ #
352
+ # @!attribute [rw] workflow_id
353
+ # The ID of the migration workflow.
354
+ # @return [String]
355
+ #
356
+ # @!attribute [rw] name
357
+ # The name of the step.
358
+ # @return [String]
359
+ #
360
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/CreateWorkflowStepResponse AWS API Documentation
361
+ #
362
+ class CreateWorkflowStepResponse < Struct.new(
363
+ :id,
364
+ :step_group_id,
365
+ :workflow_id,
366
+ :name)
367
+ SENSITIVE = []
368
+ include Aws::Structure
369
+ end
370
+
371
+ # @note When making an API call, you may pass DeleteMigrationWorkflowRequest
372
+ # data as a hash:
373
+ #
374
+ # {
375
+ # id: "MigrationWorkflowId", # required
376
+ # }
377
+ #
378
+ # @!attribute [rw] id
379
+ # The ID of the migration workflow you want to delete.
380
+ # @return [String]
381
+ #
382
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/DeleteMigrationWorkflowRequest AWS API Documentation
383
+ #
384
+ class DeleteMigrationWorkflowRequest < Struct.new(
385
+ :id)
386
+ SENSITIVE = []
387
+ include Aws::Structure
388
+ end
389
+
390
+ # @!attribute [rw] id
391
+ # The ID of the migration workflow.
392
+ # @return [String]
393
+ #
394
+ # @!attribute [rw] arn
395
+ # The Amazon Resource Name (ARN) of the migration workflow.
396
+ # @return [String]
397
+ #
398
+ # @!attribute [rw] status
399
+ # The status of the migration workflow.
400
+ # @return [String]
401
+ #
402
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/DeleteMigrationWorkflowResponse AWS API Documentation
403
+ #
404
+ class DeleteMigrationWorkflowResponse < Struct.new(
405
+ :id,
406
+ :arn,
407
+ :status)
408
+ SENSITIVE = []
409
+ include Aws::Structure
410
+ end
411
+
412
+ # @note When making an API call, you may pass DeleteWorkflowStepGroupRequest
413
+ # data as a hash:
414
+ #
415
+ # {
416
+ # workflow_id: "MigrationWorkflowId", # required
417
+ # id: "StepGroupId", # required
418
+ # }
419
+ #
420
+ # @!attribute [rw] workflow_id
421
+ # The ID of the migration workflow.
422
+ # @return [String]
423
+ #
424
+ # @!attribute [rw] id
425
+ # The ID of the step group you want to delete.
426
+ # @return [String]
427
+ #
428
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/DeleteWorkflowStepGroupRequest AWS API Documentation
429
+ #
430
+ class DeleteWorkflowStepGroupRequest < Struct.new(
431
+ :workflow_id,
432
+ :id)
433
+ SENSITIVE = []
434
+ include Aws::Structure
435
+ end
436
+
437
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/DeleteWorkflowStepGroupResponse AWS API Documentation
438
+ #
439
+ class DeleteWorkflowStepGroupResponse < Aws::EmptyStructure; end
440
+
441
+ # @note When making an API call, you may pass DeleteWorkflowStepRequest
442
+ # data as a hash:
443
+ #
444
+ # {
445
+ # id: "StepId", # required
446
+ # step_group_id: "StepGroupId", # required
447
+ # workflow_id: "MigrationWorkflowId", # required
448
+ # }
449
+ #
450
+ # @!attribute [rw] id
451
+ # The ID of the step you want to delete.
452
+ # @return [String]
453
+ #
454
+ # @!attribute [rw] step_group_id
455
+ # The ID of the step group that contains the step you want to delete.
456
+ # @return [String]
457
+ #
458
+ # @!attribute [rw] workflow_id
459
+ # The ID of the migration workflow.
460
+ # @return [String]
461
+ #
462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/DeleteWorkflowStepRequest AWS API Documentation
463
+ #
464
+ class DeleteWorkflowStepRequest < Struct.new(
465
+ :id,
466
+ :step_group_id,
467
+ :workflow_id)
468
+ SENSITIVE = []
469
+ include Aws::Structure
470
+ end
471
+
472
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/DeleteWorkflowStepResponse AWS API Documentation
473
+ #
474
+ class DeleteWorkflowStepResponse < Aws::EmptyStructure; end
475
+
476
+ # @note When making an API call, you may pass GetMigrationWorkflowRequest
477
+ # data as a hash:
478
+ #
479
+ # {
480
+ # id: "MigrationWorkflowId", # required
481
+ # }
482
+ #
483
+ # @!attribute [rw] id
484
+ # The ID of the migration workflow.
485
+ # @return [String]
486
+ #
487
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetMigrationWorkflowRequest AWS API Documentation
488
+ #
489
+ class GetMigrationWorkflowRequest < Struct.new(
490
+ :id)
491
+ SENSITIVE = []
492
+ include Aws::Structure
493
+ end
494
+
495
+ # @!attribute [rw] id
496
+ # The ID of the migration workflow.
497
+ # @return [String]
498
+ #
499
+ # @!attribute [rw] arn
500
+ # The Amazon Resource Name (ARN) of the migration workflow.
501
+ # @return [String]
502
+ #
503
+ # @!attribute [rw] name
504
+ # The name of the migration workflow.
505
+ # @return [String]
506
+ #
507
+ # @!attribute [rw] description
508
+ # The description of the migration workflow.
509
+ # @return [String]
510
+ #
511
+ # @!attribute [rw] template_id
512
+ # The ID of the template.
513
+ # @return [String]
514
+ #
515
+ # @!attribute [rw] ads_application_configuration_id
516
+ # The configuration ID of the application configured in Application
517
+ # Discovery Service.
518
+ # @return [String]
519
+ #
520
+ # @!attribute [rw] ads_application_name
521
+ # The name of the application configured in Application Discovery
522
+ # Service.
523
+ # @return [String]
524
+ #
525
+ # @!attribute [rw] status
526
+ # The status of the migration workflow.
527
+ # @return [String]
528
+ #
529
+ # @!attribute [rw] status_message
530
+ # The status message of the migration workflow.
531
+ # @return [String]
532
+ #
533
+ # @!attribute [rw] creation_time
534
+ # The time at which the migration workflow was created.
535
+ # @return [Time]
536
+ #
537
+ # @!attribute [rw] last_start_time
538
+ # The time at which the migration workflow was last started.
539
+ # @return [Time]
540
+ #
541
+ # @!attribute [rw] last_stop_time
542
+ # The time at which the migration workflow was last stopped.
543
+ # @return [Time]
544
+ #
545
+ # @!attribute [rw] last_modified_time
546
+ # The time at which the migration workflow was last modified.
547
+ # @return [Time]
548
+ #
549
+ # @!attribute [rw] end_time
550
+ # The time at which the migration workflow ended.
551
+ # @return [Time]
552
+ #
553
+ # @!attribute [rw] tools
554
+ # List of AWS services utilized in a migration workflow.
555
+ # @return [Array<Types::Tool>]
556
+ #
557
+ # @!attribute [rw] total_steps
558
+ # The total number of steps in the migration workflow.
559
+ # @return [Integer]
560
+ #
561
+ # @!attribute [rw] completed_steps
562
+ # Get a list of completed steps in the migration workflow.
563
+ # @return [Integer]
564
+ #
565
+ # @!attribute [rw] workflow_inputs
566
+ # The inputs required for creating the migration workflow.
567
+ # @return [Hash<String,Types::StepInput>]
568
+ #
569
+ # @!attribute [rw] tags
570
+ # The tags added to the migration workflow.
571
+ # @return [Hash<String,String>]
572
+ #
573
+ # @!attribute [rw] workflow_bucket
574
+ # The Amazon S3 bucket where the migration logs are stored.
575
+ # @return [String]
576
+ #
577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetMigrationWorkflowResponse AWS API Documentation
578
+ #
579
+ class GetMigrationWorkflowResponse < Struct.new(
580
+ :id,
581
+ :arn,
582
+ :name,
583
+ :description,
584
+ :template_id,
585
+ :ads_application_configuration_id,
586
+ :ads_application_name,
587
+ :status,
588
+ :status_message,
589
+ :creation_time,
590
+ :last_start_time,
591
+ :last_stop_time,
592
+ :last_modified_time,
593
+ :end_time,
594
+ :tools,
595
+ :total_steps,
596
+ :completed_steps,
597
+ :workflow_inputs,
598
+ :tags,
599
+ :workflow_bucket)
600
+ SENSITIVE = [:workflow_inputs]
601
+ include Aws::Structure
602
+ end
603
+
604
+ # @note When making an API call, you may pass GetMigrationWorkflowTemplateRequest
605
+ # data as a hash:
606
+ #
607
+ # {
608
+ # id: "TemplateId", # required
609
+ # }
610
+ #
611
+ # @!attribute [rw] id
612
+ # The ID of the template.
613
+ # @return [String]
614
+ #
615
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetMigrationWorkflowTemplateRequest AWS API Documentation
616
+ #
617
+ class GetMigrationWorkflowTemplateRequest < Struct.new(
618
+ :id)
619
+ SENSITIVE = []
620
+ include Aws::Structure
621
+ end
622
+
623
+ # @!attribute [rw] id
624
+ # The ID of the template.
625
+ # @return [String]
626
+ #
627
+ # @!attribute [rw] name
628
+ # The name of the template.
629
+ # @return [String]
630
+ #
631
+ # @!attribute [rw] description
632
+ # The time at which the template was last created.
633
+ # @return [String]
634
+ #
635
+ # @!attribute [rw] inputs
636
+ # The inputs provided for the creation of the migration workflow.
637
+ # @return [Array<Types::TemplateInput>]
638
+ #
639
+ # @!attribute [rw] tools
640
+ # List of AWS services utilized in a migration workflow.
641
+ # @return [Array<Types::Tool>]
642
+ #
643
+ # @!attribute [rw] status
644
+ # The status of the template.
645
+ # @return [String]
646
+ #
647
+ # @!attribute [rw] creation_time
648
+ # The time at which the template was last created.
649
+ # @return [Time]
650
+ #
651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetMigrationWorkflowTemplateResponse AWS API Documentation
652
+ #
653
+ class GetMigrationWorkflowTemplateResponse < Struct.new(
654
+ :id,
655
+ :name,
656
+ :description,
657
+ :inputs,
658
+ :tools,
659
+ :status,
660
+ :creation_time)
661
+ SENSITIVE = []
662
+ include Aws::Structure
663
+ end
664
+
665
+ # @note When making an API call, you may pass GetTemplateStepGroupRequest
666
+ # data as a hash:
667
+ #
668
+ # {
669
+ # template_id: "TemplateId", # required
670
+ # id: "StepGroupId", # required
671
+ # }
672
+ #
673
+ # @!attribute [rw] template_id
674
+ # The ID of the template.
675
+ # @return [String]
676
+ #
677
+ # @!attribute [rw] id
678
+ # The ID of the step group.
679
+ # @return [String]
680
+ #
681
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetTemplateStepGroupRequest AWS API Documentation
682
+ #
683
+ class GetTemplateStepGroupRequest < Struct.new(
684
+ :template_id,
685
+ :id)
686
+ SENSITIVE = []
687
+ include Aws::Structure
688
+ end
689
+
690
+ # @!attribute [rw] template_id
691
+ # The ID of the template.
692
+ # @return [String]
693
+ #
694
+ # @!attribute [rw] id
695
+ # The ID of the step group.
696
+ # @return [String]
697
+ #
698
+ # @!attribute [rw] name
699
+ # The name of the step group.
700
+ # @return [String]
701
+ #
702
+ # @!attribute [rw] description
703
+ # The description of the step group.
704
+ # @return [String]
705
+ #
706
+ # @!attribute [rw] status
707
+ # The status of the step group.
708
+ # @return [String]
709
+ #
710
+ # @!attribute [rw] creation_time
711
+ # The time at which the step group was created.
712
+ # @return [Time]
713
+ #
714
+ # @!attribute [rw] last_modified_time
715
+ # The time at which the step group was last modified.
716
+ # @return [Time]
717
+ #
718
+ # @!attribute [rw] tools
719
+ # List of AWS services utilized in a migration workflow.
720
+ # @return [Array<Types::Tool>]
721
+ #
722
+ # @!attribute [rw] previous
723
+ # The previous step group.
724
+ # @return [Array<String>]
725
+ #
726
+ # @!attribute [rw] next
727
+ # The next step group.
728
+ # @return [Array<String>]
729
+ #
730
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetTemplateStepGroupResponse AWS API Documentation
731
+ #
732
+ class GetTemplateStepGroupResponse < Struct.new(
733
+ :template_id,
734
+ :id,
735
+ :name,
736
+ :description,
737
+ :status,
738
+ :creation_time,
739
+ :last_modified_time,
740
+ :tools,
741
+ :previous,
742
+ :next)
743
+ SENSITIVE = []
744
+ include Aws::Structure
745
+ end
746
+
747
+ # @note When making an API call, you may pass GetTemplateStepRequest
748
+ # data as a hash:
749
+ #
750
+ # {
751
+ # id: "StepId", # required
752
+ # template_id: "TemplateId", # required
753
+ # step_group_id: "StepGroupId", # required
754
+ # }
755
+ #
756
+ # @!attribute [rw] id
757
+ # The ID of the step.
758
+ # @return [String]
759
+ #
760
+ # @!attribute [rw] template_id
761
+ # The ID of the template.
762
+ # @return [String]
763
+ #
764
+ # @!attribute [rw] step_group_id
765
+ # The ID of the step group.
766
+ # @return [String]
767
+ #
768
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetTemplateStepRequest AWS API Documentation
769
+ #
770
+ class GetTemplateStepRequest < Struct.new(
771
+ :id,
772
+ :template_id,
773
+ :step_group_id)
774
+ SENSITIVE = []
775
+ include Aws::Structure
776
+ end
777
+
778
+ # @!attribute [rw] id
779
+ # The ID of the step.
780
+ # @return [String]
781
+ #
782
+ # @!attribute [rw] step_group_id
783
+ # The ID of the step group.
784
+ # @return [String]
785
+ #
786
+ # @!attribute [rw] template_id
787
+ # The ID of the template.
788
+ # @return [String]
789
+ #
790
+ # @!attribute [rw] name
791
+ # The name of the step.
792
+ # @return [String]
793
+ #
794
+ # @!attribute [rw] description
795
+ # The description of the step.
796
+ # @return [String]
797
+ #
798
+ # @!attribute [rw] step_action_type
799
+ # The action type of the step. You must run and update the status of a
800
+ # manual step for the workflow to continue after the completion of the
801
+ # step.
802
+ # @return [String]
803
+ #
804
+ # @!attribute [rw] creation_time
805
+ # The time at which the step was created.
806
+ # @return [String]
807
+ #
808
+ # @!attribute [rw] previous
809
+ # The previous step.
810
+ # @return [Array<String>]
811
+ #
812
+ # @!attribute [rw] next
813
+ # The next step.
814
+ # @return [Array<String>]
815
+ #
816
+ # @!attribute [rw] outputs
817
+ # The outputs of the step.
818
+ # @return [Array<Types::StepOutput>]
819
+ #
820
+ # @!attribute [rw] step_automation_configuration
821
+ # The custom script to run tests on source or target environments.
822
+ # @return [Types::StepAutomationConfiguration]
823
+ #
824
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetTemplateStepResponse AWS API Documentation
825
+ #
826
+ class GetTemplateStepResponse < Struct.new(
827
+ :id,
828
+ :step_group_id,
829
+ :template_id,
830
+ :name,
831
+ :description,
832
+ :step_action_type,
833
+ :creation_time,
834
+ :previous,
835
+ :next,
836
+ :outputs,
837
+ :step_automation_configuration)
838
+ SENSITIVE = []
839
+ include Aws::Structure
840
+ end
841
+
842
+ # @note When making an API call, you may pass GetWorkflowStepGroupRequest
843
+ # data as a hash:
844
+ #
845
+ # {
846
+ # id: "StepGroupId", # required
847
+ # workflow_id: "MigrationWorkflowId", # required
848
+ # }
849
+ #
850
+ # @!attribute [rw] id
851
+ # The ID of the step group.
852
+ # @return [String]
853
+ #
854
+ # @!attribute [rw] workflow_id
855
+ # The ID of the migration workflow.
856
+ # @return [String]
857
+ #
858
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetWorkflowStepGroupRequest AWS API Documentation
859
+ #
860
+ class GetWorkflowStepGroupRequest < Struct.new(
861
+ :id,
862
+ :workflow_id)
863
+ SENSITIVE = []
864
+ include Aws::Structure
865
+ end
866
+
867
+ # @!attribute [rw] id
868
+ # The ID of the step group.
869
+ # @return [String]
870
+ #
871
+ # @!attribute [rw] workflow_id
872
+ # The ID of the migration workflow.
873
+ # @return [String]
874
+ #
875
+ # @!attribute [rw] name
876
+ # The name of the step group.
877
+ # @return [String]
878
+ #
879
+ # @!attribute [rw] description
880
+ # The description of the step group.
881
+ # @return [String]
882
+ #
883
+ # @!attribute [rw] status
884
+ # The status of the step group.
885
+ # @return [String]
886
+ #
887
+ # @!attribute [rw] owner
888
+ # The owner of the step group.
889
+ # @return [String]
890
+ #
891
+ # @!attribute [rw] creation_time
892
+ # The time at which the step group was created.
893
+ # @return [Time]
894
+ #
895
+ # @!attribute [rw] last_modified_time
896
+ # The time at which the step group was last modified.
897
+ # @return [Time]
898
+ #
899
+ # @!attribute [rw] end_time
900
+ # The time at which the step group ended.
901
+ # @return [Time]
902
+ #
903
+ # @!attribute [rw] tools
904
+ # List of AWS services utilized in a migration workflow.
905
+ # @return [Array<Types::Tool>]
906
+ #
907
+ # @!attribute [rw] previous
908
+ # The previous step group.
909
+ # @return [Array<String>]
910
+ #
911
+ # @!attribute [rw] next
912
+ # The next step group.
913
+ # @return [Array<String>]
914
+ #
915
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetWorkflowStepGroupResponse AWS API Documentation
916
+ #
917
+ class GetWorkflowStepGroupResponse < Struct.new(
918
+ :id,
919
+ :workflow_id,
920
+ :name,
921
+ :description,
922
+ :status,
923
+ :owner,
924
+ :creation_time,
925
+ :last_modified_time,
926
+ :end_time,
927
+ :tools,
928
+ :previous,
929
+ :next)
930
+ SENSITIVE = []
931
+ include Aws::Structure
932
+ end
933
+
934
+ # @note When making an API call, you may pass GetWorkflowStepRequest
935
+ # data as a hash:
936
+ #
937
+ # {
938
+ # workflow_id: "MigrationWorkflowId", # required
939
+ # step_group_id: "StepGroupId", # required
940
+ # id: "StepId", # required
941
+ # }
942
+ #
943
+ # @!attribute [rw] workflow_id
944
+ # The ID of the migration workflow.
945
+ # @return [String]
946
+ #
947
+ # @!attribute [rw] step_group_id
948
+ # desThe ID of the step group.
949
+ # @return [String]
950
+ #
951
+ # @!attribute [rw] id
952
+ # The ID of the step.
953
+ # @return [String]
954
+ #
955
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetWorkflowStepRequest AWS API Documentation
956
+ #
957
+ class GetWorkflowStepRequest < Struct.new(
958
+ :workflow_id,
959
+ :step_group_id,
960
+ :id)
961
+ SENSITIVE = []
962
+ include Aws::Structure
963
+ end
964
+
965
+ # @!attribute [rw] name
966
+ # The name of the step.
967
+ # @return [String]
968
+ #
969
+ # @!attribute [rw] step_group_id
970
+ # The ID of the step group.
971
+ # @return [String]
972
+ #
973
+ # @!attribute [rw] workflow_id
974
+ # The ID of the migration workflow.
975
+ # @return [String]
976
+ #
977
+ # @!attribute [rw] step_id
978
+ # The ID of the step.
979
+ # @return [String]
980
+ #
981
+ # @!attribute [rw] description
982
+ # The description of the step.
983
+ # @return [String]
984
+ #
985
+ # @!attribute [rw] step_action_type
986
+ # The action type of the step. You must run and update the status of a
987
+ # manual step for the workflow to continue after the completion of the
988
+ # step.
989
+ # @return [String]
990
+ #
991
+ # @!attribute [rw] owner
992
+ # The owner of the step.
993
+ # @return [String]
994
+ #
995
+ # @!attribute [rw] workflow_step_automation_configuration
996
+ # The custom script to run tests on source or target environments.
997
+ # @return [Types::WorkflowStepAutomationConfiguration]
998
+ #
999
+ # @!attribute [rw] step_target
1000
+ # The servers on which a step will be run.
1001
+ # @return [Array<String>]
1002
+ #
1003
+ # @!attribute [rw] outputs
1004
+ # The outputs of the step.
1005
+ # @return [Array<Types::WorkflowStepOutput>]
1006
+ #
1007
+ # @!attribute [rw] previous
1008
+ # The previous step.
1009
+ # @return [Array<String>]
1010
+ #
1011
+ # @!attribute [rw] next
1012
+ # The next step.
1013
+ # @return [Array<String>]
1014
+ #
1015
+ # @!attribute [rw] status
1016
+ # The status of the step.
1017
+ # @return [String]
1018
+ #
1019
+ # @!attribute [rw] status_message
1020
+ # The status message of the migration workflow.
1021
+ # @return [String]
1022
+ #
1023
+ # @!attribute [rw] script_output_location
1024
+ # The output location of the script.
1025
+ # @return [String]
1026
+ #
1027
+ # @!attribute [rw] creation_time
1028
+ # The time at which the step was created.
1029
+ # @return [Time]
1030
+ #
1031
+ # @!attribute [rw] last_start_time
1032
+ # The time at which the workflow was last started.
1033
+ # @return [Time]
1034
+ #
1035
+ # @!attribute [rw] end_time
1036
+ # The time at which the step ended.
1037
+ # @return [Time]
1038
+ #
1039
+ # @!attribute [rw] no_of_srv_completed
1040
+ # The number of servers that have been migrated.
1041
+ # @return [Integer]
1042
+ #
1043
+ # @!attribute [rw] no_of_srv_failed
1044
+ # The number of servers that have failed to migrate.
1045
+ # @return [Integer]
1046
+ #
1047
+ # @!attribute [rw] total_no_of_srv
1048
+ # The total number of servers that have been migrated.
1049
+ # @return [Integer]
1050
+ #
1051
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetWorkflowStepResponse AWS API Documentation
1052
+ #
1053
+ class GetWorkflowStepResponse < Struct.new(
1054
+ :name,
1055
+ :step_group_id,
1056
+ :workflow_id,
1057
+ :step_id,
1058
+ :description,
1059
+ :step_action_type,
1060
+ :owner,
1061
+ :workflow_step_automation_configuration,
1062
+ :step_target,
1063
+ :outputs,
1064
+ :previous,
1065
+ :next,
1066
+ :status,
1067
+ :status_message,
1068
+ :script_output_location,
1069
+ :creation_time,
1070
+ :last_start_time,
1071
+ :end_time,
1072
+ :no_of_srv_completed,
1073
+ :no_of_srv_failed,
1074
+ :total_no_of_srv)
1075
+ SENSITIVE = []
1076
+ include Aws::Structure
1077
+ end
1078
+
1079
+ # An internal error has occurred.
1080
+ #
1081
+ # @!attribute [rw] message
1082
+ # @return [String]
1083
+ #
1084
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/InternalServerException AWS API Documentation
1085
+ #
1086
+ class InternalServerException < Struct.new(
1087
+ :message)
1088
+ SENSITIVE = []
1089
+ include Aws::Structure
1090
+ end
1091
+
1092
+ # @note When making an API call, you may pass ListMigrationWorkflowTemplatesRequest
1093
+ # data as a hash:
1094
+ #
1095
+ # {
1096
+ # max_results: 1,
1097
+ # next_token: "NextToken",
1098
+ # name: "TemplateName",
1099
+ # }
1100
+ #
1101
+ # @!attribute [rw] max_results
1102
+ # The maximum number of results that can be returned.
1103
+ # @return [Integer]
1104
+ #
1105
+ # @!attribute [rw] next_token
1106
+ # The pagination token.
1107
+ # @return [String]
1108
+ #
1109
+ # @!attribute [rw] name
1110
+ # The name of the template.
1111
+ # @return [String]
1112
+ #
1113
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListMigrationWorkflowTemplatesRequest AWS API Documentation
1114
+ #
1115
+ class ListMigrationWorkflowTemplatesRequest < Struct.new(
1116
+ :max_results,
1117
+ :next_token,
1118
+ :name)
1119
+ SENSITIVE = []
1120
+ include Aws::Structure
1121
+ end
1122
+
1123
+ # @!attribute [rw] next_token
1124
+ # The pagination token.
1125
+ # @return [String]
1126
+ #
1127
+ # @!attribute [rw] template_summary
1128
+ # The summary of the template.
1129
+ # @return [Array<Types::TemplateSummary>]
1130
+ #
1131
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListMigrationWorkflowTemplatesResponse AWS API Documentation
1132
+ #
1133
+ class ListMigrationWorkflowTemplatesResponse < Struct.new(
1134
+ :next_token,
1135
+ :template_summary)
1136
+ SENSITIVE = []
1137
+ include Aws::Structure
1138
+ end
1139
+
1140
+ # @note When making an API call, you may pass ListMigrationWorkflowsRequest
1141
+ # data as a hash:
1142
+ #
1143
+ # {
1144
+ # max_results: 1,
1145
+ # next_token: "NextToken",
1146
+ # template_id: "TemplateId",
1147
+ # ads_application_configuration_name: "ApplicationConfigurationName",
1148
+ # status: "CREATING", # accepts CREATING, NOT_STARTED, CREATION_FAILED, STARTING, IN_PROGRESS, WORKFLOW_FAILED, PAUSED, PAUSING, PAUSING_FAILED, USER_ATTENTION_REQUIRED, DELETING, DELETION_FAILED, DELETED, COMPLETED
1149
+ # name: "String",
1150
+ # }
1151
+ #
1152
+ # @!attribute [rw] max_results
1153
+ # The maximum number of results that can be returned.
1154
+ # @return [Integer]
1155
+ #
1156
+ # @!attribute [rw] next_token
1157
+ # The pagination token.
1158
+ # @return [String]
1159
+ #
1160
+ # @!attribute [rw] template_id
1161
+ # The ID of the template.
1162
+ # @return [String]
1163
+ #
1164
+ # @!attribute [rw] ads_application_configuration_name
1165
+ # The name of the application configured in Application Discovery
1166
+ # Service.
1167
+ # @return [String]
1168
+ #
1169
+ # @!attribute [rw] status
1170
+ # The status of the migration workflow.
1171
+ # @return [String]
1172
+ #
1173
+ # @!attribute [rw] name
1174
+ # The name of the migration workflow.
1175
+ # @return [String]
1176
+ #
1177
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListMigrationWorkflowsRequest AWS API Documentation
1178
+ #
1179
+ class ListMigrationWorkflowsRequest < Struct.new(
1180
+ :max_results,
1181
+ :next_token,
1182
+ :template_id,
1183
+ :ads_application_configuration_name,
1184
+ :status,
1185
+ :name)
1186
+ SENSITIVE = []
1187
+ include Aws::Structure
1188
+ end
1189
+
1190
+ # @!attribute [rw] next_token
1191
+ # The pagination token.
1192
+ # @return [String]
1193
+ #
1194
+ # @!attribute [rw] migration_workflow_summary
1195
+ # The summary of the migration workflow.
1196
+ # @return [Array<Types::MigrationWorkflowSummary>]
1197
+ #
1198
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListMigrationWorkflowsResponse AWS API Documentation
1199
+ #
1200
+ class ListMigrationWorkflowsResponse < Struct.new(
1201
+ :next_token,
1202
+ :migration_workflow_summary)
1203
+ SENSITIVE = []
1204
+ include Aws::Structure
1205
+ end
1206
+
1207
+ # @note When making an API call, you may pass ListPluginsRequest
1208
+ # data as a hash:
1209
+ #
1210
+ # {
1211
+ # max_results: 1,
1212
+ # next_token: "NextToken",
1213
+ # }
1214
+ #
1215
+ # @!attribute [rw] max_results
1216
+ # The maximum number of plugins that can be returned.
1217
+ # @return [Integer]
1218
+ #
1219
+ # @!attribute [rw] next_token
1220
+ # The pagination token.
1221
+ # @return [String]
1222
+ #
1223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListPluginsRequest AWS API Documentation
1224
+ #
1225
+ class ListPluginsRequest < Struct.new(
1226
+ :max_results,
1227
+ :next_token)
1228
+ SENSITIVE = []
1229
+ include Aws::Structure
1230
+ end
1231
+
1232
+ # @!attribute [rw] next_token
1233
+ # The pagination token.
1234
+ # @return [String]
1235
+ #
1236
+ # @!attribute [rw] plugins
1237
+ # Migration Hub Orchestrator plugins.
1238
+ # @return [Array<Types::PluginSummary>]
1239
+ #
1240
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListPluginsResponse AWS API Documentation
1241
+ #
1242
+ class ListPluginsResponse < Struct.new(
1243
+ :next_token,
1244
+ :plugins)
1245
+ SENSITIVE = []
1246
+ include Aws::Structure
1247
+ end
1248
+
1249
+ # @note When making an API call, you may pass ListTagsForResourceRequest
1250
+ # data as a hash:
1251
+ #
1252
+ # {
1253
+ # resource_arn: "ResourceArn", # required
1254
+ # }
1255
+ #
1256
+ # @!attribute [rw] resource_arn
1257
+ # The Amazon Resource Name (ARN) of the resource.
1258
+ # @return [String]
1259
+ #
1260
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListTagsForResourceRequest AWS API Documentation
1261
+ #
1262
+ class ListTagsForResourceRequest < Struct.new(
1263
+ :resource_arn)
1264
+ SENSITIVE = []
1265
+ include Aws::Structure
1266
+ end
1267
+
1268
+ # @!attribute [rw] tags
1269
+ # The tags added to a resource.
1270
+ # @return [Hash<String,String>]
1271
+ #
1272
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListTagsForResourceResponse AWS API Documentation
1273
+ #
1274
+ class ListTagsForResourceResponse < Struct.new(
1275
+ :tags)
1276
+ SENSITIVE = []
1277
+ include Aws::Structure
1278
+ end
1279
+
1280
+ # @note When making an API call, you may pass ListTemplateStepGroupsRequest
1281
+ # data as a hash:
1282
+ #
1283
+ # {
1284
+ # max_results: 1,
1285
+ # next_token: "NextToken",
1286
+ # template_id: "TemplateId", # required
1287
+ # }
1288
+ #
1289
+ # @!attribute [rw] max_results
1290
+ # The maximum number of results that can be returned.
1291
+ # @return [Integer]
1292
+ #
1293
+ # @!attribute [rw] next_token
1294
+ # The pagination token.
1295
+ # @return [String]
1296
+ #
1297
+ # @!attribute [rw] template_id
1298
+ # The ID of the template.
1299
+ # @return [String]
1300
+ #
1301
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListTemplateStepGroupsRequest AWS API Documentation
1302
+ #
1303
+ class ListTemplateStepGroupsRequest < Struct.new(
1304
+ :max_results,
1305
+ :next_token,
1306
+ :template_id)
1307
+ SENSITIVE = []
1308
+ include Aws::Structure
1309
+ end
1310
+
1311
+ # @!attribute [rw] next_token
1312
+ # The pagination token.
1313
+ # @return [String]
1314
+ #
1315
+ # @!attribute [rw] template_step_group_summary
1316
+ # The summary of the step group in the template.
1317
+ # @return [Array<Types::TemplateStepGroupSummary>]
1318
+ #
1319
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListTemplateStepGroupsResponse AWS API Documentation
1320
+ #
1321
+ class ListTemplateStepGroupsResponse < Struct.new(
1322
+ :next_token,
1323
+ :template_step_group_summary)
1324
+ SENSITIVE = []
1325
+ include Aws::Structure
1326
+ end
1327
+
1328
+ # @note When making an API call, you may pass ListTemplateStepsRequest
1329
+ # data as a hash:
1330
+ #
1331
+ # {
1332
+ # max_results: 1,
1333
+ # next_token: "NextToken",
1334
+ # template_id: "TemplateId", # required
1335
+ # step_group_id: "StepGroupId", # required
1336
+ # }
1337
+ #
1338
+ # @!attribute [rw] max_results
1339
+ # The maximum number of results that can be returned.
1340
+ # @return [Integer]
1341
+ #
1342
+ # @!attribute [rw] next_token
1343
+ # The pagination token.
1344
+ # @return [String]
1345
+ #
1346
+ # @!attribute [rw] template_id
1347
+ # The ID of the template.
1348
+ # @return [String]
1349
+ #
1350
+ # @!attribute [rw] step_group_id
1351
+ # The ID of the step group.
1352
+ # @return [String]
1353
+ #
1354
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListTemplateStepsRequest AWS API Documentation
1355
+ #
1356
+ class ListTemplateStepsRequest < Struct.new(
1357
+ :max_results,
1358
+ :next_token,
1359
+ :template_id,
1360
+ :step_group_id)
1361
+ SENSITIVE = []
1362
+ include Aws::Structure
1363
+ end
1364
+
1365
+ # @!attribute [rw] next_token
1366
+ # The pagination token.
1367
+ # @return [String]
1368
+ #
1369
+ # @!attribute [rw] template_step_summary_list
1370
+ # The list of summaries of steps in a template.
1371
+ # @return [Array<Types::TemplateStepSummary>]
1372
+ #
1373
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListTemplateStepsResponse AWS API Documentation
1374
+ #
1375
+ class ListTemplateStepsResponse < Struct.new(
1376
+ :next_token,
1377
+ :template_step_summary_list)
1378
+ SENSITIVE = []
1379
+ include Aws::Structure
1380
+ end
1381
+
1382
+ # @note When making an API call, you may pass ListWorkflowStepGroupsRequest
1383
+ # data as a hash:
1384
+ #
1385
+ # {
1386
+ # next_token: "NextToken",
1387
+ # max_results: 1,
1388
+ # workflow_id: "MigrationWorkflowId", # required
1389
+ # }
1390
+ #
1391
+ # @!attribute [rw] next_token
1392
+ # The pagination token.
1393
+ # @return [String]
1394
+ #
1395
+ # @!attribute [rw] max_results
1396
+ # The maximum number of results that can be returned.
1397
+ # @return [Integer]
1398
+ #
1399
+ # @!attribute [rw] workflow_id
1400
+ # The ID of the migration workflow.
1401
+ # @return [String]
1402
+ #
1403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListWorkflowStepGroupsRequest AWS API Documentation
1404
+ #
1405
+ class ListWorkflowStepGroupsRequest < Struct.new(
1406
+ :next_token,
1407
+ :max_results,
1408
+ :workflow_id)
1409
+ SENSITIVE = []
1410
+ include Aws::Structure
1411
+ end
1412
+
1413
+ # @!attribute [rw] next_token
1414
+ # The pagination token.
1415
+ # @return [String]
1416
+ #
1417
+ # @!attribute [rw] workflow_step_groups_summary
1418
+ # The summary of step groups in a migration workflow.
1419
+ # @return [Array<Types::WorkflowStepGroupSummary>]
1420
+ #
1421
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListWorkflowStepGroupsResponse AWS API Documentation
1422
+ #
1423
+ class ListWorkflowStepGroupsResponse < Struct.new(
1424
+ :next_token,
1425
+ :workflow_step_groups_summary)
1426
+ SENSITIVE = []
1427
+ include Aws::Structure
1428
+ end
1429
+
1430
+ # @note When making an API call, you may pass ListWorkflowStepsRequest
1431
+ # data as a hash:
1432
+ #
1433
+ # {
1434
+ # next_token: "NextToken",
1435
+ # max_results: 1,
1436
+ # workflow_id: "MigrationWorkflowId", # required
1437
+ # step_group_id: "StepGroupId", # required
1438
+ # }
1439
+ #
1440
+ # @!attribute [rw] next_token
1441
+ # The pagination token.
1442
+ # @return [String]
1443
+ #
1444
+ # @!attribute [rw] max_results
1445
+ # The maximum number of results that can be returned.
1446
+ # @return [Integer]
1447
+ #
1448
+ # @!attribute [rw] workflow_id
1449
+ # The ID of the migration workflow.
1450
+ # @return [String]
1451
+ #
1452
+ # @!attribute [rw] step_group_id
1453
+ # The ID of the step group.
1454
+ # @return [String]
1455
+ #
1456
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListWorkflowStepsRequest AWS API Documentation
1457
+ #
1458
+ class ListWorkflowStepsRequest < Struct.new(
1459
+ :next_token,
1460
+ :max_results,
1461
+ :workflow_id,
1462
+ :step_group_id)
1463
+ SENSITIVE = []
1464
+ include Aws::Structure
1465
+ end
1466
+
1467
+ # @!attribute [rw] next_token
1468
+ # The pagination token.
1469
+ # @return [String]
1470
+ #
1471
+ # @!attribute [rw] workflow_steps_summary
1472
+ # The summary of steps in a migration workflow.
1473
+ # @return [Array<Types::WorkflowStepSummary>]
1474
+ #
1475
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ListWorkflowStepsResponse AWS API Documentation
1476
+ #
1477
+ class ListWorkflowStepsResponse < Struct.new(
1478
+ :next_token,
1479
+ :workflow_steps_summary)
1480
+ SENSITIVE = []
1481
+ include Aws::Structure
1482
+ end
1483
+
1484
+ # The summary of a migration workflow.
1485
+ #
1486
+ # @!attribute [rw] id
1487
+ # The ID of the migration workflow.
1488
+ # @return [String]
1489
+ #
1490
+ # @!attribute [rw] name
1491
+ # The name of the migration workflow.
1492
+ # @return [String]
1493
+ #
1494
+ # @!attribute [rw] template_id
1495
+ # The ID of the template.
1496
+ # @return [String]
1497
+ #
1498
+ # @!attribute [rw] ads_application_configuration_name
1499
+ # The name of the application configured in Application Discovery
1500
+ # Service.
1501
+ # @return [String]
1502
+ #
1503
+ # @!attribute [rw] status
1504
+ # The status of the migration workflow.
1505
+ # @return [String]
1506
+ #
1507
+ # @!attribute [rw] creation_time
1508
+ # The time at which the migration workflow was created.
1509
+ # @return [Time]
1510
+ #
1511
+ # @!attribute [rw] end_time
1512
+ # The time at which the migration workflow ended.
1513
+ # @return [Time]
1514
+ #
1515
+ # @!attribute [rw] status_message
1516
+ # The status message of the migration workflow.
1517
+ # @return [String]
1518
+ #
1519
+ # @!attribute [rw] completed_steps
1520
+ # The steps completed in the migration workflow.
1521
+ # @return [Integer]
1522
+ #
1523
+ # @!attribute [rw] total_steps
1524
+ # All the steps in a migration workflow.
1525
+ # @return [Integer]
1526
+ #
1527
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/MigrationWorkflowSummary AWS API Documentation
1528
+ #
1529
+ class MigrationWorkflowSummary < Struct.new(
1530
+ :id,
1531
+ :name,
1532
+ :template_id,
1533
+ :ads_application_configuration_name,
1534
+ :status,
1535
+ :creation_time,
1536
+ :end_time,
1537
+ :status_message,
1538
+ :completed_steps,
1539
+ :total_steps)
1540
+ SENSITIVE = []
1541
+ include Aws::Structure
1542
+ end
1543
+
1544
+ # Command to be run on a particular operating system.
1545
+ #
1546
+ # @note When making an API call, you may pass PlatformCommand
1547
+ # data as a hash:
1548
+ #
1549
+ # {
1550
+ # linux: "String",
1551
+ # windows: "String",
1552
+ # }
1553
+ #
1554
+ # @!attribute [rw] linux
1555
+ # Command for Linux.
1556
+ # @return [String]
1557
+ #
1558
+ # @!attribute [rw] windows
1559
+ # Command for Windows.
1560
+ # @return [String]
1561
+ #
1562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/PlatformCommand AWS API Documentation
1563
+ #
1564
+ class PlatformCommand < Struct.new(
1565
+ :linux,
1566
+ :windows)
1567
+ SENSITIVE = []
1568
+ include Aws::Structure
1569
+ end
1570
+
1571
+ # The script location for a particular operating system.
1572
+ #
1573
+ # @note When making an API call, you may pass PlatformScriptKey
1574
+ # data as a hash:
1575
+ #
1576
+ # {
1577
+ # linux: "S3Key",
1578
+ # windows: "S3Key",
1579
+ # }
1580
+ #
1581
+ # @!attribute [rw] linux
1582
+ # The script location for Linux.
1583
+ # @return [String]
1584
+ #
1585
+ # @!attribute [rw] windows
1586
+ # The script location for Windows.
1587
+ # @return [String]
1588
+ #
1589
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/PlatformScriptKey AWS API Documentation
1590
+ #
1591
+ class PlatformScriptKey < Struct.new(
1592
+ :linux,
1593
+ :windows)
1594
+ SENSITIVE = []
1595
+ include Aws::Structure
1596
+ end
1597
+
1598
+ # The summary of the Migration Hub Orchestrator plugin.
1599
+ #
1600
+ # @!attribute [rw] plugin_id
1601
+ # The ID of the plugin.
1602
+ # @return [String]
1603
+ #
1604
+ # @!attribute [rw] hostname
1605
+ # The name of the host.
1606
+ # @return [String]
1607
+ #
1608
+ # @!attribute [rw] status
1609
+ # The status of the plugin.
1610
+ # @return [String]
1611
+ #
1612
+ # @!attribute [rw] ip_address
1613
+ # The IP address at which the plugin is located.
1614
+ # @return [String]
1615
+ #
1616
+ # @!attribute [rw] version
1617
+ # The version of the plugin.
1618
+ # @return [String]
1619
+ #
1620
+ # @!attribute [rw] registered_time
1621
+ # The time at which the plugin was registered.
1622
+ # @return [String]
1623
+ #
1624
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/PluginSummary AWS API Documentation
1625
+ #
1626
+ class PluginSummary < Struct.new(
1627
+ :plugin_id,
1628
+ :hostname,
1629
+ :status,
1630
+ :ip_address,
1631
+ :version,
1632
+ :registered_time)
1633
+ SENSITIVE = []
1634
+ include Aws::Structure
1635
+ end
1636
+
1637
+ # The resource is not available.
1638
+ #
1639
+ # @!attribute [rw] message
1640
+ # @return [String]
1641
+ #
1642
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ResourceNotFoundException AWS API Documentation
1643
+ #
1644
+ class ResourceNotFoundException < Struct.new(
1645
+ :message)
1646
+ SENSITIVE = []
1647
+ include Aws::Structure
1648
+ end
1649
+
1650
+ # @note When making an API call, you may pass RetryWorkflowStepRequest
1651
+ # data as a hash:
1652
+ #
1653
+ # {
1654
+ # workflow_id: "MigrationWorkflowId", # required
1655
+ # step_group_id: "StepGroupId", # required
1656
+ # id: "StepId", # required
1657
+ # }
1658
+ #
1659
+ # @!attribute [rw] workflow_id
1660
+ # The ID of the migration workflow.
1661
+ # @return [String]
1662
+ #
1663
+ # @!attribute [rw] step_group_id
1664
+ # The ID of the step group.
1665
+ # @return [String]
1666
+ #
1667
+ # @!attribute [rw] id
1668
+ # The ID of the step.
1669
+ # @return [String]
1670
+ #
1671
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/RetryWorkflowStepRequest AWS API Documentation
1672
+ #
1673
+ class RetryWorkflowStepRequest < Struct.new(
1674
+ :workflow_id,
1675
+ :step_group_id,
1676
+ :id)
1677
+ SENSITIVE = []
1678
+ include Aws::Structure
1679
+ end
1680
+
1681
+ # @!attribute [rw] step_group_id
1682
+ # The ID of the step group.
1683
+ # @return [String]
1684
+ #
1685
+ # @!attribute [rw] workflow_id
1686
+ # The ID of the migration workflow.
1687
+ # @return [String]
1688
+ #
1689
+ # @!attribute [rw] id
1690
+ # The ID of the step.
1691
+ # @return [String]
1692
+ #
1693
+ # @!attribute [rw] status
1694
+ # The status of the step.
1695
+ # @return [String]
1696
+ #
1697
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/RetryWorkflowStepResponse AWS API Documentation
1698
+ #
1699
+ class RetryWorkflowStepResponse < Struct.new(
1700
+ :step_group_id,
1701
+ :workflow_id,
1702
+ :id,
1703
+ :status)
1704
+ SENSITIVE = []
1705
+ include Aws::Structure
1706
+ end
1707
+
1708
+ # @note When making an API call, you may pass StartMigrationWorkflowRequest
1709
+ # data as a hash:
1710
+ #
1711
+ # {
1712
+ # id: "MigrationWorkflowId", # required
1713
+ # }
1714
+ #
1715
+ # @!attribute [rw] id
1716
+ # The ID of the migration workflow.
1717
+ # @return [String]
1718
+ #
1719
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/StartMigrationWorkflowRequest AWS API Documentation
1720
+ #
1721
+ class StartMigrationWorkflowRequest < Struct.new(
1722
+ :id)
1723
+ SENSITIVE = []
1724
+ include Aws::Structure
1725
+ end
1726
+
1727
+ # @!attribute [rw] id
1728
+ # The ID of the migration workflow.
1729
+ # @return [String]
1730
+ #
1731
+ # @!attribute [rw] arn
1732
+ # The Amazon Resource Name (ARN) of the migration workflow.
1733
+ # @return [String]
1734
+ #
1735
+ # @!attribute [rw] status
1736
+ # The status of the migration workflow.
1737
+ # @return [String]
1738
+ #
1739
+ # @!attribute [rw] status_message
1740
+ # The status message of the migration workflow.
1741
+ # @return [String]
1742
+ #
1743
+ # @!attribute [rw] last_start_time
1744
+ # The time at which the migration workflow was last started.
1745
+ # @return [Time]
1746
+ #
1747
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/StartMigrationWorkflowResponse AWS API Documentation
1748
+ #
1749
+ class StartMigrationWorkflowResponse < Struct.new(
1750
+ :id,
1751
+ :arn,
1752
+ :status,
1753
+ :status_message,
1754
+ :last_start_time)
1755
+ SENSITIVE = []
1756
+ include Aws::Structure
1757
+ end
1758
+
1759
+ # The custom script to run tests on source or target environments.
1760
+ #
1761
+ # @!attribute [rw] script_location_s3_bucket
1762
+ # The Amazon S3 bucket where the script is located.
1763
+ # @return [String]
1764
+ #
1765
+ # @!attribute [rw] script_location_s3_key
1766
+ # The Amazon S3 key for the script location.
1767
+ # @return [Types::PlatformScriptKey]
1768
+ #
1769
+ # @!attribute [rw] command
1770
+ # The command to run the script.
1771
+ # @return [Types::PlatformCommand]
1772
+ #
1773
+ # @!attribute [rw] run_environment
1774
+ # The source or target environment.
1775
+ # @return [String]
1776
+ #
1777
+ # @!attribute [rw] target_type
1778
+ # The servers on which to run the script.
1779
+ # @return [String]
1780
+ #
1781
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/StepAutomationConfiguration AWS API Documentation
1782
+ #
1783
+ class StepAutomationConfiguration < Struct.new(
1784
+ :script_location_s3_bucket,
1785
+ :script_location_s3_key,
1786
+ :command,
1787
+ :run_environment,
1788
+ :target_type)
1789
+ SENSITIVE = []
1790
+ include Aws::Structure
1791
+ end
1792
+
1793
+ # A map of key value pairs that is generated when you create a migration
1794
+ # workflow. The key value pairs will differ based on your selection of
1795
+ # the template.
1796
+ #
1797
+ # @note StepInput is a union - when making an API calls you must set exactly one of the members.
1798
+ #
1799
+ # @note StepInput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StepInput corresponding to the set member.
1800
+ #
1801
+ # @!attribute [rw] integer_value
1802
+ # The value of the integer.
1803
+ # @return [Integer]
1804
+ #
1805
+ # @!attribute [rw] string_value
1806
+ # String value.
1807
+ # @return [String]
1808
+ #
1809
+ # @!attribute [rw] list_of_strings_value
1810
+ # List of string values.
1811
+ # @return [Array<String>]
1812
+ #
1813
+ # @!attribute [rw] map_of_string_value
1814
+ # Map of string values.
1815
+ # @return [Hash<String,String>]
1816
+ #
1817
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/StepInput AWS API Documentation
1818
+ #
1819
+ class StepInput < Struct.new(
1820
+ :integer_value,
1821
+ :string_value,
1822
+ :list_of_strings_value,
1823
+ :map_of_string_value,
1824
+ :unknown)
1825
+ SENSITIVE = []
1826
+ include Aws::Structure
1827
+ include Aws::Structure::Union
1828
+
1829
+ class IntegerValue < StepInput; end
1830
+ class StringValue < StepInput; end
1831
+ class ListOfStringsValue < StepInput; end
1832
+ class MapOfStringValue < StepInput; end
1833
+ class Unknown < StepInput; end
1834
+ end
1835
+
1836
+ # The output of the step.
1837
+ #
1838
+ # @!attribute [rw] name
1839
+ # The name of the step.
1840
+ # @return [String]
1841
+ #
1842
+ # @!attribute [rw] data_type
1843
+ # The data type of the step output.
1844
+ # @return [String]
1845
+ #
1846
+ # @!attribute [rw] required
1847
+ # Determine if an output is required from a step.
1848
+ # @return [Boolean]
1849
+ #
1850
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/StepOutput AWS API Documentation
1851
+ #
1852
+ class StepOutput < Struct.new(
1853
+ :name,
1854
+ :data_type,
1855
+ :required)
1856
+ SENSITIVE = []
1857
+ include Aws::Structure
1858
+ end
1859
+
1860
+ # @note When making an API call, you may pass StopMigrationWorkflowRequest
1861
+ # data as a hash:
1862
+ #
1863
+ # {
1864
+ # id: "MigrationWorkflowId", # required
1865
+ # }
1866
+ #
1867
+ # @!attribute [rw] id
1868
+ # The ID of the migration workflow.
1869
+ # @return [String]
1870
+ #
1871
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/StopMigrationWorkflowRequest AWS API Documentation
1872
+ #
1873
+ class StopMigrationWorkflowRequest < Struct.new(
1874
+ :id)
1875
+ SENSITIVE = []
1876
+ include Aws::Structure
1877
+ end
1878
+
1879
+ # @!attribute [rw] id
1880
+ # The ID of the migration workflow.
1881
+ # @return [String]
1882
+ #
1883
+ # @!attribute [rw] arn
1884
+ # The Amazon Resource Name (ARN) of the migration workflow.
1885
+ # @return [String]
1886
+ #
1887
+ # @!attribute [rw] status
1888
+ # The status of the migration workflow.
1889
+ # @return [String]
1890
+ #
1891
+ # @!attribute [rw] status_message
1892
+ # The status message of the migration workflow.
1893
+ # @return [String]
1894
+ #
1895
+ # @!attribute [rw] last_stop_time
1896
+ # The time at which the migration workflow was stopped.
1897
+ # @return [Time]
1898
+ #
1899
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/StopMigrationWorkflowResponse AWS API Documentation
1900
+ #
1901
+ class StopMigrationWorkflowResponse < Struct.new(
1902
+ :id,
1903
+ :arn,
1904
+ :status,
1905
+ :status_message,
1906
+ :last_stop_time)
1907
+ SENSITIVE = []
1908
+ include Aws::Structure
1909
+ end
1910
+
1911
+ # @note When making an API call, you may pass TagResourceRequest
1912
+ # data as a hash:
1913
+ #
1914
+ # {
1915
+ # resource_arn: "ResourceArn", # required
1916
+ # tags: { # required
1917
+ # "TagKey" => "TagValue",
1918
+ # },
1919
+ # }
1920
+ #
1921
+ # @!attribute [rw] resource_arn
1922
+ # The Amazon Resource Name (ARN) of the resource to which you want to
1923
+ # add tags.
1924
+ # @return [String]
1925
+ #
1926
+ # @!attribute [rw] tags
1927
+ # A collection of labels, in the form of key:value pairs, that apply
1928
+ # to this resource.
1929
+ # @return [Hash<String,String>]
1930
+ #
1931
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/TagResourceRequest AWS API Documentation
1932
+ #
1933
+ class TagResourceRequest < Struct.new(
1934
+ :resource_arn,
1935
+ :tags)
1936
+ SENSITIVE = []
1937
+ include Aws::Structure
1938
+ end
1939
+
1940
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/TagResourceResponse AWS API Documentation
1941
+ #
1942
+ class TagResourceResponse < Aws::EmptyStructure; end
1943
+
1944
+ # The input parameters of a template.
1945
+ #
1946
+ # @!attribute [rw] input_name
1947
+ # The name of the template.
1948
+ # @return [String]
1949
+ #
1950
+ # @!attribute [rw] data_type
1951
+ # The data type of the template input.
1952
+ # @return [String]
1953
+ #
1954
+ # @!attribute [rw] required
1955
+ # Determine if an input is required from the template.
1956
+ # @return [Boolean]
1957
+ #
1958
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/TemplateInput AWS API Documentation
1959
+ #
1960
+ class TemplateInput < Struct.new(
1961
+ :input_name,
1962
+ :data_type,
1963
+ :required)
1964
+ SENSITIVE = []
1965
+ include Aws::Structure
1966
+ end
1967
+
1968
+ # The summary of the step group in the template.
1969
+ #
1970
+ # @!attribute [rw] id
1971
+ # The ID of the step group.
1972
+ # @return [String]
1973
+ #
1974
+ # @!attribute [rw] name
1975
+ # The name of the step group.
1976
+ # @return [String]
1977
+ #
1978
+ # @!attribute [rw] previous
1979
+ # The previous step group.
1980
+ # @return [Array<String>]
1981
+ #
1982
+ # @!attribute [rw] next
1983
+ # The next step group.
1984
+ # @return [Array<String>]
1985
+ #
1986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/TemplateStepGroupSummary AWS API Documentation
1987
+ #
1988
+ class TemplateStepGroupSummary < Struct.new(
1989
+ :id,
1990
+ :name,
1991
+ :previous,
1992
+ :next)
1993
+ SENSITIVE = []
1994
+ include Aws::Structure
1995
+ end
1996
+
1997
+ # The summary of the step.
1998
+ #
1999
+ # @!attribute [rw] id
2000
+ # The ID of the step.
2001
+ # @return [String]
2002
+ #
2003
+ # @!attribute [rw] step_group_id
2004
+ # The ID of the step group.
2005
+ # @return [String]
2006
+ #
2007
+ # @!attribute [rw] template_id
2008
+ # The ID of the template.
2009
+ # @return [String]
2010
+ #
2011
+ # @!attribute [rw] name
2012
+ # The name of the step.
2013
+ # @return [String]
2014
+ #
2015
+ # @!attribute [rw] step_action_type
2016
+ # The action type of the step. You must run and update the status of a
2017
+ # manual step for the workflow to continue after the completion of the
2018
+ # step.
2019
+ # @return [String]
2020
+ #
2021
+ # @!attribute [rw] target_type
2022
+ # The servers on which to run the script.
2023
+ # @return [String]
2024
+ #
2025
+ # @!attribute [rw] owner
2026
+ # The owner of the step.
2027
+ # @return [String]
2028
+ #
2029
+ # @!attribute [rw] previous
2030
+ # The previous step.
2031
+ # @return [Array<String>]
2032
+ #
2033
+ # @!attribute [rw] next
2034
+ # The next step.
2035
+ # @return [Array<String>]
2036
+ #
2037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/TemplateStepSummary AWS API Documentation
2038
+ #
2039
+ class TemplateStepSummary < Struct.new(
2040
+ :id,
2041
+ :step_group_id,
2042
+ :template_id,
2043
+ :name,
2044
+ :step_action_type,
2045
+ :target_type,
2046
+ :owner,
2047
+ :previous,
2048
+ :next)
2049
+ SENSITIVE = []
2050
+ include Aws::Structure
2051
+ end
2052
+
2053
+ # The summary of the template.
2054
+ #
2055
+ # @!attribute [rw] id
2056
+ # The ID of the template.
2057
+ # @return [String]
2058
+ #
2059
+ # @!attribute [rw] name
2060
+ # The name of the template.
2061
+ # @return [String]
2062
+ #
2063
+ # @!attribute [rw] arn
2064
+ # The Amazon Resource Name (ARN) of the template.
2065
+ # @return [String]
2066
+ #
2067
+ # @!attribute [rw] description
2068
+ # The description of the template.
2069
+ # @return [String]
2070
+ #
2071
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/TemplateSummary AWS API Documentation
2072
+ #
2073
+ class TemplateSummary < Struct.new(
2074
+ :id,
2075
+ :name,
2076
+ :arn,
2077
+ :description)
2078
+ SENSITIVE = []
2079
+ include Aws::Structure
2080
+ end
2081
+
2082
+ # The request was denied due to request throttling.
2083
+ #
2084
+ # @!attribute [rw] message
2085
+ # @return [String]
2086
+ #
2087
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ThrottlingException AWS API Documentation
2088
+ #
2089
+ class ThrottlingException < Struct.new(
2090
+ :message)
2091
+ SENSITIVE = []
2092
+ include Aws::Structure
2093
+ end
2094
+
2095
+ # List of AWS services utilized in a migration workflow.
2096
+ #
2097
+ # @!attribute [rw] name
2098
+ # The name of an AWS service.
2099
+ # @return [String]
2100
+ #
2101
+ # @!attribute [rw] url
2102
+ # The URL of an AWS service.
2103
+ # @return [String]
2104
+ #
2105
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/Tool AWS API Documentation
2106
+ #
2107
+ class Tool < Struct.new(
2108
+ :name,
2109
+ :url)
2110
+ SENSITIVE = []
2111
+ include Aws::Structure
2112
+ end
2113
+
2114
+ # @note When making an API call, you may pass UntagResourceRequest
2115
+ # data as a hash:
2116
+ #
2117
+ # {
2118
+ # resource_arn: "ResourceArn", # required
2119
+ # tag_keys: ["TagKey"], # required
2120
+ # }
2121
+ #
2122
+ # @!attribute [rw] resource_arn
2123
+ # The Amazon Resource Name (ARN) of the resource from which you want
2124
+ # to remove tags.
2125
+ # @return [String]
2126
+ #
2127
+ # @!attribute [rw] tag_keys
2128
+ # One or more tag keys. Specify only the tag keys, not the tag values.
2129
+ # @return [Array<String>]
2130
+ #
2131
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/UntagResourceRequest AWS API Documentation
2132
+ #
2133
+ class UntagResourceRequest < Struct.new(
2134
+ :resource_arn,
2135
+ :tag_keys)
2136
+ SENSITIVE = []
2137
+ include Aws::Structure
2138
+ end
2139
+
2140
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/UntagResourceResponse AWS API Documentation
2141
+ #
2142
+ class UntagResourceResponse < Aws::EmptyStructure; end
2143
+
2144
+ # @note When making an API call, you may pass UpdateMigrationWorkflowRequest
2145
+ # data as a hash:
2146
+ #
2147
+ # {
2148
+ # id: "MigrationWorkflowId", # required
2149
+ # name: "UpdateMigrationWorkflowRequestNameString",
2150
+ # description: "UpdateMigrationWorkflowRequestDescriptionString",
2151
+ # input_parameters: {
2152
+ # "StepInputParametersKey" => {
2153
+ # integer_value: 1,
2154
+ # string_value: "StringValue",
2155
+ # list_of_strings_value: ["StringListMember"],
2156
+ # map_of_string_value: {
2157
+ # "StringMapKey" => "StringMapValue",
2158
+ # },
2159
+ # },
2160
+ # },
2161
+ # step_targets: ["StringListMember"],
2162
+ # }
2163
+ #
2164
+ # @!attribute [rw] id
2165
+ # The ID of the migration workflow.
2166
+ # @return [String]
2167
+ #
2168
+ # @!attribute [rw] name
2169
+ # The name of the migration workflow.
2170
+ # @return [String]
2171
+ #
2172
+ # @!attribute [rw] description
2173
+ # The description of the migration workflow.
2174
+ # @return [String]
2175
+ #
2176
+ # @!attribute [rw] input_parameters
2177
+ # The input parameters required to update a migration workflow.
2178
+ # @return [Hash<String,Types::StepInput>]
2179
+ #
2180
+ # @!attribute [rw] step_targets
2181
+ # The servers on which a step will be run.
2182
+ # @return [Array<String>]
2183
+ #
2184
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/UpdateMigrationWorkflowRequest AWS API Documentation
2185
+ #
2186
+ class UpdateMigrationWorkflowRequest < Struct.new(
2187
+ :id,
2188
+ :name,
2189
+ :description,
2190
+ :input_parameters,
2191
+ :step_targets)
2192
+ SENSITIVE = [:input_parameters]
2193
+ include Aws::Structure
2194
+ end
2195
+
2196
+ # @!attribute [rw] id
2197
+ # The ID of the migration workflow.
2198
+ # @return [String]
2199
+ #
2200
+ # @!attribute [rw] arn
2201
+ # The Amazon Resource Name (ARN) of the migration workflow.
2202
+ # @return [String]
2203
+ #
2204
+ # @!attribute [rw] name
2205
+ # The name of the migration workflow.
2206
+ # @return [String]
2207
+ #
2208
+ # @!attribute [rw] description
2209
+ # The description of the migration workflow.
2210
+ # @return [String]
2211
+ #
2212
+ # @!attribute [rw] template_id
2213
+ # The ID of the template.
2214
+ # @return [String]
2215
+ #
2216
+ # @!attribute [rw] ads_application_configuration_id
2217
+ # The ID of the application configured in Application Discovery
2218
+ # Service.
2219
+ # @return [String]
2220
+ #
2221
+ # @!attribute [rw] workflow_inputs
2222
+ # The inputs required to update a migration workflow.
2223
+ # @return [Hash<String,Types::StepInput>]
2224
+ #
2225
+ # @!attribute [rw] step_targets
2226
+ # The servers on which a step will be run.
2227
+ # @return [Array<String>]
2228
+ #
2229
+ # @!attribute [rw] status
2230
+ # The status of the migration workflow.
2231
+ # @return [String]
2232
+ #
2233
+ # @!attribute [rw] creation_time
2234
+ # The time at which the migration workflow was created.
2235
+ # @return [Time]
2236
+ #
2237
+ # @!attribute [rw] last_modified_time
2238
+ # The time at which the migration workflow was last modified.
2239
+ # @return [Time]
2240
+ #
2241
+ # @!attribute [rw] tags
2242
+ # The tags added to the migration workflow.
2243
+ # @return [Hash<String,String>]
2244
+ #
2245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/UpdateMigrationWorkflowResponse AWS API Documentation
2246
+ #
2247
+ class UpdateMigrationWorkflowResponse < Struct.new(
2248
+ :id,
2249
+ :arn,
2250
+ :name,
2251
+ :description,
2252
+ :template_id,
2253
+ :ads_application_configuration_id,
2254
+ :workflow_inputs,
2255
+ :step_targets,
2256
+ :status,
2257
+ :creation_time,
2258
+ :last_modified_time,
2259
+ :tags)
2260
+ SENSITIVE = [:workflow_inputs]
2261
+ include Aws::Structure
2262
+ end
2263
+
2264
+ # @note When making an API call, you may pass UpdateWorkflowStepGroupRequest
2265
+ # data as a hash:
2266
+ #
2267
+ # {
2268
+ # workflow_id: "MigrationWorkflowId", # required
2269
+ # id: "StepGroupId", # required
2270
+ # name: "StepGroupName",
2271
+ # description: "StepGroupDescription",
2272
+ # next: ["StringListMember"],
2273
+ # previous: ["StringListMember"],
2274
+ # }
2275
+ #
2276
+ # @!attribute [rw] workflow_id
2277
+ # The ID of the migration workflow.
2278
+ # @return [String]
2279
+ #
2280
+ # @!attribute [rw] id
2281
+ # The ID of the step group.
2282
+ # @return [String]
2283
+ #
2284
+ # @!attribute [rw] name
2285
+ # The name of the step group.
2286
+ # @return [String]
2287
+ #
2288
+ # @!attribute [rw] description
2289
+ # The description of the step group.
2290
+ # @return [String]
2291
+ #
2292
+ # @!attribute [rw] next
2293
+ # The next step group.
2294
+ # @return [Array<String>]
2295
+ #
2296
+ # @!attribute [rw] previous
2297
+ # The previous step group.
2298
+ # @return [Array<String>]
2299
+ #
2300
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/UpdateWorkflowStepGroupRequest AWS API Documentation
2301
+ #
2302
+ class UpdateWorkflowStepGroupRequest < Struct.new(
2303
+ :workflow_id,
2304
+ :id,
2305
+ :name,
2306
+ :description,
2307
+ :next,
2308
+ :previous)
2309
+ SENSITIVE = []
2310
+ include Aws::Structure
2311
+ end
2312
+
2313
+ # @!attribute [rw] workflow_id
2314
+ # The ID of the migration workflow.
2315
+ # @return [String]
2316
+ #
2317
+ # @!attribute [rw] name
2318
+ # The name of the step group.
2319
+ # @return [String]
2320
+ #
2321
+ # @!attribute [rw] id
2322
+ # The ID of the step group.
2323
+ # @return [String]
2324
+ #
2325
+ # @!attribute [rw] description
2326
+ # The description of the step group.
2327
+ # @return [String]
2328
+ #
2329
+ # @!attribute [rw] tools
2330
+ # List of AWS services utilized in a migration workflow.
2331
+ # @return [Array<Types::Tool>]
2332
+ #
2333
+ # @!attribute [rw] next
2334
+ # The next step group.
2335
+ # @return [Array<String>]
2336
+ #
2337
+ # @!attribute [rw] previous
2338
+ # The previous step group.
2339
+ # @return [Array<String>]
2340
+ #
2341
+ # @!attribute [rw] last_modified_time
2342
+ # The time at which the step group was last modified.
2343
+ # @return [Time]
2344
+ #
2345
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/UpdateWorkflowStepGroupResponse AWS API Documentation
2346
+ #
2347
+ class UpdateWorkflowStepGroupResponse < Struct.new(
2348
+ :workflow_id,
2349
+ :name,
2350
+ :id,
2351
+ :description,
2352
+ :tools,
2353
+ :next,
2354
+ :previous,
2355
+ :last_modified_time)
2356
+ SENSITIVE = []
2357
+ include Aws::Structure
2358
+ end
2359
+
2360
+ # @note When making an API call, you may pass UpdateWorkflowStepRequest
2361
+ # data as a hash:
2362
+ #
2363
+ # {
2364
+ # id: "StepId", # required
2365
+ # step_group_id: "StepGroupId", # required
2366
+ # workflow_id: "MigrationWorkflowId", # required
2367
+ # name: "StepName",
2368
+ # description: "StepDescription",
2369
+ # step_action_type: "MANUAL", # accepts MANUAL, AUTOMATED
2370
+ # workflow_step_automation_configuration: {
2371
+ # script_location_s3_bucket: "S3Bucket",
2372
+ # script_location_s3_key: {
2373
+ # linux: "S3Key",
2374
+ # windows: "S3Key",
2375
+ # },
2376
+ # command: {
2377
+ # linux: "String",
2378
+ # windows: "String",
2379
+ # },
2380
+ # run_environment: "AWS", # accepts AWS, ONPREMISE
2381
+ # target_type: "SINGLE", # accepts SINGLE, ALL, NONE
2382
+ # },
2383
+ # step_target: ["StringListMember"],
2384
+ # outputs: [
2385
+ # {
2386
+ # name: "WorkflowStepOutputName",
2387
+ # data_type: "STRING", # accepts STRING, INTEGER, STRINGLIST, STRINGMAP
2388
+ # required: false,
2389
+ # value: {
2390
+ # integer_value: 1,
2391
+ # string_value: "StringValue",
2392
+ # list_of_string_value: ["StringListMember"],
2393
+ # },
2394
+ # },
2395
+ # ],
2396
+ # previous: ["StringListMember"],
2397
+ # next: ["StringListMember"],
2398
+ # status: "AWAITING_DEPENDENCIES", # accepts AWAITING_DEPENDENCIES, READY, IN_PROGRESS, COMPLETED, FAILED, PAUSED, USER_ATTENTION_REQUIRED
2399
+ # }
2400
+ #
2401
+ # @!attribute [rw] id
2402
+ # The ID of the step.
2403
+ # @return [String]
2404
+ #
2405
+ # @!attribute [rw] step_group_id
2406
+ # The ID of the step group.
2407
+ # @return [String]
2408
+ #
2409
+ # @!attribute [rw] workflow_id
2410
+ # The ID of the migration workflow.
2411
+ # @return [String]
2412
+ #
2413
+ # @!attribute [rw] name
2414
+ # The name of the step.
2415
+ # @return [String]
2416
+ #
2417
+ # @!attribute [rw] description
2418
+ # The description of the step.
2419
+ # @return [String]
2420
+ #
2421
+ # @!attribute [rw] step_action_type
2422
+ # The action type of the step. You must run and update the status of a
2423
+ # manual step for the workflow to continue after the completion of the
2424
+ # step.
2425
+ # @return [String]
2426
+ #
2427
+ # @!attribute [rw] workflow_step_automation_configuration
2428
+ # The custom script to run tests on the source and target
2429
+ # environments.
2430
+ # @return [Types::WorkflowStepAutomationConfiguration]
2431
+ #
2432
+ # @!attribute [rw] step_target
2433
+ # The servers on which a step will be run.
2434
+ # @return [Array<String>]
2435
+ #
2436
+ # @!attribute [rw] outputs
2437
+ # The outputs of a step.
2438
+ # @return [Array<Types::WorkflowStepOutput>]
2439
+ #
2440
+ # @!attribute [rw] previous
2441
+ # The previous step.
2442
+ # @return [Array<String>]
2443
+ #
2444
+ # @!attribute [rw] next
2445
+ # The next step.
2446
+ # @return [Array<String>]
2447
+ #
2448
+ # @!attribute [rw] status
2449
+ # The status of the step.
2450
+ # @return [String]
2451
+ #
2452
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/UpdateWorkflowStepRequest AWS API Documentation
2453
+ #
2454
+ class UpdateWorkflowStepRequest < Struct.new(
2455
+ :id,
2456
+ :step_group_id,
2457
+ :workflow_id,
2458
+ :name,
2459
+ :description,
2460
+ :step_action_type,
2461
+ :workflow_step_automation_configuration,
2462
+ :step_target,
2463
+ :outputs,
2464
+ :previous,
2465
+ :next,
2466
+ :status)
2467
+ SENSITIVE = []
2468
+ include Aws::Structure
2469
+ end
2470
+
2471
+ # @!attribute [rw] id
2472
+ # The ID of the step.
2473
+ # @return [String]
2474
+ #
2475
+ # @!attribute [rw] step_group_id
2476
+ # The ID of the step group.
2477
+ # @return [String]
2478
+ #
2479
+ # @!attribute [rw] workflow_id
2480
+ # The ID of the migration workflow.
2481
+ # @return [String]
2482
+ #
2483
+ # @!attribute [rw] name
2484
+ # The name of the step.
2485
+ # @return [String]
2486
+ #
2487
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/UpdateWorkflowStepResponse AWS API Documentation
2488
+ #
2489
+ class UpdateWorkflowStepResponse < Struct.new(
2490
+ :id,
2491
+ :step_group_id,
2492
+ :workflow_id,
2493
+ :name)
2494
+ SENSITIVE = []
2495
+ include Aws::Structure
2496
+ end
2497
+
2498
+ # The input fails to satisfy the constraints specified by an AWS
2499
+ # service.
2500
+ #
2501
+ # @!attribute [rw] message
2502
+ # @return [String]
2503
+ #
2504
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ValidationException AWS API Documentation
2505
+ #
2506
+ class ValidationException < Struct.new(
2507
+ :message)
2508
+ SENSITIVE = []
2509
+ include Aws::Structure
2510
+ end
2511
+
2512
+ # The custom script to run tests on source or target environments.
2513
+ #
2514
+ # @note When making an API call, you may pass WorkflowStepAutomationConfiguration
2515
+ # data as a hash:
2516
+ #
2517
+ # {
2518
+ # script_location_s3_bucket: "S3Bucket",
2519
+ # script_location_s3_key: {
2520
+ # linux: "S3Key",
2521
+ # windows: "S3Key",
2522
+ # },
2523
+ # command: {
2524
+ # linux: "String",
2525
+ # windows: "String",
2526
+ # },
2527
+ # run_environment: "AWS", # accepts AWS, ONPREMISE
2528
+ # target_type: "SINGLE", # accepts SINGLE, ALL, NONE
2529
+ # }
2530
+ #
2531
+ # @!attribute [rw] script_location_s3_bucket
2532
+ # The Amazon S3 bucket where the script is located.
2533
+ # @return [String]
2534
+ #
2535
+ # @!attribute [rw] script_location_s3_key
2536
+ # The Amazon S3 key for the script location.
2537
+ # @return [Types::PlatformScriptKey]
2538
+ #
2539
+ # @!attribute [rw] command
2540
+ # The command required to run the script.
2541
+ # @return [Types::PlatformCommand]
2542
+ #
2543
+ # @!attribute [rw] run_environment
2544
+ # The source or target environment.
2545
+ # @return [String]
2546
+ #
2547
+ # @!attribute [rw] target_type
2548
+ # The servers on which to run the script.
2549
+ # @return [String]
2550
+ #
2551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/WorkflowStepAutomationConfiguration AWS API Documentation
2552
+ #
2553
+ class WorkflowStepAutomationConfiguration < Struct.new(
2554
+ :script_location_s3_bucket,
2555
+ :script_location_s3_key,
2556
+ :command,
2557
+ :run_environment,
2558
+ :target_type)
2559
+ SENSITIVE = []
2560
+ include Aws::Structure
2561
+ end
2562
+
2563
+ # The summary of a step group in a workflow.
2564
+ #
2565
+ # @!attribute [rw] id
2566
+ # The ID of the step group.
2567
+ # @return [String]
2568
+ #
2569
+ # @!attribute [rw] name
2570
+ # The name of the step group.
2571
+ # @return [String]
2572
+ #
2573
+ # @!attribute [rw] owner
2574
+ # The owner of the step group.
2575
+ # @return [String]
2576
+ #
2577
+ # @!attribute [rw] status
2578
+ # The status of the step group.
2579
+ # @return [String]
2580
+ #
2581
+ # @!attribute [rw] previous
2582
+ # The previous step group.
2583
+ # @return [Array<String>]
2584
+ #
2585
+ # @!attribute [rw] next
2586
+ # The next step group.
2587
+ # @return [Array<String>]
2588
+ #
2589
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/WorkflowStepGroupSummary AWS API Documentation
2590
+ #
2591
+ class WorkflowStepGroupSummary < Struct.new(
2592
+ :id,
2593
+ :name,
2594
+ :owner,
2595
+ :status,
2596
+ :previous,
2597
+ :next)
2598
+ SENSITIVE = []
2599
+ include Aws::Structure
2600
+ end
2601
+
2602
+ # The output of a step.
2603
+ #
2604
+ # @note When making an API call, you may pass WorkflowStepOutput
2605
+ # data as a hash:
2606
+ #
2607
+ # {
2608
+ # name: "WorkflowStepOutputName",
2609
+ # data_type: "STRING", # accepts STRING, INTEGER, STRINGLIST, STRINGMAP
2610
+ # required: false,
2611
+ # value: {
2612
+ # integer_value: 1,
2613
+ # string_value: "StringValue",
2614
+ # list_of_string_value: ["StringListMember"],
2615
+ # },
2616
+ # }
2617
+ #
2618
+ # @!attribute [rw] name
2619
+ # The name of the step.
2620
+ # @return [String]
2621
+ #
2622
+ # @!attribute [rw] data_type
2623
+ # The data type of the output.
2624
+ # @return [String]
2625
+ #
2626
+ # @!attribute [rw] required
2627
+ # Determine if an output is required from a step.
2628
+ # @return [Boolean]
2629
+ #
2630
+ # @!attribute [rw] value
2631
+ # The value of the output.
2632
+ # @return [Types::WorkflowStepOutputUnion]
2633
+ #
2634
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/WorkflowStepOutput AWS API Documentation
2635
+ #
2636
+ class WorkflowStepOutput < Struct.new(
2637
+ :name,
2638
+ :data_type,
2639
+ :required,
2640
+ :value)
2641
+ SENSITIVE = []
2642
+ include Aws::Structure
2643
+ end
2644
+
2645
+ # A structure to hold multiple values of an output.
2646
+ #
2647
+ # @note WorkflowStepOutputUnion is a union - when making an API calls you must set exactly one of the members.
2648
+ #
2649
+ # @note WorkflowStepOutputUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of WorkflowStepOutputUnion corresponding to the set member.
2650
+ #
2651
+ # @!attribute [rw] integer_value
2652
+ # The integer value.
2653
+ # @return [Integer]
2654
+ #
2655
+ # @!attribute [rw] string_value
2656
+ # The string value.
2657
+ # @return [String]
2658
+ #
2659
+ # @!attribute [rw] list_of_string_value
2660
+ # The list of string value.
2661
+ # @return [Array<String>]
2662
+ #
2663
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/WorkflowStepOutputUnion AWS API Documentation
2664
+ #
2665
+ class WorkflowStepOutputUnion < Struct.new(
2666
+ :integer_value,
2667
+ :string_value,
2668
+ :list_of_string_value,
2669
+ :unknown)
2670
+ SENSITIVE = []
2671
+ include Aws::Structure
2672
+ include Aws::Structure::Union
2673
+
2674
+ class IntegerValue < WorkflowStepOutputUnion; end
2675
+ class StringValue < WorkflowStepOutputUnion; end
2676
+ class ListOfStringValue < WorkflowStepOutputUnion; end
2677
+ class Unknown < WorkflowStepOutputUnion; end
2678
+ end
2679
+
2680
+ # The summary of the step in a migration workflow.
2681
+ #
2682
+ # @!attribute [rw] step_id
2683
+ # The ID of the step.
2684
+ # @return [String]
2685
+ #
2686
+ # @!attribute [rw] name
2687
+ # The name of the step.
2688
+ # @return [String]
2689
+ #
2690
+ # @!attribute [rw] step_action_type
2691
+ # The action type of the step. You must run and update the status of a
2692
+ # manual step for the workflow to continue after the completion of the
2693
+ # step.
2694
+ # @return [String]
2695
+ #
2696
+ # @!attribute [rw] owner
2697
+ # The owner of the step.
2698
+ # @return [String]
2699
+ #
2700
+ # @!attribute [rw] previous
2701
+ # The previous step.
2702
+ # @return [Array<String>]
2703
+ #
2704
+ # @!attribute [rw] next
2705
+ # The next step.
2706
+ # @return [Array<String>]
2707
+ #
2708
+ # @!attribute [rw] status
2709
+ # The status of the step.
2710
+ # @return [String]
2711
+ #
2712
+ # @!attribute [rw] status_message
2713
+ # The status message of the migration workflow.
2714
+ # @return [String]
2715
+ #
2716
+ # @!attribute [rw] no_of_srv_completed
2717
+ # The number of servers that have been migrated.
2718
+ # @return [Integer]
2719
+ #
2720
+ # @!attribute [rw] no_of_srv_failed
2721
+ # The number of servers that have failed to migrate.
2722
+ # @return [Integer]
2723
+ #
2724
+ # @!attribute [rw] total_no_of_srv
2725
+ # The total number of servers that have been migrated.
2726
+ # @return [Integer]
2727
+ #
2728
+ # @!attribute [rw] description
2729
+ # The description of the step.
2730
+ # @return [String]
2731
+ #
2732
+ # @!attribute [rw] script_location
2733
+ # The location of the script.
2734
+ # @return [String]
2735
+ #
2736
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/WorkflowStepSummary AWS API Documentation
2737
+ #
2738
+ class WorkflowStepSummary < Struct.new(
2739
+ :step_id,
2740
+ :name,
2741
+ :step_action_type,
2742
+ :owner,
2743
+ :previous,
2744
+ :next,
2745
+ :status,
2746
+ :status_message,
2747
+ :no_of_srv_completed,
2748
+ :no_of_srv_failed,
2749
+ :total_no_of_srv,
2750
+ :description,
2751
+ :script_location)
2752
+ SENSITIVE = []
2753
+ include Aws::Structure
2754
+ end
2755
+
2756
+ end
2757
+ end