aws-sdk-launchwizard 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,655 @@
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::LaunchWizard
11
+ module Types
12
+
13
+ # @!attribute [rw] deployment_pattern_name
14
+ # The name of the deployment pattern supported by a given workload.
15
+ # You can use the [ `ListWorkloadDeploymentPatterns` ][1] operation to
16
+ # discover supported values for this parameter.
17
+ #
18
+ #
19
+ #
20
+ # [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html
21
+ # @return [String]
22
+ #
23
+ # @!attribute [rw] dry_run
24
+ # Checks whether you have the required permissions for the action,
25
+ # without actually making the request, and provides an error response.
26
+ # If you have the required permissions, the error response is
27
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
28
+ # @return [Boolean]
29
+ #
30
+ # @!attribute [rw] name
31
+ # The name of the deployment.
32
+ # @return [String]
33
+ #
34
+ # @!attribute [rw] specifications
35
+ # The settings specified for the deployment. For more information on
36
+ # the specifications required for creating a deployment, see [Workload
37
+ # specifications][1].
38
+ #
39
+ #
40
+ #
41
+ # [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications.html
42
+ # @return [Hash<String,String>]
43
+ #
44
+ # @!attribute [rw] workload_name
45
+ # The name of the workload. You can use the [
46
+ # `ListWorkloadDeploymentPatterns` ][1] operation to discover
47
+ # supported values for this parameter.
48
+ #
49
+ #
50
+ #
51
+ # [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html
52
+ # @return [String]
53
+ #
54
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/CreateDeploymentInput AWS API Documentation
55
+ #
56
+ class CreateDeploymentInput < Struct.new(
57
+ :deployment_pattern_name,
58
+ :dry_run,
59
+ :name,
60
+ :specifications,
61
+ :workload_name)
62
+ SENSITIVE = [:specifications]
63
+ include Aws::Structure
64
+ end
65
+
66
+ # @!attribute [rw] deployment_id
67
+ # The ID of the deployment.
68
+ # @return [String]
69
+ #
70
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/CreateDeploymentOutput AWS API Documentation
71
+ #
72
+ class CreateDeploymentOutput < Struct.new(
73
+ :deployment_id)
74
+ SENSITIVE = []
75
+ include Aws::Structure
76
+ end
77
+
78
+ # @!attribute [rw] deployment_id
79
+ # The ID of the deployment.
80
+ # @return [String]
81
+ #
82
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeleteDeploymentInput AWS API Documentation
83
+ #
84
+ class DeleteDeploymentInput < Struct.new(
85
+ :deployment_id)
86
+ SENSITIVE = []
87
+ include Aws::Structure
88
+ end
89
+
90
+ # @!attribute [rw] status
91
+ # The status of the deployment.
92
+ # @return [String]
93
+ #
94
+ # @!attribute [rw] status_reason
95
+ # The reason for the deployment status.
96
+ # @return [String]
97
+ #
98
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeleteDeploymentOutput AWS API Documentation
99
+ #
100
+ class DeleteDeploymentOutput < Struct.new(
101
+ :status,
102
+ :status_reason)
103
+ SENSITIVE = []
104
+ include Aws::Structure
105
+ end
106
+
107
+ # The data associated with a deployment.
108
+ #
109
+ # @!attribute [rw] created_at
110
+ # The time the deployment was created.
111
+ # @return [Time]
112
+ #
113
+ # @!attribute [rw] deleted_at
114
+ # The time the deployment was deleted.
115
+ # @return [Time]
116
+ #
117
+ # @!attribute [rw] id
118
+ # The ID of the deployment.
119
+ # @return [String]
120
+ #
121
+ # @!attribute [rw] name
122
+ # The name of the deployment.
123
+ # @return [String]
124
+ #
125
+ # @!attribute [rw] pattern_name
126
+ # The pattern name of the deployment.
127
+ # @return [String]
128
+ #
129
+ # @!attribute [rw] resource_group
130
+ # The resource group of the deployment.
131
+ # @return [String]
132
+ #
133
+ # @!attribute [rw] specifications
134
+ # The specifications of the deployment. For more information on
135
+ # specifications for each deployment, see [Workload
136
+ # specifications][1].
137
+ #
138
+ #
139
+ #
140
+ # [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications.html
141
+ # @return [Hash<String,String>]
142
+ #
143
+ # @!attribute [rw] status
144
+ # The status of the deployment.
145
+ # @return [String]
146
+ #
147
+ # @!attribute [rw] workload_name
148
+ # The name of the workload.
149
+ # @return [String]
150
+ #
151
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentData AWS API Documentation
152
+ #
153
+ class DeploymentData < Struct.new(
154
+ :created_at,
155
+ :deleted_at,
156
+ :id,
157
+ :name,
158
+ :pattern_name,
159
+ :resource_group,
160
+ :specifications,
161
+ :status,
162
+ :workload_name)
163
+ SENSITIVE = [:specifications]
164
+ include Aws::Structure
165
+ end
166
+
167
+ # A summary of the deployment data.
168
+ #
169
+ # @!attribute [rw] created_at
170
+ # The time the deployment was created.
171
+ # @return [Time]
172
+ #
173
+ # @!attribute [rw] id
174
+ # The ID of the deployment.
175
+ # @return [String]
176
+ #
177
+ # @!attribute [rw] name
178
+ # The name of the deployment
179
+ # @return [String]
180
+ #
181
+ # @!attribute [rw] pattern_name
182
+ # The name of the workload deployment pattern.
183
+ # @return [String]
184
+ #
185
+ # @!attribute [rw] status
186
+ # The status of the deployment.
187
+ # @return [String]
188
+ #
189
+ # @!attribute [rw] workload_name
190
+ # The name of the workload.
191
+ # @return [String]
192
+ #
193
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentDataSummary AWS API Documentation
194
+ #
195
+ class DeploymentDataSummary < Struct.new(
196
+ :created_at,
197
+ :id,
198
+ :name,
199
+ :pattern_name,
200
+ :status,
201
+ :workload_name)
202
+ SENSITIVE = []
203
+ include Aws::Structure
204
+ end
205
+
206
+ # A summary of the deployment event data.
207
+ #
208
+ # @!attribute [rw] description
209
+ # The description of the deployment event.
210
+ # @return [String]
211
+ #
212
+ # @!attribute [rw] name
213
+ # The name of the deployment event.
214
+ # @return [String]
215
+ #
216
+ # @!attribute [rw] status
217
+ # The status of the deployment event.
218
+ # @return [String]
219
+ #
220
+ # @!attribute [rw] status_reason
221
+ # The reason of the deployment event status.
222
+ # @return [String]
223
+ #
224
+ # @!attribute [rw] timestamp
225
+ # The timestamp of the deployment event.
226
+ # @return [Time]
227
+ #
228
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentEventDataSummary AWS API Documentation
229
+ #
230
+ class DeploymentEventDataSummary < Struct.new(
231
+ :description,
232
+ :name,
233
+ :status,
234
+ :status_reason,
235
+ :timestamp)
236
+ SENSITIVE = []
237
+ include Aws::Structure
238
+ end
239
+
240
+ # A filter name and value pair that is used to return more specific
241
+ # results from a describe operation. Filters can be used to match a set
242
+ # of resources by specific criteria.
243
+ #
244
+ # @!attribute [rw] name
245
+ # The name of the filter. Filter names are case-sensitive.
246
+ # @return [String]
247
+ #
248
+ # @!attribute [rw] values
249
+ # The filter values. Filter values are case-sensitive. If you specify
250
+ # multiple values for a filter, the values are joined with an `OR`,
251
+ # and the request returns all results that match any of the specified
252
+ # values.
253
+ # @return [Array<String>]
254
+ #
255
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentFilter AWS API Documentation
256
+ #
257
+ class DeploymentFilter < Struct.new(
258
+ :name,
259
+ :values)
260
+ SENSITIVE = []
261
+ include Aws::Structure
262
+ end
263
+
264
+ # @!attribute [rw] deployment_id
265
+ # The ID of the deployment.
266
+ # @return [String]
267
+ #
268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/GetDeploymentInput AWS API Documentation
269
+ #
270
+ class GetDeploymentInput < Struct.new(
271
+ :deployment_id)
272
+ SENSITIVE = []
273
+ include Aws::Structure
274
+ end
275
+
276
+ # @!attribute [rw] deployment
277
+ # An object that details the deployment.
278
+ # @return [Types::DeploymentData]
279
+ #
280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/GetDeploymentOutput AWS API Documentation
281
+ #
282
+ class GetDeploymentOutput < Struct.new(
283
+ :deployment)
284
+ SENSITIVE = []
285
+ include Aws::Structure
286
+ end
287
+
288
+ # @!attribute [rw] workload_name
289
+ # The name of the workload.
290
+ # @return [String]
291
+ #
292
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/GetWorkloadInput AWS API Documentation
293
+ #
294
+ class GetWorkloadInput < Struct.new(
295
+ :workload_name)
296
+ SENSITIVE = []
297
+ include Aws::Structure
298
+ end
299
+
300
+ # @!attribute [rw] workload
301
+ # Information about the workload.
302
+ # @return [Types::WorkloadData]
303
+ #
304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/GetWorkloadOutput AWS API Documentation
305
+ #
306
+ class GetWorkloadOutput < Struct.new(
307
+ :workload)
308
+ SENSITIVE = []
309
+ include Aws::Structure
310
+ end
311
+
312
+ # An internal error has occurred. Retry your request, but if the problem
313
+ # persists, contact us with details by posting a question on
314
+ # [re:Post][1].
315
+ #
316
+ #
317
+ #
318
+ # [1]: https://repost.aws/
319
+ #
320
+ # @!attribute [rw] message
321
+ # @return [String]
322
+ #
323
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/InternalServerException AWS API Documentation
324
+ #
325
+ class InternalServerException < Struct.new(
326
+ :message)
327
+ SENSITIVE = []
328
+ include Aws::Structure
329
+ end
330
+
331
+ # @!attribute [rw] deployment_id
332
+ # The ID of the deployment.
333
+ # @return [String]
334
+ #
335
+ # @!attribute [rw] max_results
336
+ # The maximum number of items to return for this request. To get the
337
+ # next page of items, make another request with the token returned in
338
+ # the output.
339
+ # @return [Integer]
340
+ #
341
+ # @!attribute [rw] next_token
342
+ # The token returned from a previous paginated request. Pagination
343
+ # continues from the end of the items returned by the previous
344
+ # request.
345
+ # @return [String]
346
+ #
347
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListDeploymentEventsInput AWS API Documentation
348
+ #
349
+ class ListDeploymentEventsInput < Struct.new(
350
+ :deployment_id,
351
+ :max_results,
352
+ :next_token)
353
+ SENSITIVE = []
354
+ include Aws::Structure
355
+ end
356
+
357
+ # @!attribute [rw] deployment_events
358
+ # Lists the deployment events.
359
+ # @return [Array<Types::DeploymentEventDataSummary>]
360
+ #
361
+ # @!attribute [rw] next_token
362
+ # The token to include in another request to get the next page of
363
+ # items. This value is `null` when there are no more items to return.
364
+ # @return [String]
365
+ #
366
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListDeploymentEventsOutput AWS API Documentation
367
+ #
368
+ class ListDeploymentEventsOutput < Struct.new(
369
+ :deployment_events,
370
+ :next_token)
371
+ SENSITIVE = []
372
+ include Aws::Structure
373
+ end
374
+
375
+ # @!attribute [rw] filters
376
+ # Filters to scope the results. The following filters are supported:
377
+ #
378
+ # * `WORKLOAD_NAME`
379
+ #
380
+ # * `DEPLOYMENT_STATUS`
381
+ # @return [Array<Types::DeploymentFilter>]
382
+ #
383
+ # @!attribute [rw] max_results
384
+ # The maximum number of items to return for this request. To get the
385
+ # next page of items, make another request with the token returned in
386
+ # the output.
387
+ # @return [Integer]
388
+ #
389
+ # @!attribute [rw] next_token
390
+ # The token returned from a previous paginated request. Pagination
391
+ # continues from the end of the items returned by the previous
392
+ # request.
393
+ # @return [String]
394
+ #
395
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListDeploymentsInput AWS API Documentation
396
+ #
397
+ class ListDeploymentsInput < Struct.new(
398
+ :filters,
399
+ :max_results,
400
+ :next_token)
401
+ SENSITIVE = []
402
+ include Aws::Structure
403
+ end
404
+
405
+ # @!attribute [rw] deployments
406
+ # Lists the deployments.
407
+ # @return [Array<Types::DeploymentDataSummary>]
408
+ #
409
+ # @!attribute [rw] next_token
410
+ # The token to include in another request to get the next page of
411
+ # items. This value is `null` when there are no more items to return.
412
+ # @return [String]
413
+ #
414
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListDeploymentsOutput AWS API Documentation
415
+ #
416
+ class ListDeploymentsOutput < Struct.new(
417
+ :deployments,
418
+ :next_token)
419
+ SENSITIVE = []
420
+ include Aws::Structure
421
+ end
422
+
423
+ # @!attribute [rw] max_results
424
+ # The maximum number of items to return for this request. To get the
425
+ # next page of items, make another request with the token returned in
426
+ # the output.
427
+ # @return [Integer]
428
+ #
429
+ # @!attribute [rw] next_token
430
+ # The token returned from a previous paginated request. Pagination
431
+ # continues from the end of the items returned by the previous
432
+ # request.
433
+ # @return [String]
434
+ #
435
+ # @!attribute [rw] workload_name
436
+ # The name of the workload.
437
+ # @return [String]
438
+ #
439
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListWorkloadDeploymentPatternsInput AWS API Documentation
440
+ #
441
+ class ListWorkloadDeploymentPatternsInput < Struct.new(
442
+ :max_results,
443
+ :next_token,
444
+ :workload_name)
445
+ SENSITIVE = []
446
+ include Aws::Structure
447
+ end
448
+
449
+ # @!attribute [rw] next_token
450
+ # The token to include in another request to get the next page of
451
+ # items. This value is `null` when there are no more items to return.
452
+ # @return [String]
453
+ #
454
+ # @!attribute [rw] workload_deployment_patterns
455
+ # Describes the workload deployment patterns.
456
+ # @return [Array<Types::WorkloadDeploymentPatternDataSummary>]
457
+ #
458
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListWorkloadDeploymentPatternsOutput AWS API Documentation
459
+ #
460
+ class ListWorkloadDeploymentPatternsOutput < Struct.new(
461
+ :next_token,
462
+ :workload_deployment_patterns)
463
+ SENSITIVE = []
464
+ include Aws::Structure
465
+ end
466
+
467
+ # @!attribute [rw] max_results
468
+ # The maximum number of items to return for this request. To get the
469
+ # next page of items, make another request with the token returned in
470
+ # the output.
471
+ # @return [Integer]
472
+ #
473
+ # @!attribute [rw] next_token
474
+ # The token returned from a previous paginated request. Pagination
475
+ # continues from the end of the items returned by the previous
476
+ # request.
477
+ # @return [String]
478
+ #
479
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListWorkloadsInput AWS API Documentation
480
+ #
481
+ class ListWorkloadsInput < Struct.new(
482
+ :max_results,
483
+ :next_token)
484
+ SENSITIVE = []
485
+ include Aws::Structure
486
+ end
487
+
488
+ # @!attribute [rw] next_token
489
+ # The token to include in another request to get the next page of
490
+ # items. This value is `null` when there are no more items to return.
491
+ # @return [String]
492
+ #
493
+ # @!attribute [rw] workloads
494
+ # Information about the workloads.
495
+ # @return [Array<Types::WorkloadDataSummary>]
496
+ #
497
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListWorkloadsOutput AWS API Documentation
498
+ #
499
+ class ListWorkloadsOutput < Struct.new(
500
+ :next_token,
501
+ :workloads)
502
+ SENSITIVE = []
503
+ include Aws::Structure
504
+ end
505
+
506
+ # You have exceeded an Launch Wizard resource limit. For example, you
507
+ # might have too many deployments in progress.
508
+ #
509
+ # @!attribute [rw] message
510
+ # @return [String]
511
+ #
512
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ResourceLimitException AWS API Documentation
513
+ #
514
+ class ResourceLimitException < Struct.new(
515
+ :message)
516
+ SENSITIVE = []
517
+ include Aws::Structure
518
+ end
519
+
520
+ # The specified workload or deployment resource can't be found.
521
+ #
522
+ # @!attribute [rw] message
523
+ # @return [String]
524
+ #
525
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ResourceNotFoundException AWS API Documentation
526
+ #
527
+ class ResourceNotFoundException < Struct.new(
528
+ :message)
529
+ SENSITIVE = []
530
+ include Aws::Structure
531
+ end
532
+
533
+ # The input fails to satisfy the constraints specified by an Amazon Web
534
+ # Services service.
535
+ #
536
+ # @!attribute [rw] message
537
+ # @return [String]
538
+ #
539
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ValidationException AWS API Documentation
540
+ #
541
+ class ValidationException < Struct.new(
542
+ :message)
543
+ SENSITIVE = []
544
+ include Aws::Structure
545
+ end
546
+
547
+ # Describes a workload.
548
+ #
549
+ # @!attribute [rw] description
550
+ # The description of a workload.
551
+ # @return [String]
552
+ #
553
+ # @!attribute [rw] display_name
554
+ # The display name of a workload.
555
+ # @return [String]
556
+ #
557
+ # @!attribute [rw] documentation_url
558
+ # The URL of a workload document.
559
+ # @return [String]
560
+ #
561
+ # @!attribute [rw] icon_url
562
+ # The URL of a workload icon.
563
+ # @return [String]
564
+ #
565
+ # @!attribute [rw] status
566
+ # The status of a workload.
567
+ # @return [String]
568
+ #
569
+ # @!attribute [rw] status_message
570
+ # The message about a workload's status.
571
+ # @return [String]
572
+ #
573
+ # @!attribute [rw] workload_name
574
+ # The name of the workload.
575
+ # @return [String]
576
+ #
577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/WorkloadData AWS API Documentation
578
+ #
579
+ class WorkloadData < Struct.new(
580
+ :description,
581
+ :display_name,
582
+ :documentation_url,
583
+ :icon_url,
584
+ :status,
585
+ :status_message,
586
+ :workload_name)
587
+ SENSITIVE = []
588
+ include Aws::Structure
589
+ end
590
+
591
+ # Describes workload data.
592
+ #
593
+ # @!attribute [rw] display_name
594
+ # The display name of the workload data.
595
+ # @return [String]
596
+ #
597
+ # @!attribute [rw] workload_name
598
+ # The name of the workload.
599
+ # @return [String]
600
+ #
601
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/WorkloadDataSummary AWS API Documentation
602
+ #
603
+ class WorkloadDataSummary < Struct.new(
604
+ :display_name,
605
+ :workload_name)
606
+ SENSITIVE = []
607
+ include Aws::Structure
608
+ end
609
+
610
+ # Describes a workload deployment pattern.
611
+ #
612
+ # @!attribute [rw] deployment_pattern_name
613
+ # The name of a workload deployment pattern.
614
+ # @return [String]
615
+ #
616
+ # @!attribute [rw] description
617
+ # The description of a workload deployment pattern.
618
+ # @return [String]
619
+ #
620
+ # @!attribute [rw] display_name
621
+ # The display name of a workload deployment pattern.
622
+ # @return [String]
623
+ #
624
+ # @!attribute [rw] status
625
+ # The status of a workload deployment pattern.
626
+ # @return [String]
627
+ #
628
+ # @!attribute [rw] status_message
629
+ # A message about a workload deployment pattern's status.
630
+ # @return [String]
631
+ #
632
+ # @!attribute [rw] workload_name
633
+ # The name of the workload.
634
+ # @return [String]
635
+ #
636
+ # @!attribute [rw] workload_version_name
637
+ # The name of the workload deployment pattern version.
638
+ # @return [String]
639
+ #
640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/WorkloadDeploymentPatternDataSummary AWS API Documentation
641
+ #
642
+ class WorkloadDeploymentPatternDataSummary < Struct.new(
643
+ :deployment_pattern_name,
644
+ :description,
645
+ :display_name,
646
+ :status,
647
+ :status_message,
648
+ :workload_name,
649
+ :workload_version_name)
650
+ SENSITIVE = []
651
+ include Aws::Structure
652
+ end
653
+
654
+ end
655
+ end
@@ -0,0 +1,57 @@
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
+
11
+ require 'aws-sdk-core'
12
+ require 'aws-sigv4'
13
+
14
+ require_relative 'aws-sdk-launchwizard/types'
15
+ require_relative 'aws-sdk-launchwizard/client_api'
16
+ require_relative 'aws-sdk-launchwizard/plugins/endpoints.rb'
17
+ require_relative 'aws-sdk-launchwizard/client'
18
+ require_relative 'aws-sdk-launchwizard/errors'
19
+ require_relative 'aws-sdk-launchwizard/resource'
20
+ require_relative 'aws-sdk-launchwizard/endpoint_parameters'
21
+ require_relative 'aws-sdk-launchwizard/endpoint_provider'
22
+ require_relative 'aws-sdk-launchwizard/endpoints'
23
+ require_relative 'aws-sdk-launchwizard/customizations'
24
+
25
+ # This module provides support for AWS Launch Wizard. This module is available in the
26
+ # `aws-sdk-launchwizard` gem.
27
+ #
28
+ # # Client
29
+ #
30
+ # The {Client} class provides one method for each API operation. Operation
31
+ # methods each accept a hash of request parameters and return a response
32
+ # structure.
33
+ #
34
+ # launch_wizard = Aws::LaunchWizard::Client.new
35
+ # resp = launch_wizard.create_deployment(params)
36
+ #
37
+ # See {Client} for more information.
38
+ #
39
+ # # Errors
40
+ #
41
+ # Errors returned from AWS Launch Wizard are defined in the
42
+ # {Errors} module and all extend {Errors::ServiceError}.
43
+ #
44
+ # begin
45
+ # # do stuff
46
+ # rescue Aws::LaunchWizard::Errors::ServiceError
47
+ # # rescues all AWS Launch Wizard API errors
48
+ # end
49
+ #
50
+ # See {Errors} for more information.
51
+ #
52
+ # @!group service
53
+ module Aws::LaunchWizard
54
+
55
+ GEM_VERSION = '1.0.0'
56
+
57
+ end