-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy pathgen_inits.go
552 lines (541 loc) · 24 KB
/
gen_inits.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
/* Copyright 2017 WALLIX
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// DO NOT EDIT
// This file was automatically generated with go generate
package awsspec
import (
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/awstesting/mock"
"github.com/wallix/awless/cloud"
"github.com/wallix/awless/logger"
)
type Factory interface {
Build(key string) func() interface{}
}
var CommandFactory Factory
var MockAWSSessionFactory = &AWSFactory{
Log: logger.DiscardLogger,
Sess: mock.Session,
}
type AWSFactory struct {
Log *logger.Logger
Sess *session.Session
Graph cloud.GraphAPI
}
func (f *AWSFactory) Build(key string) func() interface{} {
switch key {
case "attachalarm":
return func() interface{} { return NewAttachAlarm(f.Sess, f.Graph, f.Log) }
case "attachclassicloadbalancer":
return func() interface{} { return NewAttachClassicLoadbalancer(f.Sess, f.Graph, f.Log) }
case "attachcontainertask":
return func() interface{} { return NewAttachContainertask(f.Sess, f.Graph, f.Log) }
case "attachelasticip":
return func() interface{} { return NewAttachElasticip(f.Sess, f.Graph, f.Log) }
case "attachinstance":
return func() interface{} { return NewAttachInstance(f.Sess, f.Graph, f.Log) }
case "attachinstanceprofile":
return func() interface{} { return NewAttachInstanceprofile(f.Sess, f.Graph, f.Log) }
case "attachinternetgateway":
return func() interface{} { return NewAttachInternetgateway(f.Sess, f.Graph, f.Log) }
case "attachlistener":
return func() interface{} { return NewAttachListener(f.Sess, f.Graph, f.Log) }
case "attachmfadevice":
return func() interface{} { return NewAttachMfadevice(f.Sess, f.Graph, f.Log) }
case "attachnetworkinterface":
return func() interface{} { return NewAttachNetworkinterface(f.Sess, f.Graph, f.Log) }
case "attachpolicy":
return func() interface{} { return NewAttachPolicy(f.Sess, f.Graph, f.Log) }
case "attachrole":
return func() interface{} { return NewAttachRole(f.Sess, f.Graph, f.Log) }
case "attachroutetable":
return func() interface{} { return NewAttachRoutetable(f.Sess, f.Graph, f.Log) }
case "attachsecuritygroup":
return func() interface{} { return NewAttachSecuritygroup(f.Sess, f.Graph, f.Log) }
case "attachuser":
return func() interface{} { return NewAttachUser(f.Sess, f.Graph, f.Log) }
case "attachvolume":
return func() interface{} { return NewAttachVolume(f.Sess, f.Graph, f.Log) }
case "authenticateregistry":
return func() interface{} { return NewAuthenticateRegistry(f.Sess, f.Graph, f.Log) }
case "checkcertificate":
return func() interface{} { return NewCheckCertificate(f.Sess, f.Graph, f.Log) }
case "checkdatabase":
return func() interface{} { return NewCheckDatabase(f.Sess, f.Graph, f.Log) }
case "checkdistribution":
return func() interface{} { return NewCheckDistribution(f.Sess, f.Graph, f.Log) }
case "checkinstance":
return func() interface{} { return NewCheckInstance(f.Sess, f.Graph, f.Log) }
case "checkloadbalancer":
return func() interface{} { return NewCheckLoadbalancer(f.Sess, f.Graph, f.Log) }
case "checknatgateway":
return func() interface{} { return NewCheckNatgateway(f.Sess, f.Graph, f.Log) }
case "checknetworkinterface":
return func() interface{} { return NewCheckNetworkinterface(f.Sess, f.Graph, f.Log) }
case "checkscalinggroup":
return func() interface{} { return NewCheckScalinggroup(f.Sess, f.Graph, f.Log) }
case "checksecuritygroup":
return func() interface{} { return NewCheckSecuritygroup(f.Sess, f.Graph, f.Log) }
case "checkvolume":
return func() interface{} { return NewCheckVolume(f.Sess, f.Graph, f.Log) }
case "copyimage":
return func() interface{} { return NewCopyImage(f.Sess, f.Graph, f.Log) }
case "copysnapshot":
return func() interface{} { return NewCopySnapshot(f.Sess, f.Graph, f.Log) }
case "createaccesskey":
return func() interface{} { return NewCreateAccesskey(f.Sess, f.Graph, f.Log) }
case "createalarm":
return func() interface{} { return NewCreateAlarm(f.Sess, f.Graph, f.Log) }
case "createappscalingpolicy":
return func() interface{} { return NewCreateAppscalingpolicy(f.Sess, f.Graph, f.Log) }
case "createappscalingtarget":
return func() interface{} { return NewCreateAppscalingtarget(f.Sess, f.Graph, f.Log) }
case "createbucket":
return func() interface{} { return NewCreateBucket(f.Sess, f.Graph, f.Log) }
case "createcertificate":
return func() interface{} { return NewCreateCertificate(f.Sess, f.Graph, f.Log) }
case "createclassicloadbalancer":
return func() interface{} { return NewCreateClassicLoadbalancer(f.Sess, f.Graph, f.Log) }
case "createcontainercluster":
return func() interface{} { return NewCreateContainercluster(f.Sess, f.Graph, f.Log) }
case "createdatabase":
return func() interface{} { return NewCreateDatabase(f.Sess, f.Graph, f.Log) }
case "createdbsubnetgroup":
return func() interface{} { return NewCreateDbsubnetgroup(f.Sess, f.Graph, f.Log) }
case "createdistribution":
return func() interface{} { return NewCreateDistribution(f.Sess, f.Graph, f.Log) }
case "createelasticip":
return func() interface{} { return NewCreateElasticip(f.Sess, f.Graph, f.Log) }
case "createfunction":
return func() interface{} { return NewCreateFunction(f.Sess, f.Graph, f.Log) }
case "creategroup":
return func() interface{} { return NewCreateGroup(f.Sess, f.Graph, f.Log) }
case "createimage":
return func() interface{} { return NewCreateImage(f.Sess, f.Graph, f.Log) }
case "createinstance":
return func() interface{} { return NewCreateInstance(f.Sess, f.Graph, f.Log) }
case "createinstanceprofile":
return func() interface{} { return NewCreateInstanceprofile(f.Sess, f.Graph, f.Log) }
case "createinternetgateway":
return func() interface{} { return NewCreateInternetgateway(f.Sess, f.Graph, f.Log) }
case "createkeypair":
return func() interface{} { return NewCreateKeypair(f.Sess, f.Graph, f.Log) }
case "createlaunchconfiguration":
return func() interface{} { return NewCreateLaunchconfiguration(f.Sess, f.Graph, f.Log) }
case "createlistener":
return func() interface{} { return NewCreateListener(f.Sess, f.Graph, f.Log) }
case "createloadbalancer":
return func() interface{} { return NewCreateLoadbalancer(f.Sess, f.Graph, f.Log) }
case "createloginprofile":
return func() interface{} { return NewCreateLoginprofile(f.Sess, f.Graph, f.Log) }
case "createmfadevice":
return func() interface{} { return NewCreateMfadevice(f.Sess, f.Graph, f.Log) }
case "createnatgateway":
return func() interface{} { return NewCreateNatgateway(f.Sess, f.Graph, f.Log) }
case "createnetworkinterface":
return func() interface{} { return NewCreateNetworkinterface(f.Sess, f.Graph, f.Log) }
case "createpolicy":
return func() interface{} { return NewCreatePolicy(f.Sess, f.Graph, f.Log) }
case "createqueue":
return func() interface{} { return NewCreateQueue(f.Sess, f.Graph, f.Log) }
case "createrecord":
return func() interface{} { return NewCreateRecord(f.Sess, f.Graph, f.Log) }
case "createrepository":
return func() interface{} { return NewCreateRepository(f.Sess, f.Graph, f.Log) }
case "createrole":
return func() interface{} { return NewCreateRole(f.Sess, f.Graph, f.Log) }
case "createroute":
return func() interface{} { return NewCreateRoute(f.Sess, f.Graph, f.Log) }
case "createroutetable":
return func() interface{} { return NewCreateRoutetable(f.Sess, f.Graph, f.Log) }
case "creates3object":
return func() interface{} { return NewCreateS3object(f.Sess, f.Graph, f.Log) }
case "createscalinggroup":
return func() interface{} { return NewCreateScalinggroup(f.Sess, f.Graph, f.Log) }
case "createscalingpolicy":
return func() interface{} { return NewCreateScalingpolicy(f.Sess, f.Graph, f.Log) }
case "createsecuritygroup":
return func() interface{} { return NewCreateSecuritygroup(f.Sess, f.Graph, f.Log) }
case "createsnapshot":
return func() interface{} { return NewCreateSnapshot(f.Sess, f.Graph, f.Log) }
case "createstack":
return func() interface{} { return NewCreateStack(f.Sess, f.Graph, f.Log) }
case "createsubnet":
return func() interface{} { return NewCreateSubnet(f.Sess, f.Graph, f.Log) }
case "createsubscription":
return func() interface{} { return NewCreateSubscription(f.Sess, f.Graph, f.Log) }
case "createtag":
return func() interface{} { return NewCreateTag(f.Sess, f.Graph, f.Log) }
case "createtargetgroup":
return func() interface{} { return NewCreateTargetgroup(f.Sess, f.Graph, f.Log) }
case "createtopic":
return func() interface{} { return NewCreateTopic(f.Sess, f.Graph, f.Log) }
case "createuser":
return func() interface{} { return NewCreateUser(f.Sess, f.Graph, f.Log) }
case "createvolume":
return func() interface{} { return NewCreateVolume(f.Sess, f.Graph, f.Log) }
case "createvpc":
return func() interface{} { return NewCreateVpc(f.Sess, f.Graph, f.Log) }
case "createzone":
return func() interface{} { return NewCreateZone(f.Sess, f.Graph, f.Log) }
case "deleteaccesskey":
return func() interface{} { return NewDeleteAccesskey(f.Sess, f.Graph, f.Log) }
case "deletealarm":
return func() interface{} { return NewDeleteAlarm(f.Sess, f.Graph, f.Log) }
case "deleteappscalingpolicy":
return func() interface{} { return NewDeleteAppscalingpolicy(f.Sess, f.Graph, f.Log) }
case "deleteappscalingtarget":
return func() interface{} { return NewDeleteAppscalingtarget(f.Sess, f.Graph, f.Log) }
case "deletebucket":
return func() interface{} { return NewDeleteBucket(f.Sess, f.Graph, f.Log) }
case "deletecertificate":
return func() interface{} { return NewDeleteCertificate(f.Sess, f.Graph, f.Log) }
case "deleteclassicloadbalancer":
return func() interface{} { return NewDeleteClassicLoadbalancer(f.Sess, f.Graph, f.Log) }
case "deletecontainercluster":
return func() interface{} { return NewDeleteContainercluster(f.Sess, f.Graph, f.Log) }
case "deletecontainertask":
return func() interface{} { return NewDeleteContainertask(f.Sess, f.Graph, f.Log) }
case "deletedatabase":
return func() interface{} { return NewDeleteDatabase(f.Sess, f.Graph, f.Log) }
case "deletedbsubnetgroup":
return func() interface{} { return NewDeleteDbsubnetgroup(f.Sess, f.Graph, f.Log) }
case "deletedistribution":
return func() interface{} { return NewDeleteDistribution(f.Sess, f.Graph, f.Log) }
case "deleteelasticip":
return func() interface{} { return NewDeleteElasticip(f.Sess, f.Graph, f.Log) }
case "deletefunction":
return func() interface{} { return NewDeleteFunction(f.Sess, f.Graph, f.Log) }
case "deletegroup":
return func() interface{} { return NewDeleteGroup(f.Sess, f.Graph, f.Log) }
case "deleteimage":
return func() interface{} { return NewDeleteImage(f.Sess, f.Graph, f.Log) }
case "deleteinstance":
return func() interface{} { return NewDeleteInstance(f.Sess, f.Graph, f.Log) }
case "deleteinstanceprofile":
return func() interface{} { return NewDeleteInstanceprofile(f.Sess, f.Graph, f.Log) }
case "deleteinternetgateway":
return func() interface{} { return NewDeleteInternetgateway(f.Sess, f.Graph, f.Log) }
case "deletekeypair":
return func() interface{} { return NewDeleteKeypair(f.Sess, f.Graph, f.Log) }
case "deletelaunchconfiguration":
return func() interface{} { return NewDeleteLaunchconfiguration(f.Sess, f.Graph, f.Log) }
case "deletelistener":
return func() interface{} { return NewDeleteListener(f.Sess, f.Graph, f.Log) }
case "deleteloadbalancer":
return func() interface{} { return NewDeleteLoadbalancer(f.Sess, f.Graph, f.Log) }
case "deleteloginprofile":
return func() interface{} { return NewDeleteLoginprofile(f.Sess, f.Graph, f.Log) }
case "deletemfadevice":
return func() interface{} { return NewDeleteMfadevice(f.Sess, f.Graph, f.Log) }
case "deletenatgateway":
return func() interface{} { return NewDeleteNatgateway(f.Sess, f.Graph, f.Log) }
case "deletenetworkinterface":
return func() interface{} { return NewDeleteNetworkinterface(f.Sess, f.Graph, f.Log) }
case "deletepolicy":
return func() interface{} { return NewDeletePolicy(f.Sess, f.Graph, f.Log) }
case "deletequeue":
return func() interface{} { return NewDeleteQueue(f.Sess, f.Graph, f.Log) }
case "deleterecord":
return func() interface{} { return NewDeleteRecord(f.Sess, f.Graph, f.Log) }
case "deleterepository":
return func() interface{} { return NewDeleteRepository(f.Sess, f.Graph, f.Log) }
case "deleterole":
return func() interface{} { return NewDeleteRole(f.Sess, f.Graph, f.Log) }
case "deleteroute":
return func() interface{} { return NewDeleteRoute(f.Sess, f.Graph, f.Log) }
case "deleteroutetable":
return func() interface{} { return NewDeleteRoutetable(f.Sess, f.Graph, f.Log) }
case "deletes3object":
return func() interface{} { return NewDeleteS3object(f.Sess, f.Graph, f.Log) }
case "deletescalinggroup":
return func() interface{} { return NewDeleteScalinggroup(f.Sess, f.Graph, f.Log) }
case "deletescalingpolicy":
return func() interface{} { return NewDeleteScalingpolicy(f.Sess, f.Graph, f.Log) }
case "deletesecuritygroup":
return func() interface{} { return NewDeleteSecuritygroup(f.Sess, f.Graph, f.Log) }
case "deletesnapshot":
return func() interface{} { return NewDeleteSnapshot(f.Sess, f.Graph, f.Log) }
case "deletestack":
return func() interface{} { return NewDeleteStack(f.Sess, f.Graph, f.Log) }
case "deletesubnet":
return func() interface{} { return NewDeleteSubnet(f.Sess, f.Graph, f.Log) }
case "deletesubscription":
return func() interface{} { return NewDeleteSubscription(f.Sess, f.Graph, f.Log) }
case "deletetag":
return func() interface{} { return NewDeleteTag(f.Sess, f.Graph, f.Log) }
case "deletetargetgroup":
return func() interface{} { return NewDeleteTargetgroup(f.Sess, f.Graph, f.Log) }
case "deletetopic":
return func() interface{} { return NewDeleteTopic(f.Sess, f.Graph, f.Log) }
case "deleteuser":
return func() interface{} { return NewDeleteUser(f.Sess, f.Graph, f.Log) }
case "deletevolume":
return func() interface{} { return NewDeleteVolume(f.Sess, f.Graph, f.Log) }
case "deletevpc":
return func() interface{} { return NewDeleteVpc(f.Sess, f.Graph, f.Log) }
case "deletezone":
return func() interface{} { return NewDeleteZone(f.Sess, f.Graph, f.Log) }
case "detachalarm":
return func() interface{} { return NewDetachAlarm(f.Sess, f.Graph, f.Log) }
case "detachclassicloadbalancer":
return func() interface{} { return NewDetachClassicLoadbalancer(f.Sess, f.Graph, f.Log) }
case "detachcontainertask":
return func() interface{} { return NewDetachContainertask(f.Sess, f.Graph, f.Log) }
case "detachelasticip":
return func() interface{} { return NewDetachElasticip(f.Sess, f.Graph, f.Log) }
case "detachinstance":
return func() interface{} { return NewDetachInstance(f.Sess, f.Graph, f.Log) }
case "detachinstanceprofile":
return func() interface{} { return NewDetachInstanceprofile(f.Sess, f.Graph, f.Log) }
case "detachinternetgateway":
return func() interface{} { return NewDetachInternetgateway(f.Sess, f.Graph, f.Log) }
case "detachmfadevice":
return func() interface{} { return NewDetachMfadevice(f.Sess, f.Graph, f.Log) }
case "detachnetworkinterface":
return func() interface{} { return NewDetachNetworkinterface(f.Sess, f.Graph, f.Log) }
case "detachpolicy":
return func() interface{} { return NewDetachPolicy(f.Sess, f.Graph, f.Log) }
case "detachrole":
return func() interface{} { return NewDetachRole(f.Sess, f.Graph, f.Log) }
case "detachroutetable":
return func() interface{} { return NewDetachRoutetable(f.Sess, f.Graph, f.Log) }
case "detachsecuritygroup":
return func() interface{} { return NewDetachSecuritygroup(f.Sess, f.Graph, f.Log) }
case "detachuser":
return func() interface{} { return NewDetachUser(f.Sess, f.Graph, f.Log) }
case "detachvolume":
return func() interface{} { return NewDetachVolume(f.Sess, f.Graph, f.Log) }
case "importimage":
return func() interface{} { return NewImportImage(f.Sess, f.Graph, f.Log) }
case "restartdatabase":
return func() interface{} { return NewRestartDatabase(f.Sess, f.Graph, f.Log) }
case "restartinstance":
return func() interface{} { return NewRestartInstance(f.Sess, f.Graph, f.Log) }
case "startalarm":
return func() interface{} { return NewStartAlarm(f.Sess, f.Graph, f.Log) }
case "startcontainertask":
return func() interface{} { return NewStartContainertask(f.Sess, f.Graph, f.Log) }
case "startdatabase":
return func() interface{} { return NewStartDatabase(f.Sess, f.Graph, f.Log) }
case "startinstance":
return func() interface{} { return NewStartInstance(f.Sess, f.Graph, f.Log) }
case "stopalarm":
return func() interface{} { return NewStopAlarm(f.Sess, f.Graph, f.Log) }
case "stopcontainertask":
return func() interface{} { return NewStopContainertask(f.Sess, f.Graph, f.Log) }
case "stopdatabase":
return func() interface{} { return NewStopDatabase(f.Sess, f.Graph, f.Log) }
case "stopinstance":
return func() interface{} { return NewStopInstance(f.Sess, f.Graph, f.Log) }
case "updatebucket":
return func() interface{} { return NewUpdateBucket(f.Sess, f.Graph, f.Log) }
case "updateclassicloadbalancer":
return func() interface{} { return NewUpdateClassicLoadbalancer(f.Sess, f.Graph, f.Log) }
case "updatecontainertask":
return func() interface{} { return NewUpdateContainertask(f.Sess, f.Graph, f.Log) }
case "updatedistribution":
return func() interface{} { return NewUpdateDistribution(f.Sess, f.Graph, f.Log) }
case "updateimage":
return func() interface{} { return NewUpdateImage(f.Sess, f.Graph, f.Log) }
case "updateinstance":
return func() interface{} { return NewUpdateInstance(f.Sess, f.Graph, f.Log) }
case "updateloginprofile":
return func() interface{} { return NewUpdateLoginprofile(f.Sess, f.Graph, f.Log) }
case "updatepolicy":
return func() interface{} { return NewUpdatePolicy(f.Sess, f.Graph, f.Log) }
case "updaterecord":
return func() interface{} { return NewUpdateRecord(f.Sess, f.Graph, f.Log) }
case "updates3object":
return func() interface{} { return NewUpdateS3object(f.Sess, f.Graph, f.Log) }
case "updatescalinggroup":
return func() interface{} { return NewUpdateScalinggroup(f.Sess, f.Graph, f.Log) }
case "updatesecuritygroup":
return func() interface{} { return NewUpdateSecuritygroup(f.Sess, f.Graph, f.Log) }
case "updatestack":
return func() interface{} { return NewUpdateStack(f.Sess, f.Graph, f.Log) }
case "updatesubnet":
return func() interface{} { return NewUpdateSubnet(f.Sess, f.Graph, f.Log) }
case "updatetargetgroup":
return func() interface{} { return NewUpdateTargetgroup(f.Sess, f.Graph, f.Log) }
}
return nil
}
var (
_ command = &AttachAlarm{}
_ command = &AttachClassicLoadbalancer{}
_ command = &AttachContainertask{}
_ command = &AttachElasticip{}
_ command = &AttachInstance{}
_ command = &AttachInstanceprofile{}
_ command = &AttachInternetgateway{}
_ command = &AttachListener{}
_ command = &AttachMfadevice{}
_ command = &AttachNetworkinterface{}
_ command = &AttachPolicy{}
_ command = &AttachRole{}
_ command = &AttachRoutetable{}
_ command = &AttachSecuritygroup{}
_ command = &AttachUser{}
_ command = &AttachVolume{}
_ command = &AuthenticateRegistry{}
_ command = &CheckCertificate{}
_ command = &CheckDatabase{}
_ command = &CheckDistribution{}
_ command = &CheckInstance{}
_ command = &CheckLoadbalancer{}
_ command = &CheckNatgateway{}
_ command = &CheckNetworkinterface{}
_ command = &CheckScalinggroup{}
_ command = &CheckSecuritygroup{}
_ command = &CheckVolume{}
_ command = &CopyImage{}
_ command = &CopySnapshot{}
_ command = &CreateAccesskey{}
_ command = &CreateAlarm{}
_ command = &CreateAppscalingpolicy{}
_ command = &CreateAppscalingtarget{}
_ command = &CreateBucket{}
_ command = &CreateCertificate{}
_ command = &CreateClassicLoadbalancer{}
_ command = &CreateContainercluster{}
_ command = &CreateDatabase{}
_ command = &CreateDbsubnetgroup{}
_ command = &CreateDistribution{}
_ command = &CreateElasticip{}
_ command = &CreateFunction{}
_ command = &CreateGroup{}
_ command = &CreateImage{}
_ command = &CreateInstance{}
_ command = &CreateInstanceprofile{}
_ command = &CreateInternetgateway{}
_ command = &CreateKeypair{}
_ command = &CreateLaunchconfiguration{}
_ command = &CreateListener{}
_ command = &CreateLoadbalancer{}
_ command = &CreateLoginprofile{}
_ command = &CreateMfadevice{}
_ command = &CreateNatgateway{}
_ command = &CreateNetworkinterface{}
_ command = &CreatePolicy{}
_ command = &CreateQueue{}
_ command = &CreateRecord{}
_ command = &CreateRepository{}
_ command = &CreateRole{}
_ command = &CreateRoute{}
_ command = &CreateRoutetable{}
_ command = &CreateS3object{}
_ command = &CreateScalinggroup{}
_ command = &CreateScalingpolicy{}
_ command = &CreateSecuritygroup{}
_ command = &CreateSnapshot{}
_ command = &CreateStack{}
_ command = &CreateSubnet{}
_ command = &CreateSubscription{}
_ command = &CreateTag{}
_ command = &CreateTargetgroup{}
_ command = &CreateTopic{}
_ command = &CreateUser{}
_ command = &CreateVolume{}
_ command = &CreateVpc{}
_ command = &CreateZone{}
_ command = &DeleteAccesskey{}
_ command = &DeleteAlarm{}
_ command = &DeleteAppscalingpolicy{}
_ command = &DeleteAppscalingtarget{}
_ command = &DeleteBucket{}
_ command = &DeleteCertificate{}
_ command = &DeleteClassicLoadbalancer{}
_ command = &DeleteContainercluster{}
_ command = &DeleteContainertask{}
_ command = &DeleteDatabase{}
_ command = &DeleteDbsubnetgroup{}
_ command = &DeleteDistribution{}
_ command = &DeleteElasticip{}
_ command = &DeleteFunction{}
_ command = &DeleteGroup{}
_ command = &DeleteImage{}
_ command = &DeleteInstance{}
_ command = &DeleteInstanceprofile{}
_ command = &DeleteInternetgateway{}
_ command = &DeleteKeypair{}
_ command = &DeleteLaunchconfiguration{}
_ command = &DeleteListener{}
_ command = &DeleteLoadbalancer{}
_ command = &DeleteLoginprofile{}
_ command = &DeleteMfadevice{}
_ command = &DeleteNatgateway{}
_ command = &DeleteNetworkinterface{}
_ command = &DeletePolicy{}
_ command = &DeleteQueue{}
_ command = &DeleteRecord{}
_ command = &DeleteRepository{}
_ command = &DeleteRole{}
_ command = &DeleteRoute{}
_ command = &DeleteRoutetable{}
_ command = &DeleteS3object{}
_ command = &DeleteScalinggroup{}
_ command = &DeleteScalingpolicy{}
_ command = &DeleteSecuritygroup{}
_ command = &DeleteSnapshot{}
_ command = &DeleteStack{}
_ command = &DeleteSubnet{}
_ command = &DeleteSubscription{}
_ command = &DeleteTag{}
_ command = &DeleteTargetgroup{}
_ command = &DeleteTopic{}
_ command = &DeleteUser{}
_ command = &DeleteVolume{}
_ command = &DeleteVpc{}
_ command = &DeleteZone{}
_ command = &DetachAlarm{}
_ command = &DetachClassicLoadbalancer{}
_ command = &DetachContainertask{}
_ command = &DetachElasticip{}
_ command = &DetachInstance{}
_ command = &DetachInstanceprofile{}
_ command = &DetachInternetgateway{}
_ command = &DetachMfadevice{}
_ command = &DetachNetworkinterface{}
_ command = &DetachPolicy{}
_ command = &DetachRole{}
_ command = &DetachRoutetable{}
_ command = &DetachSecuritygroup{}
_ command = &DetachUser{}
_ command = &DetachVolume{}
_ command = &ImportImage{}
_ command = &RestartDatabase{}
_ command = &RestartInstance{}
_ command = &StartAlarm{}
_ command = &StartContainertask{}
_ command = &StartDatabase{}
_ command = &StartInstance{}
_ command = &StopAlarm{}
_ command = &StopContainertask{}
_ command = &StopDatabase{}
_ command = &StopInstance{}
_ command = &UpdateBucket{}
_ command = &UpdateClassicLoadbalancer{}
_ command = &UpdateContainertask{}
_ command = &UpdateDistribution{}
_ command = &UpdateImage{}
_ command = &UpdateInstance{}
_ command = &UpdateLoginprofile{}
_ command = &UpdatePolicy{}
_ command = &UpdateRecord{}
_ command = &UpdateS3object{}
_ command = &UpdateScalinggroup{}
_ command = &UpdateSecuritygroup{}
_ command = &UpdateStack{}
_ command = &UpdateSubnet{}
_ command = &UpdateTargetgroup{}
)