@aws-sdk/client-m2 3.168.0 → 3.170.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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/M2.d.ts +580 -165
- package/dist-types/ts3.4/M2Client.d.ts +320 -105
- package/dist-types/ts3.4/commands/CancelBatchJobExecutionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateDataSetImportTaskCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteApplicationFromEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetApplicationVersionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetBatchJobExecutionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetDataSetDetailsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetDataSetImportTaskCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListBatchJobDefinitionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListBatchJobExecutionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDataSetImportHistoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListEngineVersionsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartBatchJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +32 -32
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/M2ServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1524 -1421
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListApplicationVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListBatchJobDefinitionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListBatchJobExecutionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDataSetImportHistoryPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDataSetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDeploymentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEngineVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +10 -10
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +389 -98
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,1421 +1,1524 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { M2ServiceException as __BaseException } from "./M2ServiceException";
|
|
3
|
-
|
|
4
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
export interface CancelBatchJobExecutionResponse {
|
|
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
|
-
export interface DataSet {
|
|
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
|
-
export declare
|
|
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
|
-
export interface
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
}
|
|
339
|
-
export
|
|
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
|
-
export
|
|
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
|
-
export interface
|
|
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
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
export interface
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
export interface
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
}
|
|
887
|
-
export interface
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
export interface
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
export interface
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
}
|
|
1070
|
-
export
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
}
|
|
1120
|
-
export interface
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
export
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
export
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
export
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
export
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
export
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { M2ServiceException as __BaseException } from "./M2ServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface AlternateKey {
|
|
14
|
+
name?: string;
|
|
15
|
+
|
|
16
|
+
offset: number | undefined;
|
|
17
|
+
|
|
18
|
+
length: number | undefined;
|
|
19
|
+
|
|
20
|
+
allowDuplicates?: boolean;
|
|
21
|
+
}
|
|
22
|
+
export interface CancelBatchJobExecutionRequest {
|
|
23
|
+
applicationId: string | undefined;
|
|
24
|
+
|
|
25
|
+
executionId: string | undefined;
|
|
26
|
+
}
|
|
27
|
+
export interface CancelBatchJobExecutionResponse {}
|
|
28
|
+
|
|
29
|
+
export declare class ConflictException extends __BaseException {
|
|
30
|
+
readonly name: "ConflictException";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
|
|
33
|
+
resourceId?: string;
|
|
34
|
+
|
|
35
|
+
resourceType?: string;
|
|
36
|
+
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export declare class InternalServerException extends __BaseException {
|
|
41
|
+
readonly name: "InternalServerException";
|
|
42
|
+
readonly $fault: "server";
|
|
43
|
+
$retryable: {};
|
|
44
|
+
|
|
45
|
+
retryAfterSeconds?: number;
|
|
46
|
+
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
53
|
+
readonly name: "ResourceNotFoundException";
|
|
54
|
+
readonly $fault: "client";
|
|
55
|
+
|
|
56
|
+
resourceId?: string;
|
|
57
|
+
|
|
58
|
+
resourceType?: string;
|
|
59
|
+
|
|
60
|
+
constructor(
|
|
61
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export declare class ThrottlingException extends __BaseException {
|
|
66
|
+
readonly name: "ThrottlingException";
|
|
67
|
+
readonly $fault: "client";
|
|
68
|
+
$retryable: {
|
|
69
|
+
throttling: boolean;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
serviceCode?: string;
|
|
73
|
+
|
|
74
|
+
quotaCode?: string;
|
|
75
|
+
|
|
76
|
+
retryAfterSeconds?: number;
|
|
77
|
+
|
|
78
|
+
constructor(
|
|
79
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface ValidationExceptionField {
|
|
84
|
+
name: string | undefined;
|
|
85
|
+
|
|
86
|
+
message: string | undefined;
|
|
87
|
+
}
|
|
88
|
+
export declare enum ValidationExceptionReason {
|
|
89
|
+
CANNOT_PARSE = "cannotParse",
|
|
90
|
+
FIELD_VALIDATION_FAILED = "fieldValidationFailed",
|
|
91
|
+
OTHER = "other",
|
|
92
|
+
UNKNOWN_OPERATION = "unknownOperation",
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export declare class ValidationException extends __BaseException {
|
|
96
|
+
readonly name: "ValidationException";
|
|
97
|
+
readonly $fault: "client";
|
|
98
|
+
|
|
99
|
+
reason?: ValidationExceptionReason | string;
|
|
100
|
+
|
|
101
|
+
fieldList?: ValidationExceptionField[];
|
|
102
|
+
|
|
103
|
+
constructor(
|
|
104
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
105
|
+
);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export declare type Definition =
|
|
109
|
+
| Definition.ContentMember
|
|
110
|
+
| Definition.S3LocationMember
|
|
111
|
+
| Definition.$UnknownMember;
|
|
112
|
+
export declare namespace Definition {
|
|
113
|
+
interface S3LocationMember {
|
|
114
|
+
s3Location: string;
|
|
115
|
+
content?: never;
|
|
116
|
+
$unknown?: never;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
interface ContentMember {
|
|
120
|
+
s3Location?: never;
|
|
121
|
+
content: string;
|
|
122
|
+
$unknown?: never;
|
|
123
|
+
}
|
|
124
|
+
interface $UnknownMember {
|
|
125
|
+
s3Location?: never;
|
|
126
|
+
content?: never;
|
|
127
|
+
$unknown: [string, any];
|
|
128
|
+
}
|
|
129
|
+
interface Visitor<T> {
|
|
130
|
+
s3Location: (value: string) => T;
|
|
131
|
+
content: (value: string) => T;
|
|
132
|
+
_: (name: string, value: any) => T;
|
|
133
|
+
}
|
|
134
|
+
const visit: <T>(value: Definition, visitor: Visitor<T>) => T;
|
|
135
|
+
}
|
|
136
|
+
export declare enum EngineType {
|
|
137
|
+
BLUAGE = "bluage",
|
|
138
|
+
MICROFOCUS = "microfocus",
|
|
139
|
+
}
|
|
140
|
+
export interface CreateApplicationRequest {
|
|
141
|
+
name: string | undefined;
|
|
142
|
+
|
|
143
|
+
description?: string;
|
|
144
|
+
|
|
145
|
+
engineType: EngineType | string | undefined;
|
|
146
|
+
|
|
147
|
+
definition: Definition | undefined;
|
|
148
|
+
|
|
149
|
+
tags?: Record<string, string>;
|
|
150
|
+
|
|
151
|
+
clientToken?: string;
|
|
152
|
+
}
|
|
153
|
+
export interface CreateApplicationResponse {
|
|
154
|
+
applicationArn: string | undefined;
|
|
155
|
+
|
|
156
|
+
applicationId: string | undefined;
|
|
157
|
+
|
|
158
|
+
applicationVersion: number | undefined;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
162
|
+
readonly name: "ServiceQuotaExceededException";
|
|
163
|
+
readonly $fault: "client";
|
|
164
|
+
|
|
165
|
+
resourceId?: string;
|
|
166
|
+
|
|
167
|
+
resourceType?: string;
|
|
168
|
+
|
|
169
|
+
serviceCode?: string;
|
|
170
|
+
|
|
171
|
+
quotaCode?: string;
|
|
172
|
+
|
|
173
|
+
constructor(
|
|
174
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
175
|
+
);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export interface GdgAttributes {
|
|
179
|
+
limit?: number;
|
|
180
|
+
|
|
181
|
+
rollDisposition?: string;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
export interface PrimaryKey {
|
|
185
|
+
name?: string;
|
|
186
|
+
|
|
187
|
+
offset: number | undefined;
|
|
188
|
+
|
|
189
|
+
length: number | undefined;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
export interface VsamAttributes {
|
|
193
|
+
format: string | undefined;
|
|
194
|
+
|
|
195
|
+
encoding?: string;
|
|
196
|
+
|
|
197
|
+
compressed?: boolean;
|
|
198
|
+
|
|
199
|
+
primaryKey?: PrimaryKey;
|
|
200
|
+
|
|
201
|
+
alternateKeys?: AlternateKey[];
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
export declare type DatasetOrgAttributes =
|
|
205
|
+
| DatasetOrgAttributes.GdgMember
|
|
206
|
+
| DatasetOrgAttributes.VsamMember
|
|
207
|
+
| DatasetOrgAttributes.$UnknownMember;
|
|
208
|
+
export declare namespace DatasetOrgAttributes {
|
|
209
|
+
interface VsamMember {
|
|
210
|
+
vsam: VsamAttributes;
|
|
211
|
+
gdg?: never;
|
|
212
|
+
$unknown?: never;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
interface GdgMember {
|
|
216
|
+
vsam?: never;
|
|
217
|
+
gdg: GdgAttributes;
|
|
218
|
+
$unknown?: never;
|
|
219
|
+
}
|
|
220
|
+
interface $UnknownMember {
|
|
221
|
+
vsam?: never;
|
|
222
|
+
gdg?: never;
|
|
223
|
+
$unknown: [string, any];
|
|
224
|
+
}
|
|
225
|
+
interface Visitor<T> {
|
|
226
|
+
vsam: (value: VsamAttributes) => T;
|
|
227
|
+
gdg: (value: GdgAttributes) => T;
|
|
228
|
+
_: (name: string, value: any) => T;
|
|
229
|
+
}
|
|
230
|
+
const visit: <T>(value: DatasetOrgAttributes, visitor: Visitor<T>) => T;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export interface RecordLength {
|
|
234
|
+
min: number | undefined;
|
|
235
|
+
|
|
236
|
+
max: number | undefined;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
export interface DataSet {
|
|
240
|
+
storageType?: string;
|
|
241
|
+
|
|
242
|
+
datasetName: string | undefined;
|
|
243
|
+
|
|
244
|
+
datasetOrg: DatasetOrgAttributes | undefined;
|
|
245
|
+
|
|
246
|
+
relativePath?: string;
|
|
247
|
+
|
|
248
|
+
recordLength: RecordLength | undefined;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export declare type ExternalLocation =
|
|
252
|
+
| ExternalLocation.S3LocationMember
|
|
253
|
+
| ExternalLocation.$UnknownMember;
|
|
254
|
+
export declare namespace ExternalLocation {
|
|
255
|
+
interface S3LocationMember {
|
|
256
|
+
s3Location: string;
|
|
257
|
+
$unknown?: never;
|
|
258
|
+
}
|
|
259
|
+
interface $UnknownMember {
|
|
260
|
+
s3Location?: never;
|
|
261
|
+
$unknown: [string, any];
|
|
262
|
+
}
|
|
263
|
+
interface Visitor<T> {
|
|
264
|
+
s3Location: (value: string) => T;
|
|
265
|
+
_: (name: string, value: any) => T;
|
|
266
|
+
}
|
|
267
|
+
const visit: <T>(value: ExternalLocation, visitor: Visitor<T>) => T;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
export interface DataSetImportItem {
|
|
271
|
+
dataSet: DataSet | undefined;
|
|
272
|
+
|
|
273
|
+
externalLocation: ExternalLocation | undefined;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
export declare type DataSetImportConfig =
|
|
277
|
+
| DataSetImportConfig.DataSetsMember
|
|
278
|
+
| DataSetImportConfig.S3LocationMember
|
|
279
|
+
| DataSetImportConfig.$UnknownMember;
|
|
280
|
+
export declare namespace DataSetImportConfig {
|
|
281
|
+
interface S3LocationMember {
|
|
282
|
+
s3Location: string;
|
|
283
|
+
dataSets?: never;
|
|
284
|
+
$unknown?: never;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
interface DataSetsMember {
|
|
288
|
+
s3Location?: never;
|
|
289
|
+
dataSets: DataSetImportItem[];
|
|
290
|
+
$unknown?: never;
|
|
291
|
+
}
|
|
292
|
+
interface $UnknownMember {
|
|
293
|
+
s3Location?: never;
|
|
294
|
+
dataSets?: never;
|
|
295
|
+
$unknown: [string, any];
|
|
296
|
+
}
|
|
297
|
+
interface Visitor<T> {
|
|
298
|
+
s3Location: (value: string) => T;
|
|
299
|
+
dataSets: (value: DataSetImportItem[]) => T;
|
|
300
|
+
_: (name: string, value: any) => T;
|
|
301
|
+
}
|
|
302
|
+
const visit: <T>(value: DataSetImportConfig, visitor: Visitor<T>) => T;
|
|
303
|
+
}
|
|
304
|
+
export interface CreateDataSetImportTaskRequest {
|
|
305
|
+
applicationId: string | undefined;
|
|
306
|
+
|
|
307
|
+
importConfig: DataSetImportConfig | undefined;
|
|
308
|
+
|
|
309
|
+
clientToken?: string;
|
|
310
|
+
}
|
|
311
|
+
export interface CreateDataSetImportTaskResponse {
|
|
312
|
+
taskId: string | undefined;
|
|
313
|
+
}
|
|
314
|
+
export interface CreateDeploymentRequest {
|
|
315
|
+
environmentId: string | undefined;
|
|
316
|
+
|
|
317
|
+
applicationId: string | undefined;
|
|
318
|
+
|
|
319
|
+
applicationVersion: number | undefined;
|
|
320
|
+
|
|
321
|
+
clientToken?: string;
|
|
322
|
+
}
|
|
323
|
+
export interface CreateDeploymentResponse {
|
|
324
|
+
deploymentId: string | undefined;
|
|
325
|
+
}
|
|
326
|
+
export interface DeleteApplicationRequest {
|
|
327
|
+
applicationId: string | undefined;
|
|
328
|
+
}
|
|
329
|
+
export interface DeleteApplicationResponse {}
|
|
330
|
+
export interface DeleteApplicationFromEnvironmentRequest {
|
|
331
|
+
applicationId: string | undefined;
|
|
332
|
+
|
|
333
|
+
environmentId: string | undefined;
|
|
334
|
+
}
|
|
335
|
+
export interface DeleteApplicationFromEnvironmentResponse {}
|
|
336
|
+
export interface GetApplicationRequest {
|
|
337
|
+
applicationId: string | undefined;
|
|
338
|
+
}
|
|
339
|
+
export declare enum DeploymentLifecycle {
|
|
340
|
+
DEPLOYING = "Deploying",
|
|
341
|
+
FAILED = "Failed",
|
|
342
|
+
SUCCEEDED = "Succeeded",
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
export interface DeployedVersionSummary {
|
|
346
|
+
applicationVersion: number | undefined;
|
|
347
|
+
|
|
348
|
+
status: DeploymentLifecycle | string | undefined;
|
|
349
|
+
|
|
350
|
+
statusReason?: string;
|
|
351
|
+
}
|
|
352
|
+
export declare enum ApplicationVersionLifecycle {
|
|
353
|
+
AVAILABLE = "Available",
|
|
354
|
+
CREATING = "Creating",
|
|
355
|
+
FAILED = "Failed",
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
export interface ApplicationVersionSummary {
|
|
359
|
+
applicationVersion: number | undefined;
|
|
360
|
+
|
|
361
|
+
status: ApplicationVersionLifecycle | string | undefined;
|
|
362
|
+
|
|
363
|
+
statusReason?: string;
|
|
364
|
+
|
|
365
|
+
creationTime: Date | undefined;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
export interface LogGroupSummary {
|
|
369
|
+
logType: string | undefined;
|
|
370
|
+
|
|
371
|
+
logGroupName: string | undefined;
|
|
372
|
+
}
|
|
373
|
+
export declare enum ApplicationLifecycle {
|
|
374
|
+
AVAILABLE = "Available",
|
|
375
|
+
CREATED = "Created",
|
|
376
|
+
CREATING = "Creating",
|
|
377
|
+
DELETING = "Deleting",
|
|
378
|
+
FAILED = "Failed",
|
|
379
|
+
READY = "Ready",
|
|
380
|
+
RUNNING = "Running",
|
|
381
|
+
STARTING = "Starting",
|
|
382
|
+
STOPPED = "Stopped",
|
|
383
|
+
STOPPING = "Stopping",
|
|
384
|
+
}
|
|
385
|
+
export interface GetApplicationResponse {
|
|
386
|
+
name: string | undefined;
|
|
387
|
+
|
|
388
|
+
description?: string;
|
|
389
|
+
|
|
390
|
+
applicationId: string | undefined;
|
|
391
|
+
|
|
392
|
+
applicationArn: string | undefined;
|
|
393
|
+
|
|
394
|
+
status: ApplicationLifecycle | string | undefined;
|
|
395
|
+
|
|
396
|
+
latestVersion: ApplicationVersionSummary | undefined;
|
|
397
|
+
|
|
398
|
+
deployedVersion?: DeployedVersionSummary;
|
|
399
|
+
|
|
400
|
+
engineType: EngineType | string | undefined;
|
|
401
|
+
|
|
402
|
+
logGroups?: LogGroupSummary[];
|
|
403
|
+
|
|
404
|
+
creationTime: Date | undefined;
|
|
405
|
+
|
|
406
|
+
lastStartTime?: Date;
|
|
407
|
+
|
|
408
|
+
tags?: Record<string, string>;
|
|
409
|
+
|
|
410
|
+
environmentId?: string;
|
|
411
|
+
|
|
412
|
+
targetGroupArns?: string[];
|
|
413
|
+
|
|
414
|
+
listenerArns?: string[];
|
|
415
|
+
|
|
416
|
+
listenerPorts?: number[];
|
|
417
|
+
|
|
418
|
+
loadBalancerDnsName?: string;
|
|
419
|
+
|
|
420
|
+
statusReason?: string;
|
|
421
|
+
}
|
|
422
|
+
export interface GetApplicationVersionRequest {
|
|
423
|
+
applicationId: string | undefined;
|
|
424
|
+
|
|
425
|
+
applicationVersion: number | undefined;
|
|
426
|
+
}
|
|
427
|
+
export interface GetApplicationVersionResponse {
|
|
428
|
+
name: string | undefined;
|
|
429
|
+
|
|
430
|
+
applicationVersion: number | undefined;
|
|
431
|
+
|
|
432
|
+
description?: string;
|
|
433
|
+
|
|
434
|
+
definitionContent: string | undefined;
|
|
435
|
+
|
|
436
|
+
status: ApplicationVersionLifecycle | string | undefined;
|
|
437
|
+
|
|
438
|
+
creationTime: Date | undefined;
|
|
439
|
+
|
|
440
|
+
statusReason?: string;
|
|
441
|
+
}
|
|
442
|
+
export interface GetBatchJobExecutionRequest {
|
|
443
|
+
applicationId: string | undefined;
|
|
444
|
+
|
|
445
|
+
executionId: string | undefined;
|
|
446
|
+
}
|
|
447
|
+
export declare enum BatchJobType {
|
|
448
|
+
JES2 = "JES2",
|
|
449
|
+
JES3 = "JES3",
|
|
450
|
+
VSE = "VSE",
|
|
451
|
+
}
|
|
452
|
+
export declare enum BatchJobExecutionStatus {
|
|
453
|
+
CANCELLED = "Cancelled",
|
|
454
|
+
CANCELLING = "Cancelling",
|
|
455
|
+
DISPATCH = "Dispatching",
|
|
456
|
+
FAILED = "Failed",
|
|
457
|
+
HOLDING = "Holding",
|
|
458
|
+
RUNNING = "Running",
|
|
459
|
+
SUBMITTING = "Submitting",
|
|
460
|
+
SUCCEEDED = "Succeeded",
|
|
461
|
+
SUCCEEDED_WITH_WARNING = "Succeeded With Warning",
|
|
462
|
+
}
|
|
463
|
+
export interface GetBatchJobExecutionResponse {
|
|
464
|
+
executionId: string | undefined;
|
|
465
|
+
|
|
466
|
+
applicationId: string | undefined;
|
|
467
|
+
|
|
468
|
+
jobId?: string;
|
|
469
|
+
|
|
470
|
+
jobName?: string;
|
|
471
|
+
|
|
472
|
+
jobUser?: string;
|
|
473
|
+
|
|
474
|
+
jobType?: BatchJobType | string;
|
|
475
|
+
|
|
476
|
+
status: BatchJobExecutionStatus | string | undefined;
|
|
477
|
+
|
|
478
|
+
startTime: Date | undefined;
|
|
479
|
+
|
|
480
|
+
endTime?: Date;
|
|
481
|
+
|
|
482
|
+
statusReason?: string;
|
|
483
|
+
}
|
|
484
|
+
export interface GetDataSetDetailsRequest {
|
|
485
|
+
applicationId: string | undefined;
|
|
486
|
+
|
|
487
|
+
dataSetName: string | undefined;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
export interface GdgDetailAttributes {
|
|
491
|
+
limit?: number;
|
|
492
|
+
|
|
493
|
+
rollDisposition?: string;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
export interface VsamDetailAttributes {
|
|
497
|
+
encoding?: string;
|
|
498
|
+
|
|
499
|
+
recordFormat?: string;
|
|
500
|
+
|
|
501
|
+
compressed?: boolean;
|
|
502
|
+
|
|
503
|
+
cacheAtStartup?: boolean;
|
|
504
|
+
|
|
505
|
+
primaryKey?: PrimaryKey;
|
|
506
|
+
|
|
507
|
+
alternateKeys?: AlternateKey[];
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
export declare type DatasetDetailOrgAttributes =
|
|
511
|
+
| DatasetDetailOrgAttributes.GdgMember
|
|
512
|
+
| DatasetDetailOrgAttributes.VsamMember
|
|
513
|
+
| DatasetDetailOrgAttributes.$UnknownMember;
|
|
514
|
+
export declare namespace DatasetDetailOrgAttributes {
|
|
515
|
+
interface VsamMember {
|
|
516
|
+
vsam: VsamDetailAttributes;
|
|
517
|
+
gdg?: never;
|
|
518
|
+
$unknown?: never;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
interface GdgMember {
|
|
522
|
+
vsam?: never;
|
|
523
|
+
gdg: GdgDetailAttributes;
|
|
524
|
+
$unknown?: never;
|
|
525
|
+
}
|
|
526
|
+
interface $UnknownMember {
|
|
527
|
+
vsam?: never;
|
|
528
|
+
gdg?: never;
|
|
529
|
+
$unknown: [string, any];
|
|
530
|
+
}
|
|
531
|
+
interface Visitor<T> {
|
|
532
|
+
vsam: (value: VsamDetailAttributes) => T;
|
|
533
|
+
gdg: (value: GdgDetailAttributes) => T;
|
|
534
|
+
_: (name: string, value: any) => T;
|
|
535
|
+
}
|
|
536
|
+
const visit: <T>(value: DatasetDetailOrgAttributes, visitor: Visitor<T>) => T;
|
|
537
|
+
}
|
|
538
|
+
export interface GetDataSetDetailsResponse {
|
|
539
|
+
dataSetName: string | undefined;
|
|
540
|
+
|
|
541
|
+
dataSetOrg?: DatasetDetailOrgAttributes;
|
|
542
|
+
|
|
543
|
+
recordLength?: number;
|
|
544
|
+
|
|
545
|
+
location?: string;
|
|
546
|
+
|
|
547
|
+
blocksize?: number;
|
|
548
|
+
|
|
549
|
+
creationTime?: Date;
|
|
550
|
+
|
|
551
|
+
lastUpdatedTime?: Date;
|
|
552
|
+
|
|
553
|
+
lastReferencedTime?: Date;
|
|
554
|
+
}
|
|
555
|
+
export interface GetDataSetImportTaskRequest {
|
|
556
|
+
applicationId: string | undefined;
|
|
557
|
+
|
|
558
|
+
taskId: string | undefined;
|
|
559
|
+
}
|
|
560
|
+
export declare enum DataSetTaskLifecycle {
|
|
561
|
+
COMPLETED = "Completed",
|
|
562
|
+
CREATING = "Creating",
|
|
563
|
+
RUNNING = "Running",
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
export interface DataSetImportSummary {
|
|
567
|
+
total: number | undefined;
|
|
568
|
+
|
|
569
|
+
succeeded: number | undefined;
|
|
570
|
+
|
|
571
|
+
failed: number | undefined;
|
|
572
|
+
|
|
573
|
+
pending: number | undefined;
|
|
574
|
+
|
|
575
|
+
inProgress: number | undefined;
|
|
576
|
+
}
|
|
577
|
+
export interface GetDataSetImportTaskResponse {
|
|
578
|
+
taskId: string | undefined;
|
|
579
|
+
|
|
580
|
+
status: DataSetTaskLifecycle | string | undefined;
|
|
581
|
+
|
|
582
|
+
summary?: DataSetImportSummary;
|
|
583
|
+
}
|
|
584
|
+
export interface GetDeploymentRequest {
|
|
585
|
+
deploymentId: string | undefined;
|
|
586
|
+
|
|
587
|
+
applicationId: string | undefined;
|
|
588
|
+
}
|
|
589
|
+
export interface GetDeploymentResponse {
|
|
590
|
+
deploymentId: string | undefined;
|
|
591
|
+
|
|
592
|
+
applicationId: string | undefined;
|
|
593
|
+
|
|
594
|
+
environmentId: string | undefined;
|
|
595
|
+
|
|
596
|
+
applicationVersion: number | undefined;
|
|
597
|
+
|
|
598
|
+
status: DeploymentLifecycle | string | undefined;
|
|
599
|
+
|
|
600
|
+
creationTime: Date | undefined;
|
|
601
|
+
|
|
602
|
+
statusReason?: string;
|
|
603
|
+
}
|
|
604
|
+
export interface ListApplicationsRequest {
|
|
605
|
+
nextToken?: string;
|
|
606
|
+
|
|
607
|
+
maxResults?: number;
|
|
608
|
+
|
|
609
|
+
names?: string[];
|
|
610
|
+
|
|
611
|
+
environmentId?: string;
|
|
612
|
+
}
|
|
613
|
+
export declare enum ApplicationDeploymentLifecycle {
|
|
614
|
+
DEPLOYED = "Deployed",
|
|
615
|
+
DEPLOYING = "Deploying",
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
export interface ApplicationSummary {
|
|
619
|
+
name: string | undefined;
|
|
620
|
+
|
|
621
|
+
description?: string;
|
|
622
|
+
|
|
623
|
+
applicationId: string | undefined;
|
|
624
|
+
|
|
625
|
+
applicationArn: string | undefined;
|
|
626
|
+
|
|
627
|
+
applicationVersion: number | undefined;
|
|
628
|
+
|
|
629
|
+
status: ApplicationLifecycle | string | undefined;
|
|
630
|
+
|
|
631
|
+
engineType: EngineType | string | undefined;
|
|
632
|
+
|
|
633
|
+
creationTime: Date | undefined;
|
|
634
|
+
|
|
635
|
+
environmentId?: string;
|
|
636
|
+
|
|
637
|
+
lastStartTime?: Date;
|
|
638
|
+
|
|
639
|
+
versionStatus?: ApplicationVersionLifecycle | string;
|
|
640
|
+
|
|
641
|
+
deploymentStatus?: ApplicationDeploymentLifecycle | string;
|
|
642
|
+
}
|
|
643
|
+
export interface ListApplicationsResponse {
|
|
644
|
+
applications: ApplicationSummary[] | undefined;
|
|
645
|
+
|
|
646
|
+
nextToken?: string;
|
|
647
|
+
}
|
|
648
|
+
export interface ListApplicationVersionsRequest {
|
|
649
|
+
nextToken?: string;
|
|
650
|
+
|
|
651
|
+
maxResults?: number;
|
|
652
|
+
|
|
653
|
+
applicationId: string | undefined;
|
|
654
|
+
}
|
|
655
|
+
export interface ListApplicationVersionsResponse {
|
|
656
|
+
applicationVersions: ApplicationVersionSummary[] | undefined;
|
|
657
|
+
|
|
658
|
+
nextToken?: string;
|
|
659
|
+
}
|
|
660
|
+
export interface ListBatchJobDefinitionsRequest {
|
|
661
|
+
nextToken?: string;
|
|
662
|
+
|
|
663
|
+
maxResults?: number;
|
|
664
|
+
|
|
665
|
+
applicationId: string | undefined;
|
|
666
|
+
|
|
667
|
+
prefix?: string;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
export interface FileBatchJobDefinition {
|
|
671
|
+
fileName: string | undefined;
|
|
672
|
+
|
|
673
|
+
folderPath?: string;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
export interface ScriptBatchJobDefinition {
|
|
677
|
+
scriptName: string | undefined;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
export declare type BatchJobDefinition =
|
|
681
|
+
| BatchJobDefinition.FileBatchJobDefinitionMember
|
|
682
|
+
| BatchJobDefinition.ScriptBatchJobDefinitionMember
|
|
683
|
+
| BatchJobDefinition.$UnknownMember;
|
|
684
|
+
export declare namespace BatchJobDefinition {
|
|
685
|
+
interface FileBatchJobDefinitionMember {
|
|
686
|
+
fileBatchJobDefinition: FileBatchJobDefinition;
|
|
687
|
+
scriptBatchJobDefinition?: never;
|
|
688
|
+
$unknown?: never;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
interface ScriptBatchJobDefinitionMember {
|
|
692
|
+
fileBatchJobDefinition?: never;
|
|
693
|
+
scriptBatchJobDefinition: ScriptBatchJobDefinition;
|
|
694
|
+
$unknown?: never;
|
|
695
|
+
}
|
|
696
|
+
interface $UnknownMember {
|
|
697
|
+
fileBatchJobDefinition?: never;
|
|
698
|
+
scriptBatchJobDefinition?: never;
|
|
699
|
+
$unknown: [string, any];
|
|
700
|
+
}
|
|
701
|
+
interface Visitor<T> {
|
|
702
|
+
fileBatchJobDefinition: (value: FileBatchJobDefinition) => T;
|
|
703
|
+
scriptBatchJobDefinition: (value: ScriptBatchJobDefinition) => T;
|
|
704
|
+
_: (name: string, value: any) => T;
|
|
705
|
+
}
|
|
706
|
+
const visit: <T>(value: BatchJobDefinition, visitor: Visitor<T>) => T;
|
|
707
|
+
}
|
|
708
|
+
export interface ListBatchJobDefinitionsResponse {
|
|
709
|
+
batchJobDefinitions: BatchJobDefinition[] | undefined;
|
|
710
|
+
|
|
711
|
+
nextToken?: string;
|
|
712
|
+
}
|
|
713
|
+
export interface ListBatchJobExecutionsRequest {
|
|
714
|
+
nextToken?: string;
|
|
715
|
+
|
|
716
|
+
maxResults?: number;
|
|
717
|
+
|
|
718
|
+
applicationId: string | undefined;
|
|
719
|
+
|
|
720
|
+
executionIds?: string[];
|
|
721
|
+
|
|
722
|
+
jobName?: string;
|
|
723
|
+
|
|
724
|
+
status?: BatchJobExecutionStatus | string;
|
|
725
|
+
|
|
726
|
+
startedAfter?: Date;
|
|
727
|
+
|
|
728
|
+
startedBefore?: Date;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
export interface BatchJobExecutionSummary {
|
|
732
|
+
executionId: string | undefined;
|
|
733
|
+
|
|
734
|
+
applicationId: string | undefined;
|
|
735
|
+
|
|
736
|
+
jobId?: string;
|
|
737
|
+
|
|
738
|
+
jobName?: string;
|
|
739
|
+
|
|
740
|
+
jobType?: BatchJobType | string;
|
|
741
|
+
|
|
742
|
+
status: BatchJobExecutionStatus | string | undefined;
|
|
743
|
+
|
|
744
|
+
startTime: Date | undefined;
|
|
745
|
+
|
|
746
|
+
endTime?: Date;
|
|
747
|
+
}
|
|
748
|
+
export interface ListBatchJobExecutionsResponse {
|
|
749
|
+
batchJobExecutions: BatchJobExecutionSummary[] | undefined;
|
|
750
|
+
|
|
751
|
+
nextToken?: string;
|
|
752
|
+
}
|
|
753
|
+
export interface ListDataSetImportHistoryRequest {
|
|
754
|
+
nextToken?: string;
|
|
755
|
+
|
|
756
|
+
maxResults?: number;
|
|
757
|
+
|
|
758
|
+
applicationId: string | undefined;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
export interface DataSetImportTask {
|
|
762
|
+
taskId: string | undefined;
|
|
763
|
+
|
|
764
|
+
status: DataSetTaskLifecycle | string | undefined;
|
|
765
|
+
|
|
766
|
+
summary: DataSetImportSummary | undefined;
|
|
767
|
+
}
|
|
768
|
+
export interface ListDataSetImportHistoryResponse {
|
|
769
|
+
dataSetImportTasks: DataSetImportTask[] | undefined;
|
|
770
|
+
|
|
771
|
+
nextToken?: string;
|
|
772
|
+
}
|
|
773
|
+
export interface ListDataSetsRequest {
|
|
774
|
+
applicationId: string | undefined;
|
|
775
|
+
|
|
776
|
+
nextToken?: string;
|
|
777
|
+
|
|
778
|
+
maxResults?: number;
|
|
779
|
+
|
|
780
|
+
prefix?: string;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
export interface DataSetSummary {
|
|
784
|
+
dataSetName: string | undefined;
|
|
785
|
+
|
|
786
|
+
dataSetOrg?: string;
|
|
787
|
+
|
|
788
|
+
format?: string;
|
|
789
|
+
|
|
790
|
+
creationTime?: Date;
|
|
791
|
+
|
|
792
|
+
lastUpdatedTime?: Date;
|
|
793
|
+
|
|
794
|
+
lastReferencedTime?: Date;
|
|
795
|
+
}
|
|
796
|
+
export interface ListDataSetsResponse {
|
|
797
|
+
dataSets: DataSetSummary[] | undefined;
|
|
798
|
+
|
|
799
|
+
nextToken?: string;
|
|
800
|
+
}
|
|
801
|
+
export interface ListDeploymentsRequest {
|
|
802
|
+
nextToken?: string;
|
|
803
|
+
|
|
804
|
+
maxResults?: number;
|
|
805
|
+
|
|
806
|
+
applicationId: string | undefined;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
export interface DeploymentSummary {
|
|
810
|
+
deploymentId: string | undefined;
|
|
811
|
+
|
|
812
|
+
applicationId: string | undefined;
|
|
813
|
+
|
|
814
|
+
environmentId: string | undefined;
|
|
815
|
+
|
|
816
|
+
applicationVersion: number | undefined;
|
|
817
|
+
|
|
818
|
+
status: DeploymentLifecycle | string | undefined;
|
|
819
|
+
|
|
820
|
+
creationTime: Date | undefined;
|
|
821
|
+
|
|
822
|
+
statusReason?: string;
|
|
823
|
+
}
|
|
824
|
+
export interface ListDeploymentsResponse {
|
|
825
|
+
deployments: DeploymentSummary[] | undefined;
|
|
826
|
+
|
|
827
|
+
nextToken?: string;
|
|
828
|
+
}
|
|
829
|
+
export interface StartApplicationRequest {
|
|
830
|
+
applicationId: string | undefined;
|
|
831
|
+
}
|
|
832
|
+
export interface StartApplicationResponse {}
|
|
833
|
+
|
|
834
|
+
export interface FileBatchJobIdentifier {
|
|
835
|
+
fileName: string | undefined;
|
|
836
|
+
|
|
837
|
+
folderPath?: string;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
export interface ScriptBatchJobIdentifier {
|
|
841
|
+
scriptName: string | undefined;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
export declare type BatchJobIdentifier =
|
|
845
|
+
| BatchJobIdentifier.FileBatchJobIdentifierMember
|
|
846
|
+
| BatchJobIdentifier.ScriptBatchJobIdentifierMember
|
|
847
|
+
| BatchJobIdentifier.$UnknownMember;
|
|
848
|
+
export declare namespace BatchJobIdentifier {
|
|
849
|
+
interface FileBatchJobIdentifierMember {
|
|
850
|
+
fileBatchJobIdentifier: FileBatchJobIdentifier;
|
|
851
|
+
scriptBatchJobIdentifier?: never;
|
|
852
|
+
$unknown?: never;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
interface ScriptBatchJobIdentifierMember {
|
|
856
|
+
fileBatchJobIdentifier?: never;
|
|
857
|
+
scriptBatchJobIdentifier: ScriptBatchJobIdentifier;
|
|
858
|
+
$unknown?: never;
|
|
859
|
+
}
|
|
860
|
+
interface $UnknownMember {
|
|
861
|
+
fileBatchJobIdentifier?: never;
|
|
862
|
+
scriptBatchJobIdentifier?: never;
|
|
863
|
+
$unknown: [string, any];
|
|
864
|
+
}
|
|
865
|
+
interface Visitor<T> {
|
|
866
|
+
fileBatchJobIdentifier: (value: FileBatchJobIdentifier) => T;
|
|
867
|
+
scriptBatchJobIdentifier: (value: ScriptBatchJobIdentifier) => T;
|
|
868
|
+
_: (name: string, value: any) => T;
|
|
869
|
+
}
|
|
870
|
+
const visit: <T>(value: BatchJobIdentifier, visitor: Visitor<T>) => T;
|
|
871
|
+
}
|
|
872
|
+
export interface StartBatchJobRequest {
|
|
873
|
+
applicationId: string | undefined;
|
|
874
|
+
|
|
875
|
+
batchJobIdentifier: BatchJobIdentifier | undefined;
|
|
876
|
+
|
|
877
|
+
jobParams?: Record<string, string>;
|
|
878
|
+
}
|
|
879
|
+
export interface StartBatchJobResponse {
|
|
880
|
+
executionId: string | undefined;
|
|
881
|
+
}
|
|
882
|
+
export interface StopApplicationRequest {
|
|
883
|
+
applicationId: string | undefined;
|
|
884
|
+
|
|
885
|
+
forceStop?: boolean;
|
|
886
|
+
}
|
|
887
|
+
export interface StopApplicationResponse {}
|
|
888
|
+
export interface UpdateApplicationRequest {
|
|
889
|
+
applicationId: string | undefined;
|
|
890
|
+
|
|
891
|
+
description?: string;
|
|
892
|
+
|
|
893
|
+
currentApplicationVersion: number | undefined;
|
|
894
|
+
|
|
895
|
+
definition?: Definition;
|
|
896
|
+
}
|
|
897
|
+
export interface UpdateApplicationResponse {
|
|
898
|
+
applicationVersion: number | undefined;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
export interface HighAvailabilityConfig {
|
|
902
|
+
desiredCapacity: number | undefined;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
export interface EfsStorageConfiguration {
|
|
906
|
+
fileSystemId: string | undefined;
|
|
907
|
+
|
|
908
|
+
mountPoint: string | undefined;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
export interface FsxStorageConfiguration {
|
|
912
|
+
fileSystemId: string | undefined;
|
|
913
|
+
|
|
914
|
+
mountPoint: string | undefined;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
export declare type StorageConfiguration =
|
|
918
|
+
| StorageConfiguration.EfsMember
|
|
919
|
+
| StorageConfiguration.FsxMember
|
|
920
|
+
| StorageConfiguration.$UnknownMember;
|
|
921
|
+
export declare namespace StorageConfiguration {
|
|
922
|
+
interface EfsMember {
|
|
923
|
+
efs: EfsStorageConfiguration;
|
|
924
|
+
fsx?: never;
|
|
925
|
+
$unknown?: never;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
interface FsxMember {
|
|
929
|
+
efs?: never;
|
|
930
|
+
fsx: FsxStorageConfiguration;
|
|
931
|
+
$unknown?: never;
|
|
932
|
+
}
|
|
933
|
+
interface $UnknownMember {
|
|
934
|
+
efs?: never;
|
|
935
|
+
fsx?: never;
|
|
936
|
+
$unknown: [string, any];
|
|
937
|
+
}
|
|
938
|
+
interface Visitor<T> {
|
|
939
|
+
efs: (value: EfsStorageConfiguration) => T;
|
|
940
|
+
fsx: (value: FsxStorageConfiguration) => T;
|
|
941
|
+
_: (name: string, value: any) => T;
|
|
942
|
+
}
|
|
943
|
+
const visit: <T>(value: StorageConfiguration, visitor: Visitor<T>) => T;
|
|
944
|
+
}
|
|
945
|
+
export interface CreateEnvironmentRequest {
|
|
946
|
+
name: string | undefined;
|
|
947
|
+
|
|
948
|
+
instanceType: string | undefined;
|
|
949
|
+
|
|
950
|
+
description?: string;
|
|
951
|
+
|
|
952
|
+
engineType: EngineType | string | undefined;
|
|
953
|
+
|
|
954
|
+
engineVersion?: string;
|
|
955
|
+
|
|
956
|
+
subnetIds?: string[];
|
|
957
|
+
|
|
958
|
+
securityGroupIds?: string[];
|
|
959
|
+
|
|
960
|
+
storageConfigurations?: StorageConfiguration[];
|
|
961
|
+
|
|
962
|
+
publiclyAccessible?: boolean;
|
|
963
|
+
|
|
964
|
+
highAvailabilityConfig?: HighAvailabilityConfig;
|
|
965
|
+
|
|
966
|
+
tags?: Record<string, string>;
|
|
967
|
+
|
|
968
|
+
preferredMaintenanceWindow?: string;
|
|
969
|
+
|
|
970
|
+
clientToken?: string;
|
|
971
|
+
}
|
|
972
|
+
export interface CreateEnvironmentResponse {
|
|
973
|
+
environmentId: string | undefined;
|
|
974
|
+
}
|
|
975
|
+
export interface DeleteEnvironmentRequest {
|
|
976
|
+
environmentId: string | undefined;
|
|
977
|
+
}
|
|
978
|
+
export interface DeleteEnvironmentResponse {}
|
|
979
|
+
export interface GetEnvironmentRequest {
|
|
980
|
+
environmentId: string | undefined;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
export interface MaintenanceSchedule {
|
|
984
|
+
startTime?: Date;
|
|
985
|
+
|
|
986
|
+
endTime?: Date;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
export interface PendingMaintenance {
|
|
990
|
+
schedule?: MaintenanceSchedule;
|
|
991
|
+
|
|
992
|
+
engineVersion?: string;
|
|
993
|
+
}
|
|
994
|
+
export declare enum EnvironmentLifecycle {
|
|
995
|
+
AVAILABLE = "Available",
|
|
996
|
+
CREATING = "Creating",
|
|
997
|
+
DELETING = "Deleting",
|
|
998
|
+
FAILED = "Failed",
|
|
999
|
+
}
|
|
1000
|
+
export interface GetEnvironmentResponse {
|
|
1001
|
+
name: string | undefined;
|
|
1002
|
+
|
|
1003
|
+
description?: string;
|
|
1004
|
+
|
|
1005
|
+
environmentArn: string | undefined;
|
|
1006
|
+
|
|
1007
|
+
environmentId: string | undefined;
|
|
1008
|
+
|
|
1009
|
+
instanceType: string | undefined;
|
|
1010
|
+
|
|
1011
|
+
status: EnvironmentLifecycle | string | undefined;
|
|
1012
|
+
|
|
1013
|
+
engineType: EngineType | string | undefined;
|
|
1014
|
+
|
|
1015
|
+
engineVersion: string | undefined;
|
|
1016
|
+
|
|
1017
|
+
vpcId: string | undefined;
|
|
1018
|
+
|
|
1019
|
+
subnetIds: string[] | undefined;
|
|
1020
|
+
|
|
1021
|
+
securityGroupIds: string[] | undefined;
|
|
1022
|
+
|
|
1023
|
+
creationTime: Date | undefined;
|
|
1024
|
+
|
|
1025
|
+
storageConfigurations?: StorageConfiguration[];
|
|
1026
|
+
|
|
1027
|
+
tags?: Record<string, string>;
|
|
1028
|
+
|
|
1029
|
+
highAvailabilityConfig?: HighAvailabilityConfig;
|
|
1030
|
+
|
|
1031
|
+
publiclyAccessible?: boolean;
|
|
1032
|
+
|
|
1033
|
+
actualCapacity?: number;
|
|
1034
|
+
|
|
1035
|
+
loadBalancerArn?: string;
|
|
1036
|
+
|
|
1037
|
+
statusReason?: string;
|
|
1038
|
+
|
|
1039
|
+
preferredMaintenanceWindow?: string;
|
|
1040
|
+
|
|
1041
|
+
pendingMaintenance?: PendingMaintenance;
|
|
1042
|
+
}
|
|
1043
|
+
export interface ListEnvironmentsRequest {
|
|
1044
|
+
nextToken?: string;
|
|
1045
|
+
|
|
1046
|
+
maxResults?: number;
|
|
1047
|
+
|
|
1048
|
+
names?: string[];
|
|
1049
|
+
|
|
1050
|
+
engineType?: EngineType | string;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
export interface EnvironmentSummary {
|
|
1054
|
+
name: string | undefined;
|
|
1055
|
+
|
|
1056
|
+
environmentArn: string | undefined;
|
|
1057
|
+
|
|
1058
|
+
environmentId: string | undefined;
|
|
1059
|
+
|
|
1060
|
+
instanceType: string | undefined;
|
|
1061
|
+
|
|
1062
|
+
status: EnvironmentLifecycle | string | undefined;
|
|
1063
|
+
|
|
1064
|
+
engineType: EngineType | string | undefined;
|
|
1065
|
+
|
|
1066
|
+
engineVersion: string | undefined;
|
|
1067
|
+
|
|
1068
|
+
creationTime: Date | undefined;
|
|
1069
|
+
}
|
|
1070
|
+
export interface ListEnvironmentsResponse {
|
|
1071
|
+
environments: EnvironmentSummary[] | undefined;
|
|
1072
|
+
|
|
1073
|
+
nextToken?: string;
|
|
1074
|
+
}
|
|
1075
|
+
export interface UpdateEnvironmentRequest {
|
|
1076
|
+
environmentId: string | undefined;
|
|
1077
|
+
|
|
1078
|
+
desiredCapacity?: number;
|
|
1079
|
+
|
|
1080
|
+
instanceType?: string;
|
|
1081
|
+
|
|
1082
|
+
engineVersion?: string;
|
|
1083
|
+
|
|
1084
|
+
preferredMaintenanceWindow?: string;
|
|
1085
|
+
|
|
1086
|
+
applyDuringMaintenanceWindow?: boolean;
|
|
1087
|
+
}
|
|
1088
|
+
export interface UpdateEnvironmentResponse {
|
|
1089
|
+
environmentId: string | undefined;
|
|
1090
|
+
}
|
|
1091
|
+
export interface ListEngineVersionsRequest {
|
|
1092
|
+
engineType?: EngineType | string;
|
|
1093
|
+
|
|
1094
|
+
nextToken?: string;
|
|
1095
|
+
|
|
1096
|
+
maxResults?: number;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
export interface EngineVersionsSummary {
|
|
1100
|
+
engineType: string | undefined;
|
|
1101
|
+
|
|
1102
|
+
engineVersion: string | undefined;
|
|
1103
|
+
}
|
|
1104
|
+
export interface ListEngineVersionsResponse {
|
|
1105
|
+
engineVersions: EngineVersionsSummary[] | undefined;
|
|
1106
|
+
|
|
1107
|
+
nextToken?: string;
|
|
1108
|
+
}
|
|
1109
|
+
export interface ListTagsForResourceRequest {
|
|
1110
|
+
resourceArn: string | undefined;
|
|
1111
|
+
}
|
|
1112
|
+
export interface ListTagsForResourceResponse {
|
|
1113
|
+
tags: Record<string, string> | undefined;
|
|
1114
|
+
}
|
|
1115
|
+
export interface TagResourceRequest {
|
|
1116
|
+
resourceArn: string | undefined;
|
|
1117
|
+
|
|
1118
|
+
tags: Record<string, string> | undefined;
|
|
1119
|
+
}
|
|
1120
|
+
export interface TagResourceResponse {}
|
|
1121
|
+
export interface UntagResourceRequest {
|
|
1122
|
+
resourceArn: string | undefined;
|
|
1123
|
+
|
|
1124
|
+
tagKeys: string[] | undefined;
|
|
1125
|
+
}
|
|
1126
|
+
export interface UntagResourceResponse {}
|
|
1127
|
+
|
|
1128
|
+
export declare const AlternateKeyFilterSensitiveLog: (obj: AlternateKey) => any;
|
|
1129
|
+
|
|
1130
|
+
export declare const CancelBatchJobExecutionRequestFilterSensitiveLog: (
|
|
1131
|
+
obj: CancelBatchJobExecutionRequest
|
|
1132
|
+
) => any;
|
|
1133
|
+
|
|
1134
|
+
export declare const CancelBatchJobExecutionResponseFilterSensitiveLog: (
|
|
1135
|
+
obj: CancelBatchJobExecutionResponse
|
|
1136
|
+
) => any;
|
|
1137
|
+
|
|
1138
|
+
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
1139
|
+
obj: ValidationExceptionField
|
|
1140
|
+
) => any;
|
|
1141
|
+
|
|
1142
|
+
export declare const DefinitionFilterSensitiveLog: (obj: Definition) => any;
|
|
1143
|
+
|
|
1144
|
+
export declare const CreateApplicationRequestFilterSensitiveLog: (
|
|
1145
|
+
obj: CreateApplicationRequest
|
|
1146
|
+
) => any;
|
|
1147
|
+
|
|
1148
|
+
export declare const CreateApplicationResponseFilterSensitiveLog: (
|
|
1149
|
+
obj: CreateApplicationResponse
|
|
1150
|
+
) => any;
|
|
1151
|
+
|
|
1152
|
+
export declare const GdgAttributesFilterSensitiveLog: (
|
|
1153
|
+
obj: GdgAttributes
|
|
1154
|
+
) => any;
|
|
1155
|
+
|
|
1156
|
+
export declare const PrimaryKeyFilterSensitiveLog: (obj: PrimaryKey) => any;
|
|
1157
|
+
|
|
1158
|
+
export declare const VsamAttributesFilterSensitiveLog: (
|
|
1159
|
+
obj: VsamAttributes
|
|
1160
|
+
) => any;
|
|
1161
|
+
|
|
1162
|
+
export declare const DatasetOrgAttributesFilterSensitiveLog: (
|
|
1163
|
+
obj: DatasetOrgAttributes
|
|
1164
|
+
) => any;
|
|
1165
|
+
|
|
1166
|
+
export declare const RecordLengthFilterSensitiveLog: (obj: RecordLength) => any;
|
|
1167
|
+
|
|
1168
|
+
export declare const DataSetFilterSensitiveLog: (obj: DataSet) => any;
|
|
1169
|
+
|
|
1170
|
+
export declare const ExternalLocationFilterSensitiveLog: (
|
|
1171
|
+
obj: ExternalLocation
|
|
1172
|
+
) => any;
|
|
1173
|
+
|
|
1174
|
+
export declare const DataSetImportItemFilterSensitiveLog: (
|
|
1175
|
+
obj: DataSetImportItem
|
|
1176
|
+
) => any;
|
|
1177
|
+
|
|
1178
|
+
export declare const DataSetImportConfigFilterSensitiveLog: (
|
|
1179
|
+
obj: DataSetImportConfig
|
|
1180
|
+
) => any;
|
|
1181
|
+
|
|
1182
|
+
export declare const CreateDataSetImportTaskRequestFilterSensitiveLog: (
|
|
1183
|
+
obj: CreateDataSetImportTaskRequest
|
|
1184
|
+
) => any;
|
|
1185
|
+
|
|
1186
|
+
export declare const CreateDataSetImportTaskResponseFilterSensitiveLog: (
|
|
1187
|
+
obj: CreateDataSetImportTaskResponse
|
|
1188
|
+
) => any;
|
|
1189
|
+
|
|
1190
|
+
export declare const CreateDeploymentRequestFilterSensitiveLog: (
|
|
1191
|
+
obj: CreateDeploymentRequest
|
|
1192
|
+
) => any;
|
|
1193
|
+
|
|
1194
|
+
export declare const CreateDeploymentResponseFilterSensitiveLog: (
|
|
1195
|
+
obj: CreateDeploymentResponse
|
|
1196
|
+
) => any;
|
|
1197
|
+
|
|
1198
|
+
export declare const DeleteApplicationRequestFilterSensitiveLog: (
|
|
1199
|
+
obj: DeleteApplicationRequest
|
|
1200
|
+
) => any;
|
|
1201
|
+
|
|
1202
|
+
export declare const DeleteApplicationResponseFilterSensitiveLog: (
|
|
1203
|
+
obj: DeleteApplicationResponse
|
|
1204
|
+
) => any;
|
|
1205
|
+
|
|
1206
|
+
export declare const DeleteApplicationFromEnvironmentRequestFilterSensitiveLog: (
|
|
1207
|
+
obj: DeleteApplicationFromEnvironmentRequest
|
|
1208
|
+
) => any;
|
|
1209
|
+
|
|
1210
|
+
export declare const DeleteApplicationFromEnvironmentResponseFilterSensitiveLog: (
|
|
1211
|
+
obj: DeleteApplicationFromEnvironmentResponse
|
|
1212
|
+
) => any;
|
|
1213
|
+
|
|
1214
|
+
export declare const GetApplicationRequestFilterSensitiveLog: (
|
|
1215
|
+
obj: GetApplicationRequest
|
|
1216
|
+
) => any;
|
|
1217
|
+
|
|
1218
|
+
export declare const DeployedVersionSummaryFilterSensitiveLog: (
|
|
1219
|
+
obj: DeployedVersionSummary
|
|
1220
|
+
) => any;
|
|
1221
|
+
|
|
1222
|
+
export declare const ApplicationVersionSummaryFilterSensitiveLog: (
|
|
1223
|
+
obj: ApplicationVersionSummary
|
|
1224
|
+
) => any;
|
|
1225
|
+
|
|
1226
|
+
export declare const LogGroupSummaryFilterSensitiveLog: (
|
|
1227
|
+
obj: LogGroupSummary
|
|
1228
|
+
) => any;
|
|
1229
|
+
|
|
1230
|
+
export declare const GetApplicationResponseFilterSensitiveLog: (
|
|
1231
|
+
obj: GetApplicationResponse
|
|
1232
|
+
) => any;
|
|
1233
|
+
|
|
1234
|
+
export declare const GetApplicationVersionRequestFilterSensitiveLog: (
|
|
1235
|
+
obj: GetApplicationVersionRequest
|
|
1236
|
+
) => any;
|
|
1237
|
+
|
|
1238
|
+
export declare const GetApplicationVersionResponseFilterSensitiveLog: (
|
|
1239
|
+
obj: GetApplicationVersionResponse
|
|
1240
|
+
) => any;
|
|
1241
|
+
|
|
1242
|
+
export declare const GetBatchJobExecutionRequestFilterSensitiveLog: (
|
|
1243
|
+
obj: GetBatchJobExecutionRequest
|
|
1244
|
+
) => any;
|
|
1245
|
+
|
|
1246
|
+
export declare const GetBatchJobExecutionResponseFilterSensitiveLog: (
|
|
1247
|
+
obj: GetBatchJobExecutionResponse
|
|
1248
|
+
) => any;
|
|
1249
|
+
|
|
1250
|
+
export declare const GetDataSetDetailsRequestFilterSensitiveLog: (
|
|
1251
|
+
obj: GetDataSetDetailsRequest
|
|
1252
|
+
) => any;
|
|
1253
|
+
|
|
1254
|
+
export declare const GdgDetailAttributesFilterSensitiveLog: (
|
|
1255
|
+
obj: GdgDetailAttributes
|
|
1256
|
+
) => any;
|
|
1257
|
+
|
|
1258
|
+
export declare const VsamDetailAttributesFilterSensitiveLog: (
|
|
1259
|
+
obj: VsamDetailAttributes
|
|
1260
|
+
) => any;
|
|
1261
|
+
|
|
1262
|
+
export declare const DatasetDetailOrgAttributesFilterSensitiveLog: (
|
|
1263
|
+
obj: DatasetDetailOrgAttributes
|
|
1264
|
+
) => any;
|
|
1265
|
+
|
|
1266
|
+
export declare const GetDataSetDetailsResponseFilterSensitiveLog: (
|
|
1267
|
+
obj: GetDataSetDetailsResponse
|
|
1268
|
+
) => any;
|
|
1269
|
+
|
|
1270
|
+
export declare const GetDataSetImportTaskRequestFilterSensitiveLog: (
|
|
1271
|
+
obj: GetDataSetImportTaskRequest
|
|
1272
|
+
) => any;
|
|
1273
|
+
|
|
1274
|
+
export declare const DataSetImportSummaryFilterSensitiveLog: (
|
|
1275
|
+
obj: DataSetImportSummary
|
|
1276
|
+
) => any;
|
|
1277
|
+
|
|
1278
|
+
export declare const GetDataSetImportTaskResponseFilterSensitiveLog: (
|
|
1279
|
+
obj: GetDataSetImportTaskResponse
|
|
1280
|
+
) => any;
|
|
1281
|
+
|
|
1282
|
+
export declare const GetDeploymentRequestFilterSensitiveLog: (
|
|
1283
|
+
obj: GetDeploymentRequest
|
|
1284
|
+
) => any;
|
|
1285
|
+
|
|
1286
|
+
export declare const GetDeploymentResponseFilterSensitiveLog: (
|
|
1287
|
+
obj: GetDeploymentResponse
|
|
1288
|
+
) => any;
|
|
1289
|
+
|
|
1290
|
+
export declare const ListApplicationsRequestFilterSensitiveLog: (
|
|
1291
|
+
obj: ListApplicationsRequest
|
|
1292
|
+
) => any;
|
|
1293
|
+
|
|
1294
|
+
export declare const ApplicationSummaryFilterSensitiveLog: (
|
|
1295
|
+
obj: ApplicationSummary
|
|
1296
|
+
) => any;
|
|
1297
|
+
|
|
1298
|
+
export declare const ListApplicationsResponseFilterSensitiveLog: (
|
|
1299
|
+
obj: ListApplicationsResponse
|
|
1300
|
+
) => any;
|
|
1301
|
+
|
|
1302
|
+
export declare const ListApplicationVersionsRequestFilterSensitiveLog: (
|
|
1303
|
+
obj: ListApplicationVersionsRequest
|
|
1304
|
+
) => any;
|
|
1305
|
+
|
|
1306
|
+
export declare const ListApplicationVersionsResponseFilterSensitiveLog: (
|
|
1307
|
+
obj: ListApplicationVersionsResponse
|
|
1308
|
+
) => any;
|
|
1309
|
+
|
|
1310
|
+
export declare const ListBatchJobDefinitionsRequestFilterSensitiveLog: (
|
|
1311
|
+
obj: ListBatchJobDefinitionsRequest
|
|
1312
|
+
) => any;
|
|
1313
|
+
|
|
1314
|
+
export declare const FileBatchJobDefinitionFilterSensitiveLog: (
|
|
1315
|
+
obj: FileBatchJobDefinition
|
|
1316
|
+
) => any;
|
|
1317
|
+
|
|
1318
|
+
export declare const ScriptBatchJobDefinitionFilterSensitiveLog: (
|
|
1319
|
+
obj: ScriptBatchJobDefinition
|
|
1320
|
+
) => any;
|
|
1321
|
+
|
|
1322
|
+
export declare const BatchJobDefinitionFilterSensitiveLog: (
|
|
1323
|
+
obj: BatchJobDefinition
|
|
1324
|
+
) => any;
|
|
1325
|
+
|
|
1326
|
+
export declare const ListBatchJobDefinitionsResponseFilterSensitiveLog: (
|
|
1327
|
+
obj: ListBatchJobDefinitionsResponse
|
|
1328
|
+
) => any;
|
|
1329
|
+
|
|
1330
|
+
export declare const ListBatchJobExecutionsRequestFilterSensitiveLog: (
|
|
1331
|
+
obj: ListBatchJobExecutionsRequest
|
|
1332
|
+
) => any;
|
|
1333
|
+
|
|
1334
|
+
export declare const BatchJobExecutionSummaryFilterSensitiveLog: (
|
|
1335
|
+
obj: BatchJobExecutionSummary
|
|
1336
|
+
) => any;
|
|
1337
|
+
|
|
1338
|
+
export declare const ListBatchJobExecutionsResponseFilterSensitiveLog: (
|
|
1339
|
+
obj: ListBatchJobExecutionsResponse
|
|
1340
|
+
) => any;
|
|
1341
|
+
|
|
1342
|
+
export declare const ListDataSetImportHistoryRequestFilterSensitiveLog: (
|
|
1343
|
+
obj: ListDataSetImportHistoryRequest
|
|
1344
|
+
) => any;
|
|
1345
|
+
|
|
1346
|
+
export declare const DataSetImportTaskFilterSensitiveLog: (
|
|
1347
|
+
obj: DataSetImportTask
|
|
1348
|
+
) => any;
|
|
1349
|
+
|
|
1350
|
+
export declare const ListDataSetImportHistoryResponseFilterSensitiveLog: (
|
|
1351
|
+
obj: ListDataSetImportHistoryResponse
|
|
1352
|
+
) => any;
|
|
1353
|
+
|
|
1354
|
+
export declare const ListDataSetsRequestFilterSensitiveLog: (
|
|
1355
|
+
obj: ListDataSetsRequest
|
|
1356
|
+
) => any;
|
|
1357
|
+
|
|
1358
|
+
export declare const DataSetSummaryFilterSensitiveLog: (
|
|
1359
|
+
obj: DataSetSummary
|
|
1360
|
+
) => any;
|
|
1361
|
+
|
|
1362
|
+
export declare const ListDataSetsResponseFilterSensitiveLog: (
|
|
1363
|
+
obj: ListDataSetsResponse
|
|
1364
|
+
) => any;
|
|
1365
|
+
|
|
1366
|
+
export declare const ListDeploymentsRequestFilterSensitiveLog: (
|
|
1367
|
+
obj: ListDeploymentsRequest
|
|
1368
|
+
) => any;
|
|
1369
|
+
|
|
1370
|
+
export declare const DeploymentSummaryFilterSensitiveLog: (
|
|
1371
|
+
obj: DeploymentSummary
|
|
1372
|
+
) => any;
|
|
1373
|
+
|
|
1374
|
+
export declare const ListDeploymentsResponseFilterSensitiveLog: (
|
|
1375
|
+
obj: ListDeploymentsResponse
|
|
1376
|
+
) => any;
|
|
1377
|
+
|
|
1378
|
+
export declare const StartApplicationRequestFilterSensitiveLog: (
|
|
1379
|
+
obj: StartApplicationRequest
|
|
1380
|
+
) => any;
|
|
1381
|
+
|
|
1382
|
+
export declare const StartApplicationResponseFilterSensitiveLog: (
|
|
1383
|
+
obj: StartApplicationResponse
|
|
1384
|
+
) => any;
|
|
1385
|
+
|
|
1386
|
+
export declare const FileBatchJobIdentifierFilterSensitiveLog: (
|
|
1387
|
+
obj: FileBatchJobIdentifier
|
|
1388
|
+
) => any;
|
|
1389
|
+
|
|
1390
|
+
export declare const ScriptBatchJobIdentifierFilterSensitiveLog: (
|
|
1391
|
+
obj: ScriptBatchJobIdentifier
|
|
1392
|
+
) => any;
|
|
1393
|
+
|
|
1394
|
+
export declare const BatchJobIdentifierFilterSensitiveLog: (
|
|
1395
|
+
obj: BatchJobIdentifier
|
|
1396
|
+
) => any;
|
|
1397
|
+
|
|
1398
|
+
export declare const StartBatchJobRequestFilterSensitiveLog: (
|
|
1399
|
+
obj: StartBatchJobRequest
|
|
1400
|
+
) => any;
|
|
1401
|
+
|
|
1402
|
+
export declare const StartBatchJobResponseFilterSensitiveLog: (
|
|
1403
|
+
obj: StartBatchJobResponse
|
|
1404
|
+
) => any;
|
|
1405
|
+
|
|
1406
|
+
export declare const StopApplicationRequestFilterSensitiveLog: (
|
|
1407
|
+
obj: StopApplicationRequest
|
|
1408
|
+
) => any;
|
|
1409
|
+
|
|
1410
|
+
export declare const StopApplicationResponseFilterSensitiveLog: (
|
|
1411
|
+
obj: StopApplicationResponse
|
|
1412
|
+
) => any;
|
|
1413
|
+
|
|
1414
|
+
export declare const UpdateApplicationRequestFilterSensitiveLog: (
|
|
1415
|
+
obj: UpdateApplicationRequest
|
|
1416
|
+
) => any;
|
|
1417
|
+
|
|
1418
|
+
export declare const UpdateApplicationResponseFilterSensitiveLog: (
|
|
1419
|
+
obj: UpdateApplicationResponse
|
|
1420
|
+
) => any;
|
|
1421
|
+
|
|
1422
|
+
export declare const HighAvailabilityConfigFilterSensitiveLog: (
|
|
1423
|
+
obj: HighAvailabilityConfig
|
|
1424
|
+
) => any;
|
|
1425
|
+
|
|
1426
|
+
export declare const EfsStorageConfigurationFilterSensitiveLog: (
|
|
1427
|
+
obj: EfsStorageConfiguration
|
|
1428
|
+
) => any;
|
|
1429
|
+
|
|
1430
|
+
export declare const FsxStorageConfigurationFilterSensitiveLog: (
|
|
1431
|
+
obj: FsxStorageConfiguration
|
|
1432
|
+
) => any;
|
|
1433
|
+
|
|
1434
|
+
export declare const StorageConfigurationFilterSensitiveLog: (
|
|
1435
|
+
obj: StorageConfiguration
|
|
1436
|
+
) => any;
|
|
1437
|
+
|
|
1438
|
+
export declare const CreateEnvironmentRequestFilterSensitiveLog: (
|
|
1439
|
+
obj: CreateEnvironmentRequest
|
|
1440
|
+
) => any;
|
|
1441
|
+
|
|
1442
|
+
export declare const CreateEnvironmentResponseFilterSensitiveLog: (
|
|
1443
|
+
obj: CreateEnvironmentResponse
|
|
1444
|
+
) => any;
|
|
1445
|
+
|
|
1446
|
+
export declare const DeleteEnvironmentRequestFilterSensitiveLog: (
|
|
1447
|
+
obj: DeleteEnvironmentRequest
|
|
1448
|
+
) => any;
|
|
1449
|
+
|
|
1450
|
+
export declare const DeleteEnvironmentResponseFilterSensitiveLog: (
|
|
1451
|
+
obj: DeleteEnvironmentResponse
|
|
1452
|
+
) => any;
|
|
1453
|
+
|
|
1454
|
+
export declare const GetEnvironmentRequestFilterSensitiveLog: (
|
|
1455
|
+
obj: GetEnvironmentRequest
|
|
1456
|
+
) => any;
|
|
1457
|
+
|
|
1458
|
+
export declare const MaintenanceScheduleFilterSensitiveLog: (
|
|
1459
|
+
obj: MaintenanceSchedule
|
|
1460
|
+
) => any;
|
|
1461
|
+
|
|
1462
|
+
export declare const PendingMaintenanceFilterSensitiveLog: (
|
|
1463
|
+
obj: PendingMaintenance
|
|
1464
|
+
) => any;
|
|
1465
|
+
|
|
1466
|
+
export declare const GetEnvironmentResponseFilterSensitiveLog: (
|
|
1467
|
+
obj: GetEnvironmentResponse
|
|
1468
|
+
) => any;
|
|
1469
|
+
|
|
1470
|
+
export declare const ListEnvironmentsRequestFilterSensitiveLog: (
|
|
1471
|
+
obj: ListEnvironmentsRequest
|
|
1472
|
+
) => any;
|
|
1473
|
+
|
|
1474
|
+
export declare const EnvironmentSummaryFilterSensitiveLog: (
|
|
1475
|
+
obj: EnvironmentSummary
|
|
1476
|
+
) => any;
|
|
1477
|
+
|
|
1478
|
+
export declare const ListEnvironmentsResponseFilterSensitiveLog: (
|
|
1479
|
+
obj: ListEnvironmentsResponse
|
|
1480
|
+
) => any;
|
|
1481
|
+
|
|
1482
|
+
export declare const UpdateEnvironmentRequestFilterSensitiveLog: (
|
|
1483
|
+
obj: UpdateEnvironmentRequest
|
|
1484
|
+
) => any;
|
|
1485
|
+
|
|
1486
|
+
export declare const UpdateEnvironmentResponseFilterSensitiveLog: (
|
|
1487
|
+
obj: UpdateEnvironmentResponse
|
|
1488
|
+
) => any;
|
|
1489
|
+
|
|
1490
|
+
export declare const ListEngineVersionsRequestFilterSensitiveLog: (
|
|
1491
|
+
obj: ListEngineVersionsRequest
|
|
1492
|
+
) => any;
|
|
1493
|
+
|
|
1494
|
+
export declare const EngineVersionsSummaryFilterSensitiveLog: (
|
|
1495
|
+
obj: EngineVersionsSummary
|
|
1496
|
+
) => any;
|
|
1497
|
+
|
|
1498
|
+
export declare const ListEngineVersionsResponseFilterSensitiveLog: (
|
|
1499
|
+
obj: ListEngineVersionsResponse
|
|
1500
|
+
) => any;
|
|
1501
|
+
|
|
1502
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1503
|
+
obj: ListTagsForResourceRequest
|
|
1504
|
+
) => any;
|
|
1505
|
+
|
|
1506
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1507
|
+
obj: ListTagsForResourceResponse
|
|
1508
|
+
) => any;
|
|
1509
|
+
|
|
1510
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1511
|
+
obj: TagResourceRequest
|
|
1512
|
+
) => any;
|
|
1513
|
+
|
|
1514
|
+
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1515
|
+
obj: TagResourceResponse
|
|
1516
|
+
) => any;
|
|
1517
|
+
|
|
1518
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1519
|
+
obj: UntagResourceRequest
|
|
1520
|
+
) => any;
|
|
1521
|
+
|
|
1522
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1523
|
+
obj: UntagResourceResponse
|
|
1524
|
+
) => any;
|