@aws-sdk/client-amplify 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/Amplify.d.ts +670 -190
- package/dist-types/ts3.4/AmplifyClient.d.ts +351 -110
- package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetAppCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopJobCommand.d.ts +32 -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/UpdateAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +37 -37
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AmplifyServiceException.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 +1277 -1196
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +449 -113
- 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,1196 +1,1277 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { AmplifyServiceException as __BaseException } from "./AmplifyServiceException";
|
|
3
|
-
|
|
4
|
-
export declare class BadRequestException 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
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
export declare enum Platform {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
export interface CreateAppRequest {
|
|
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
|
-
export
|
|
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
|
-
export interface CreateDeploymentResult {
|
|
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
|
-
export interface
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
export interface
|
|
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
|
-
export interface
|
|
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
|
-
export interface
|
|
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
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
export interface
|
|
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
|
-
export interface
|
|
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
|
-
export interface
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
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
|
-
export interface
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
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
|
-
|
|
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
|
-
export
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
export
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AmplifyServiceException as __BaseException } from "./AmplifyServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class BadRequestException extends __BaseException {
|
|
5
|
+
readonly name: "BadRequestException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
export declare enum Stage {
|
|
13
|
+
BETA = "BETA",
|
|
14
|
+
DEVELOPMENT = "DEVELOPMENT",
|
|
15
|
+
EXPERIMENTAL = "EXPERIMENTAL",
|
|
16
|
+
PRODUCTION = "PRODUCTION",
|
|
17
|
+
PULL_REQUEST = "PULL_REQUEST",
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface AutoBranchCreationConfig {
|
|
21
|
+
stage?: Stage | string;
|
|
22
|
+
|
|
23
|
+
framework?: string;
|
|
24
|
+
|
|
25
|
+
enableAutoBuild?: boolean;
|
|
26
|
+
|
|
27
|
+
environmentVariables?: Record<string, string>;
|
|
28
|
+
|
|
29
|
+
basicAuthCredentials?: string;
|
|
30
|
+
|
|
31
|
+
enableBasicAuth?: boolean;
|
|
32
|
+
|
|
33
|
+
enablePerformanceMode?: boolean;
|
|
34
|
+
|
|
35
|
+
buildSpec?: string;
|
|
36
|
+
|
|
37
|
+
enablePullRequestPreview?: boolean;
|
|
38
|
+
|
|
39
|
+
pullRequestEnvironmentName?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export interface CustomRule {
|
|
43
|
+
source: string | undefined;
|
|
44
|
+
|
|
45
|
+
target: string | undefined;
|
|
46
|
+
|
|
47
|
+
status?: string;
|
|
48
|
+
|
|
49
|
+
condition?: string;
|
|
50
|
+
}
|
|
51
|
+
export declare enum Platform {
|
|
52
|
+
WEB = "WEB",
|
|
53
|
+
WEB_DYNAMIC = "WEB_DYNAMIC",
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export interface CreateAppRequest {
|
|
57
|
+
name: string | undefined;
|
|
58
|
+
|
|
59
|
+
description?: string;
|
|
60
|
+
|
|
61
|
+
repository?: string;
|
|
62
|
+
|
|
63
|
+
platform?: Platform | string;
|
|
64
|
+
|
|
65
|
+
iamServiceRoleArn?: string;
|
|
66
|
+
|
|
67
|
+
oauthToken?: string;
|
|
68
|
+
|
|
69
|
+
accessToken?: string;
|
|
70
|
+
|
|
71
|
+
environmentVariables?: Record<string, string>;
|
|
72
|
+
|
|
73
|
+
enableBranchAutoBuild?: boolean;
|
|
74
|
+
|
|
75
|
+
enableBranchAutoDeletion?: boolean;
|
|
76
|
+
|
|
77
|
+
enableBasicAuth?: boolean;
|
|
78
|
+
|
|
79
|
+
basicAuthCredentials?: string;
|
|
80
|
+
|
|
81
|
+
customRules?: CustomRule[];
|
|
82
|
+
|
|
83
|
+
tags?: Record<string, string>;
|
|
84
|
+
|
|
85
|
+
buildSpec?: string;
|
|
86
|
+
|
|
87
|
+
customHeaders?: string;
|
|
88
|
+
|
|
89
|
+
enableAutoBranchCreation?: boolean;
|
|
90
|
+
|
|
91
|
+
autoBranchCreationPatterns?: string[];
|
|
92
|
+
|
|
93
|
+
autoBranchCreationConfig?: AutoBranchCreationConfig;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface ProductionBranch {
|
|
97
|
+
lastDeployTime?: Date;
|
|
98
|
+
|
|
99
|
+
status?: string;
|
|
100
|
+
|
|
101
|
+
thumbnailUrl?: string;
|
|
102
|
+
|
|
103
|
+
branchName?: string;
|
|
104
|
+
}
|
|
105
|
+
export declare enum RepositoryCloneMethod {
|
|
106
|
+
SIGV4 = "SIGV4",
|
|
107
|
+
SSH = "SSH",
|
|
108
|
+
TOKEN = "TOKEN",
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export interface App {
|
|
112
|
+
appId: string | undefined;
|
|
113
|
+
|
|
114
|
+
appArn: string | undefined;
|
|
115
|
+
|
|
116
|
+
name: string | undefined;
|
|
117
|
+
|
|
118
|
+
tags?: Record<string, string>;
|
|
119
|
+
|
|
120
|
+
description: string | undefined;
|
|
121
|
+
|
|
122
|
+
repository: string | undefined;
|
|
123
|
+
|
|
124
|
+
platform: Platform | string | undefined;
|
|
125
|
+
|
|
126
|
+
createTime: Date | undefined;
|
|
127
|
+
|
|
128
|
+
updateTime: Date | undefined;
|
|
129
|
+
|
|
130
|
+
iamServiceRoleArn?: string;
|
|
131
|
+
|
|
132
|
+
environmentVariables: Record<string, string> | undefined;
|
|
133
|
+
|
|
134
|
+
defaultDomain: string | undefined;
|
|
135
|
+
|
|
136
|
+
enableBranchAutoBuild: boolean | undefined;
|
|
137
|
+
|
|
138
|
+
enableBranchAutoDeletion?: boolean;
|
|
139
|
+
|
|
140
|
+
enableBasicAuth: boolean | undefined;
|
|
141
|
+
|
|
142
|
+
basicAuthCredentials?: string;
|
|
143
|
+
|
|
144
|
+
customRules?: CustomRule[];
|
|
145
|
+
|
|
146
|
+
productionBranch?: ProductionBranch;
|
|
147
|
+
|
|
148
|
+
buildSpec?: string;
|
|
149
|
+
|
|
150
|
+
customHeaders?: string;
|
|
151
|
+
|
|
152
|
+
enableAutoBranchCreation?: boolean;
|
|
153
|
+
|
|
154
|
+
autoBranchCreationPatterns?: string[];
|
|
155
|
+
|
|
156
|
+
autoBranchCreationConfig?: AutoBranchCreationConfig;
|
|
157
|
+
|
|
158
|
+
repositoryCloneMethod?: RepositoryCloneMethod | string;
|
|
159
|
+
}
|
|
160
|
+
export interface CreateAppResult {
|
|
161
|
+
app: App | undefined;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export declare class DependentServiceFailureException extends __BaseException {
|
|
165
|
+
readonly name: "DependentServiceFailureException";
|
|
166
|
+
readonly $fault: "server";
|
|
167
|
+
|
|
168
|
+
constructor(
|
|
169
|
+
opts: __ExceptionOptionType<
|
|
170
|
+
DependentServiceFailureException,
|
|
171
|
+
__BaseException
|
|
172
|
+
>
|
|
173
|
+
);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
export declare class InternalFailureException extends __BaseException {
|
|
177
|
+
readonly name: "InternalFailureException";
|
|
178
|
+
readonly $fault: "server";
|
|
179
|
+
|
|
180
|
+
constructor(
|
|
181
|
+
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
182
|
+
);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
export declare class LimitExceededException extends __BaseException {
|
|
186
|
+
readonly name: "LimitExceededException";
|
|
187
|
+
readonly $fault: "client";
|
|
188
|
+
|
|
189
|
+
constructor(
|
|
190
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
191
|
+
);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
195
|
+
readonly name: "UnauthorizedException";
|
|
196
|
+
readonly $fault: "client";
|
|
197
|
+
|
|
198
|
+
constructor(
|
|
199
|
+
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
200
|
+
);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export interface CreateBackendEnvironmentRequest {
|
|
204
|
+
appId: string | undefined;
|
|
205
|
+
|
|
206
|
+
environmentName: string | undefined;
|
|
207
|
+
|
|
208
|
+
stackName?: string;
|
|
209
|
+
|
|
210
|
+
deploymentArtifacts?: string;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export interface BackendEnvironment {
|
|
214
|
+
backendEnvironmentArn: string | undefined;
|
|
215
|
+
|
|
216
|
+
environmentName: string | undefined;
|
|
217
|
+
|
|
218
|
+
stackName?: string;
|
|
219
|
+
|
|
220
|
+
deploymentArtifacts?: string;
|
|
221
|
+
|
|
222
|
+
createTime: Date | undefined;
|
|
223
|
+
|
|
224
|
+
updateTime: Date | undefined;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export interface CreateBackendEnvironmentResult {
|
|
228
|
+
backendEnvironment: BackendEnvironment | undefined;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export declare class NotFoundException extends __BaseException {
|
|
232
|
+
readonly name: "NotFoundException";
|
|
233
|
+
readonly $fault: "client";
|
|
234
|
+
|
|
235
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
export interface CreateBranchRequest {
|
|
239
|
+
appId: string | undefined;
|
|
240
|
+
|
|
241
|
+
branchName: string | undefined;
|
|
242
|
+
|
|
243
|
+
description?: string;
|
|
244
|
+
|
|
245
|
+
stage?: Stage | string;
|
|
246
|
+
|
|
247
|
+
framework?: string;
|
|
248
|
+
|
|
249
|
+
enableNotification?: boolean;
|
|
250
|
+
|
|
251
|
+
enableAutoBuild?: boolean;
|
|
252
|
+
|
|
253
|
+
environmentVariables?: Record<string, string>;
|
|
254
|
+
|
|
255
|
+
basicAuthCredentials?: string;
|
|
256
|
+
|
|
257
|
+
enableBasicAuth?: boolean;
|
|
258
|
+
|
|
259
|
+
enablePerformanceMode?: boolean;
|
|
260
|
+
|
|
261
|
+
tags?: Record<string, string>;
|
|
262
|
+
|
|
263
|
+
buildSpec?: string;
|
|
264
|
+
|
|
265
|
+
ttl?: string;
|
|
266
|
+
|
|
267
|
+
displayName?: string;
|
|
268
|
+
|
|
269
|
+
enablePullRequestPreview?: boolean;
|
|
270
|
+
|
|
271
|
+
pullRequestEnvironmentName?: string;
|
|
272
|
+
|
|
273
|
+
backendEnvironmentArn?: string;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
export interface Branch {
|
|
277
|
+
branchArn: string | undefined;
|
|
278
|
+
|
|
279
|
+
branchName: string | undefined;
|
|
280
|
+
|
|
281
|
+
description: string | undefined;
|
|
282
|
+
|
|
283
|
+
tags?: Record<string, string>;
|
|
284
|
+
|
|
285
|
+
stage: Stage | string | undefined;
|
|
286
|
+
|
|
287
|
+
displayName: string | undefined;
|
|
288
|
+
|
|
289
|
+
enableNotification: boolean | undefined;
|
|
290
|
+
|
|
291
|
+
createTime: Date | undefined;
|
|
292
|
+
|
|
293
|
+
updateTime: Date | undefined;
|
|
294
|
+
|
|
295
|
+
environmentVariables: Record<string, string> | undefined;
|
|
296
|
+
|
|
297
|
+
enableAutoBuild: boolean | undefined;
|
|
298
|
+
|
|
299
|
+
customDomains: string[] | undefined;
|
|
300
|
+
|
|
301
|
+
framework: string | undefined;
|
|
302
|
+
|
|
303
|
+
activeJobId: string | undefined;
|
|
304
|
+
|
|
305
|
+
totalNumberOfJobs: string | undefined;
|
|
306
|
+
|
|
307
|
+
enableBasicAuth: boolean | undefined;
|
|
308
|
+
|
|
309
|
+
enablePerformanceMode?: boolean;
|
|
310
|
+
|
|
311
|
+
thumbnailUrl?: string;
|
|
312
|
+
|
|
313
|
+
basicAuthCredentials?: string;
|
|
314
|
+
|
|
315
|
+
buildSpec?: string;
|
|
316
|
+
|
|
317
|
+
ttl: string | undefined;
|
|
318
|
+
|
|
319
|
+
associatedResources?: string[];
|
|
320
|
+
|
|
321
|
+
enablePullRequestPreview: boolean | undefined;
|
|
322
|
+
|
|
323
|
+
pullRequestEnvironmentName?: string;
|
|
324
|
+
|
|
325
|
+
destinationBranch?: string;
|
|
326
|
+
|
|
327
|
+
sourceBranch?: string;
|
|
328
|
+
|
|
329
|
+
backendEnvironmentArn?: string;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
export interface CreateBranchResult {
|
|
333
|
+
branch: Branch | undefined;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
export interface CreateDeploymentRequest {
|
|
337
|
+
appId: string | undefined;
|
|
338
|
+
|
|
339
|
+
branchName: string | undefined;
|
|
340
|
+
|
|
341
|
+
fileMap?: Record<string, string>;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
export interface CreateDeploymentResult {
|
|
345
|
+
jobId?: string;
|
|
346
|
+
|
|
347
|
+
fileUploadUrls: Record<string, string> | undefined;
|
|
348
|
+
|
|
349
|
+
zipUploadUrl: string | undefined;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
export interface SubDomainSetting {
|
|
353
|
+
prefix: string | undefined;
|
|
354
|
+
|
|
355
|
+
branchName: string | undefined;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
export interface CreateDomainAssociationRequest {
|
|
359
|
+
appId: string | undefined;
|
|
360
|
+
|
|
361
|
+
domainName: string | undefined;
|
|
362
|
+
|
|
363
|
+
enableAutoSubDomain?: boolean;
|
|
364
|
+
|
|
365
|
+
subDomainSettings: SubDomainSetting[] | undefined;
|
|
366
|
+
|
|
367
|
+
autoSubDomainCreationPatterns?: string[];
|
|
368
|
+
|
|
369
|
+
autoSubDomainIAMRole?: string;
|
|
370
|
+
}
|
|
371
|
+
export declare enum DomainStatus {
|
|
372
|
+
AVAILABLE = "AVAILABLE",
|
|
373
|
+
CREATING = "CREATING",
|
|
374
|
+
FAILED = "FAILED",
|
|
375
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
376
|
+
PENDING_DEPLOYMENT = "PENDING_DEPLOYMENT",
|
|
377
|
+
PENDING_VERIFICATION = "PENDING_VERIFICATION",
|
|
378
|
+
REQUESTING_CERTIFICATE = "REQUESTING_CERTIFICATE",
|
|
379
|
+
UPDATING = "UPDATING",
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
export interface SubDomain {
|
|
383
|
+
subDomainSetting: SubDomainSetting | undefined;
|
|
384
|
+
|
|
385
|
+
verified: boolean | undefined;
|
|
386
|
+
|
|
387
|
+
dnsRecord: string | undefined;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
export interface DomainAssociation {
|
|
391
|
+
domainAssociationArn: string | undefined;
|
|
392
|
+
|
|
393
|
+
domainName: string | undefined;
|
|
394
|
+
|
|
395
|
+
enableAutoSubDomain: boolean | undefined;
|
|
396
|
+
|
|
397
|
+
autoSubDomainCreationPatterns?: string[];
|
|
398
|
+
|
|
399
|
+
autoSubDomainIAMRole?: string;
|
|
400
|
+
|
|
401
|
+
domainStatus: DomainStatus | string | undefined;
|
|
402
|
+
|
|
403
|
+
statusReason: string | undefined;
|
|
404
|
+
|
|
405
|
+
certificateVerificationDNSRecord?: string;
|
|
406
|
+
|
|
407
|
+
subDomains: SubDomain[] | undefined;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
export interface CreateDomainAssociationResult {
|
|
411
|
+
domainAssociation: DomainAssociation | undefined;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
export interface CreateWebhookRequest {
|
|
415
|
+
appId: string | undefined;
|
|
416
|
+
|
|
417
|
+
branchName: string | undefined;
|
|
418
|
+
|
|
419
|
+
description?: string;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
export interface Webhook {
|
|
423
|
+
webhookArn: string | undefined;
|
|
424
|
+
|
|
425
|
+
webhookId: string | undefined;
|
|
426
|
+
|
|
427
|
+
webhookUrl: string | undefined;
|
|
428
|
+
|
|
429
|
+
branchName: string | undefined;
|
|
430
|
+
|
|
431
|
+
description: string | undefined;
|
|
432
|
+
|
|
433
|
+
createTime: Date | undefined;
|
|
434
|
+
|
|
435
|
+
updateTime: Date | undefined;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
export interface CreateWebhookResult {
|
|
439
|
+
webhook: Webhook | undefined;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
export interface DeleteAppRequest {
|
|
443
|
+
appId: string | undefined;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
export interface DeleteAppResult {
|
|
447
|
+
app: App | undefined;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
export interface DeleteBackendEnvironmentRequest {
|
|
451
|
+
appId: string | undefined;
|
|
452
|
+
|
|
453
|
+
environmentName: string | undefined;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
export interface DeleteBackendEnvironmentResult {
|
|
457
|
+
backendEnvironment: BackendEnvironment | undefined;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
export interface DeleteBranchRequest {
|
|
461
|
+
appId: string | undefined;
|
|
462
|
+
|
|
463
|
+
branchName: string | undefined;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
export interface DeleteBranchResult {
|
|
467
|
+
branch: Branch | undefined;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
export interface DeleteDomainAssociationRequest {
|
|
471
|
+
appId: string | undefined;
|
|
472
|
+
|
|
473
|
+
domainName: string | undefined;
|
|
474
|
+
}
|
|
475
|
+
export interface DeleteDomainAssociationResult {
|
|
476
|
+
domainAssociation: DomainAssociation | undefined;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
export interface DeleteJobRequest {
|
|
480
|
+
appId: string | undefined;
|
|
481
|
+
|
|
482
|
+
branchName: string | undefined;
|
|
483
|
+
|
|
484
|
+
jobId: string | undefined;
|
|
485
|
+
}
|
|
486
|
+
export declare enum JobType {
|
|
487
|
+
MANUAL = "MANUAL",
|
|
488
|
+
RELEASE = "RELEASE",
|
|
489
|
+
RETRY = "RETRY",
|
|
490
|
+
WEB_HOOK = "WEB_HOOK",
|
|
491
|
+
}
|
|
492
|
+
export declare enum JobStatus {
|
|
493
|
+
CANCELLED = "CANCELLED",
|
|
494
|
+
CANCELLING = "CANCELLING",
|
|
495
|
+
FAILED = "FAILED",
|
|
496
|
+
PENDING = "PENDING",
|
|
497
|
+
PROVISIONING = "PROVISIONING",
|
|
498
|
+
RUNNING = "RUNNING",
|
|
499
|
+
SUCCEED = "SUCCEED",
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
export interface JobSummary {
|
|
503
|
+
jobArn: string | undefined;
|
|
504
|
+
|
|
505
|
+
jobId: string | undefined;
|
|
506
|
+
|
|
507
|
+
commitId: string | undefined;
|
|
508
|
+
|
|
509
|
+
commitMessage: string | undefined;
|
|
510
|
+
|
|
511
|
+
commitTime: Date | undefined;
|
|
512
|
+
|
|
513
|
+
startTime: Date | undefined;
|
|
514
|
+
|
|
515
|
+
status: JobStatus | string | undefined;
|
|
516
|
+
|
|
517
|
+
endTime?: Date;
|
|
518
|
+
|
|
519
|
+
jobType: JobType | string | undefined;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
export interface DeleteJobResult {
|
|
523
|
+
jobSummary: JobSummary | undefined;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
export interface DeleteWebhookRequest {
|
|
527
|
+
webhookId: string | undefined;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
export interface DeleteWebhookResult {
|
|
531
|
+
webhook: Webhook | undefined;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
export interface GenerateAccessLogsRequest {
|
|
535
|
+
startTime?: Date;
|
|
536
|
+
|
|
537
|
+
endTime?: Date;
|
|
538
|
+
|
|
539
|
+
domainName: string | undefined;
|
|
540
|
+
|
|
541
|
+
appId: string | undefined;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
export interface GenerateAccessLogsResult {
|
|
545
|
+
logUrl?: string;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
export interface GetAppRequest {
|
|
549
|
+
appId: string | undefined;
|
|
550
|
+
}
|
|
551
|
+
export interface GetAppResult {
|
|
552
|
+
app: App | undefined;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
export interface GetArtifactUrlRequest {
|
|
556
|
+
artifactId: string | undefined;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
export interface GetArtifactUrlResult {
|
|
560
|
+
artifactId: string | undefined;
|
|
561
|
+
|
|
562
|
+
artifactUrl: string | undefined;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
export interface GetBackendEnvironmentRequest {
|
|
566
|
+
appId: string | undefined;
|
|
567
|
+
|
|
568
|
+
environmentName: string | undefined;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
export interface GetBackendEnvironmentResult {
|
|
572
|
+
backendEnvironment: BackendEnvironment | undefined;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
export interface GetBranchRequest {
|
|
576
|
+
appId: string | undefined;
|
|
577
|
+
|
|
578
|
+
branchName: string | undefined;
|
|
579
|
+
}
|
|
580
|
+
export interface GetBranchResult {
|
|
581
|
+
branch: Branch | undefined;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
export interface GetDomainAssociationRequest {
|
|
585
|
+
appId: string | undefined;
|
|
586
|
+
|
|
587
|
+
domainName: string | undefined;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
export interface GetDomainAssociationResult {
|
|
591
|
+
domainAssociation: DomainAssociation | undefined;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
export interface GetJobRequest {
|
|
595
|
+
appId: string | undefined;
|
|
596
|
+
|
|
597
|
+
branchName: string | undefined;
|
|
598
|
+
|
|
599
|
+
jobId: string | undefined;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
export interface Step {
|
|
603
|
+
stepName: string | undefined;
|
|
604
|
+
|
|
605
|
+
startTime: Date | undefined;
|
|
606
|
+
|
|
607
|
+
status: JobStatus | string | undefined;
|
|
608
|
+
|
|
609
|
+
endTime: Date | undefined;
|
|
610
|
+
|
|
611
|
+
logUrl?: string;
|
|
612
|
+
|
|
613
|
+
artifactsUrl?: string;
|
|
614
|
+
|
|
615
|
+
testArtifactsUrl?: string;
|
|
616
|
+
|
|
617
|
+
testConfigUrl?: string;
|
|
618
|
+
|
|
619
|
+
screenshots?: Record<string, string>;
|
|
620
|
+
|
|
621
|
+
statusReason?: string;
|
|
622
|
+
|
|
623
|
+
context?: string;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
export interface Job {
|
|
627
|
+
summary: JobSummary | undefined;
|
|
628
|
+
|
|
629
|
+
steps: Step[] | undefined;
|
|
630
|
+
}
|
|
631
|
+
export interface GetJobResult {
|
|
632
|
+
job: Job | undefined;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
export interface GetWebhookRequest {
|
|
636
|
+
webhookId: string | undefined;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
export interface GetWebhookResult {
|
|
640
|
+
webhook: Webhook | undefined;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
export interface ListAppsRequest {
|
|
644
|
+
nextToken?: string;
|
|
645
|
+
|
|
646
|
+
maxResults?: number;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
export interface ListAppsResult {
|
|
650
|
+
apps: App[] | undefined;
|
|
651
|
+
|
|
652
|
+
nextToken?: string;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
export interface ListArtifactsRequest {
|
|
656
|
+
appId: string | undefined;
|
|
657
|
+
|
|
658
|
+
branchName: string | undefined;
|
|
659
|
+
|
|
660
|
+
jobId: string | undefined;
|
|
661
|
+
|
|
662
|
+
nextToken?: string;
|
|
663
|
+
|
|
664
|
+
maxResults?: number;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
export interface Artifact {
|
|
668
|
+
artifactFileName: string | undefined;
|
|
669
|
+
|
|
670
|
+
artifactId: string | undefined;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
export interface ListArtifactsResult {
|
|
674
|
+
artifacts: Artifact[] | undefined;
|
|
675
|
+
|
|
676
|
+
nextToken?: string;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
export interface ListBackendEnvironmentsRequest {
|
|
680
|
+
appId: string | undefined;
|
|
681
|
+
|
|
682
|
+
environmentName?: string;
|
|
683
|
+
|
|
684
|
+
nextToken?: string;
|
|
685
|
+
|
|
686
|
+
maxResults?: number;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
export interface ListBackendEnvironmentsResult {
|
|
690
|
+
backendEnvironments: BackendEnvironment[] | undefined;
|
|
691
|
+
|
|
692
|
+
nextToken?: string;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
export interface ListBranchesRequest {
|
|
696
|
+
appId: string | undefined;
|
|
697
|
+
|
|
698
|
+
nextToken?: string;
|
|
699
|
+
|
|
700
|
+
maxResults?: number;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
export interface ListBranchesResult {
|
|
704
|
+
branches: Branch[] | undefined;
|
|
705
|
+
|
|
706
|
+
nextToken?: string;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
export interface ListDomainAssociationsRequest {
|
|
710
|
+
appId: string | undefined;
|
|
711
|
+
|
|
712
|
+
nextToken?: string;
|
|
713
|
+
|
|
714
|
+
maxResults?: number;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
export interface ListDomainAssociationsResult {
|
|
718
|
+
domainAssociations: DomainAssociation[] | undefined;
|
|
719
|
+
|
|
720
|
+
nextToken?: string;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
export interface ListJobsRequest {
|
|
724
|
+
appId: string | undefined;
|
|
725
|
+
|
|
726
|
+
branchName: string | undefined;
|
|
727
|
+
|
|
728
|
+
nextToken?: string;
|
|
729
|
+
|
|
730
|
+
maxResults?: number;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
export interface ListJobsResult {
|
|
734
|
+
jobSummaries: JobSummary[] | undefined;
|
|
735
|
+
|
|
736
|
+
nextToken?: string;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
export interface ListTagsForResourceRequest {
|
|
740
|
+
resourceArn: string | undefined;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
export interface ListTagsForResourceResponse {
|
|
744
|
+
tags?: Record<string, string>;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
748
|
+
readonly name: "ResourceNotFoundException";
|
|
749
|
+
readonly $fault: "client";
|
|
750
|
+
code: string | undefined;
|
|
751
|
+
|
|
752
|
+
constructor(
|
|
753
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
754
|
+
);
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
export interface ListWebhooksRequest {
|
|
758
|
+
appId: string | undefined;
|
|
759
|
+
|
|
760
|
+
nextToken?: string;
|
|
761
|
+
|
|
762
|
+
maxResults?: number;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
export interface ListWebhooksResult {
|
|
766
|
+
webhooks: Webhook[] | undefined;
|
|
767
|
+
|
|
768
|
+
nextToken?: string;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
export interface StartDeploymentRequest {
|
|
772
|
+
appId: string | undefined;
|
|
773
|
+
|
|
774
|
+
branchName: string | undefined;
|
|
775
|
+
|
|
776
|
+
jobId?: string;
|
|
777
|
+
|
|
778
|
+
sourceUrl?: string;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
export interface StartDeploymentResult {
|
|
782
|
+
jobSummary: JobSummary | undefined;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
export interface StartJobRequest {
|
|
786
|
+
appId: string | undefined;
|
|
787
|
+
|
|
788
|
+
branchName: string | undefined;
|
|
789
|
+
|
|
790
|
+
jobId?: string;
|
|
791
|
+
|
|
792
|
+
jobType: JobType | string | undefined;
|
|
793
|
+
|
|
794
|
+
jobReason?: string;
|
|
795
|
+
|
|
796
|
+
commitId?: string;
|
|
797
|
+
|
|
798
|
+
commitMessage?: string;
|
|
799
|
+
|
|
800
|
+
commitTime?: Date;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
export interface StartJobResult {
|
|
804
|
+
jobSummary: JobSummary | undefined;
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
export interface StopJobRequest {
|
|
808
|
+
appId: string | undefined;
|
|
809
|
+
|
|
810
|
+
branchName: string | undefined;
|
|
811
|
+
|
|
812
|
+
jobId: string | undefined;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
export interface StopJobResult {
|
|
816
|
+
jobSummary: JobSummary | undefined;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
export interface TagResourceRequest {
|
|
820
|
+
resourceArn: string | undefined;
|
|
821
|
+
|
|
822
|
+
tags: Record<string, string> | undefined;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
export interface TagResourceResponse {}
|
|
826
|
+
|
|
827
|
+
export interface UntagResourceRequest {
|
|
828
|
+
resourceArn: string | undefined;
|
|
829
|
+
|
|
830
|
+
tagKeys: string[] | undefined;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
export interface UntagResourceResponse {}
|
|
834
|
+
|
|
835
|
+
export interface UpdateAppRequest {
|
|
836
|
+
appId: string | undefined;
|
|
837
|
+
|
|
838
|
+
name?: string;
|
|
839
|
+
|
|
840
|
+
description?: string;
|
|
841
|
+
|
|
842
|
+
platform?: Platform | string;
|
|
843
|
+
|
|
844
|
+
iamServiceRoleArn?: string;
|
|
845
|
+
|
|
846
|
+
environmentVariables?: Record<string, string>;
|
|
847
|
+
|
|
848
|
+
enableBranchAutoBuild?: boolean;
|
|
849
|
+
|
|
850
|
+
enableBranchAutoDeletion?: boolean;
|
|
851
|
+
|
|
852
|
+
enableBasicAuth?: boolean;
|
|
853
|
+
|
|
854
|
+
basicAuthCredentials?: string;
|
|
855
|
+
|
|
856
|
+
customRules?: CustomRule[];
|
|
857
|
+
|
|
858
|
+
buildSpec?: string;
|
|
859
|
+
|
|
860
|
+
customHeaders?: string;
|
|
861
|
+
|
|
862
|
+
enableAutoBranchCreation?: boolean;
|
|
863
|
+
|
|
864
|
+
autoBranchCreationPatterns?: string[];
|
|
865
|
+
|
|
866
|
+
autoBranchCreationConfig?: AutoBranchCreationConfig;
|
|
867
|
+
|
|
868
|
+
repository?: string;
|
|
869
|
+
|
|
870
|
+
oauthToken?: string;
|
|
871
|
+
|
|
872
|
+
accessToken?: string;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
export interface UpdateAppResult {
|
|
876
|
+
app: App | undefined;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
export interface UpdateBranchRequest {
|
|
880
|
+
appId: string | undefined;
|
|
881
|
+
|
|
882
|
+
branchName: string | undefined;
|
|
883
|
+
|
|
884
|
+
description?: string;
|
|
885
|
+
|
|
886
|
+
framework?: string;
|
|
887
|
+
|
|
888
|
+
stage?: Stage | string;
|
|
889
|
+
|
|
890
|
+
enableNotification?: boolean;
|
|
891
|
+
|
|
892
|
+
enableAutoBuild?: boolean;
|
|
893
|
+
|
|
894
|
+
environmentVariables?: Record<string, string>;
|
|
895
|
+
|
|
896
|
+
basicAuthCredentials?: string;
|
|
897
|
+
|
|
898
|
+
enableBasicAuth?: boolean;
|
|
899
|
+
|
|
900
|
+
enablePerformanceMode?: boolean;
|
|
901
|
+
|
|
902
|
+
buildSpec?: string;
|
|
903
|
+
|
|
904
|
+
ttl?: string;
|
|
905
|
+
|
|
906
|
+
displayName?: string;
|
|
907
|
+
|
|
908
|
+
enablePullRequestPreview?: boolean;
|
|
909
|
+
|
|
910
|
+
pullRequestEnvironmentName?: string;
|
|
911
|
+
|
|
912
|
+
backendEnvironmentArn?: string;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
export interface UpdateBranchResult {
|
|
916
|
+
branch: Branch | undefined;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
export interface UpdateDomainAssociationRequest {
|
|
920
|
+
appId: string | undefined;
|
|
921
|
+
|
|
922
|
+
domainName: string | undefined;
|
|
923
|
+
|
|
924
|
+
enableAutoSubDomain?: boolean;
|
|
925
|
+
|
|
926
|
+
subDomainSettings?: SubDomainSetting[];
|
|
927
|
+
|
|
928
|
+
autoSubDomainCreationPatterns?: string[];
|
|
929
|
+
|
|
930
|
+
autoSubDomainIAMRole?: string;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
export interface UpdateDomainAssociationResult {
|
|
934
|
+
domainAssociation: DomainAssociation | undefined;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
export interface UpdateWebhookRequest {
|
|
938
|
+
webhookId: string | undefined;
|
|
939
|
+
|
|
940
|
+
branchName?: string;
|
|
941
|
+
|
|
942
|
+
description?: string;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
export interface UpdateWebhookResult {
|
|
946
|
+
webhook: Webhook | undefined;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
export declare const AutoBranchCreationConfigFilterSensitiveLog: (
|
|
950
|
+
obj: AutoBranchCreationConfig
|
|
951
|
+
) => any;
|
|
952
|
+
|
|
953
|
+
export declare const CustomRuleFilterSensitiveLog: (obj: CustomRule) => any;
|
|
954
|
+
|
|
955
|
+
export declare const CreateAppRequestFilterSensitiveLog: (
|
|
956
|
+
obj: CreateAppRequest
|
|
957
|
+
) => any;
|
|
958
|
+
|
|
959
|
+
export declare const ProductionBranchFilterSensitiveLog: (
|
|
960
|
+
obj: ProductionBranch
|
|
961
|
+
) => any;
|
|
962
|
+
|
|
963
|
+
export declare const AppFilterSensitiveLog: (obj: App) => any;
|
|
964
|
+
|
|
965
|
+
export declare const CreateAppResultFilterSensitiveLog: (
|
|
966
|
+
obj: CreateAppResult
|
|
967
|
+
) => any;
|
|
968
|
+
|
|
969
|
+
export declare const CreateBackendEnvironmentRequestFilterSensitiveLog: (
|
|
970
|
+
obj: CreateBackendEnvironmentRequest
|
|
971
|
+
) => any;
|
|
972
|
+
|
|
973
|
+
export declare const BackendEnvironmentFilterSensitiveLog: (
|
|
974
|
+
obj: BackendEnvironment
|
|
975
|
+
) => any;
|
|
976
|
+
|
|
977
|
+
export declare const CreateBackendEnvironmentResultFilterSensitiveLog: (
|
|
978
|
+
obj: CreateBackendEnvironmentResult
|
|
979
|
+
) => any;
|
|
980
|
+
|
|
981
|
+
export declare const CreateBranchRequestFilterSensitiveLog: (
|
|
982
|
+
obj: CreateBranchRequest
|
|
983
|
+
) => any;
|
|
984
|
+
|
|
985
|
+
export declare const BranchFilterSensitiveLog: (obj: Branch) => any;
|
|
986
|
+
|
|
987
|
+
export declare const CreateBranchResultFilterSensitiveLog: (
|
|
988
|
+
obj: CreateBranchResult
|
|
989
|
+
) => any;
|
|
990
|
+
|
|
991
|
+
export declare const CreateDeploymentRequestFilterSensitiveLog: (
|
|
992
|
+
obj: CreateDeploymentRequest
|
|
993
|
+
) => any;
|
|
994
|
+
|
|
995
|
+
export declare const CreateDeploymentResultFilterSensitiveLog: (
|
|
996
|
+
obj: CreateDeploymentResult
|
|
997
|
+
) => any;
|
|
998
|
+
|
|
999
|
+
export declare const SubDomainSettingFilterSensitiveLog: (
|
|
1000
|
+
obj: SubDomainSetting
|
|
1001
|
+
) => any;
|
|
1002
|
+
|
|
1003
|
+
export declare const CreateDomainAssociationRequestFilterSensitiveLog: (
|
|
1004
|
+
obj: CreateDomainAssociationRequest
|
|
1005
|
+
) => any;
|
|
1006
|
+
|
|
1007
|
+
export declare const SubDomainFilterSensitiveLog: (obj: SubDomain) => any;
|
|
1008
|
+
|
|
1009
|
+
export declare const DomainAssociationFilterSensitiveLog: (
|
|
1010
|
+
obj: DomainAssociation
|
|
1011
|
+
) => any;
|
|
1012
|
+
|
|
1013
|
+
export declare const CreateDomainAssociationResultFilterSensitiveLog: (
|
|
1014
|
+
obj: CreateDomainAssociationResult
|
|
1015
|
+
) => any;
|
|
1016
|
+
|
|
1017
|
+
export declare const CreateWebhookRequestFilterSensitiveLog: (
|
|
1018
|
+
obj: CreateWebhookRequest
|
|
1019
|
+
) => any;
|
|
1020
|
+
|
|
1021
|
+
export declare const WebhookFilterSensitiveLog: (obj: Webhook) => any;
|
|
1022
|
+
|
|
1023
|
+
export declare const CreateWebhookResultFilterSensitiveLog: (
|
|
1024
|
+
obj: CreateWebhookResult
|
|
1025
|
+
) => any;
|
|
1026
|
+
|
|
1027
|
+
export declare const DeleteAppRequestFilterSensitiveLog: (
|
|
1028
|
+
obj: DeleteAppRequest
|
|
1029
|
+
) => any;
|
|
1030
|
+
|
|
1031
|
+
export declare const DeleteAppResultFilterSensitiveLog: (
|
|
1032
|
+
obj: DeleteAppResult
|
|
1033
|
+
) => any;
|
|
1034
|
+
|
|
1035
|
+
export declare const DeleteBackendEnvironmentRequestFilterSensitiveLog: (
|
|
1036
|
+
obj: DeleteBackendEnvironmentRequest
|
|
1037
|
+
) => any;
|
|
1038
|
+
|
|
1039
|
+
export declare const DeleteBackendEnvironmentResultFilterSensitiveLog: (
|
|
1040
|
+
obj: DeleteBackendEnvironmentResult
|
|
1041
|
+
) => any;
|
|
1042
|
+
|
|
1043
|
+
export declare const DeleteBranchRequestFilterSensitiveLog: (
|
|
1044
|
+
obj: DeleteBranchRequest
|
|
1045
|
+
) => any;
|
|
1046
|
+
|
|
1047
|
+
export declare const DeleteBranchResultFilterSensitiveLog: (
|
|
1048
|
+
obj: DeleteBranchResult
|
|
1049
|
+
) => any;
|
|
1050
|
+
|
|
1051
|
+
export declare const DeleteDomainAssociationRequestFilterSensitiveLog: (
|
|
1052
|
+
obj: DeleteDomainAssociationRequest
|
|
1053
|
+
) => any;
|
|
1054
|
+
|
|
1055
|
+
export declare const DeleteDomainAssociationResultFilterSensitiveLog: (
|
|
1056
|
+
obj: DeleteDomainAssociationResult
|
|
1057
|
+
) => any;
|
|
1058
|
+
|
|
1059
|
+
export declare const DeleteJobRequestFilterSensitiveLog: (
|
|
1060
|
+
obj: DeleteJobRequest
|
|
1061
|
+
) => any;
|
|
1062
|
+
|
|
1063
|
+
export declare const JobSummaryFilterSensitiveLog: (obj: JobSummary) => any;
|
|
1064
|
+
|
|
1065
|
+
export declare const DeleteJobResultFilterSensitiveLog: (
|
|
1066
|
+
obj: DeleteJobResult
|
|
1067
|
+
) => any;
|
|
1068
|
+
|
|
1069
|
+
export declare const DeleteWebhookRequestFilterSensitiveLog: (
|
|
1070
|
+
obj: DeleteWebhookRequest
|
|
1071
|
+
) => any;
|
|
1072
|
+
|
|
1073
|
+
export declare const DeleteWebhookResultFilterSensitiveLog: (
|
|
1074
|
+
obj: DeleteWebhookResult
|
|
1075
|
+
) => any;
|
|
1076
|
+
|
|
1077
|
+
export declare const GenerateAccessLogsRequestFilterSensitiveLog: (
|
|
1078
|
+
obj: GenerateAccessLogsRequest
|
|
1079
|
+
) => any;
|
|
1080
|
+
|
|
1081
|
+
export declare const GenerateAccessLogsResultFilterSensitiveLog: (
|
|
1082
|
+
obj: GenerateAccessLogsResult
|
|
1083
|
+
) => any;
|
|
1084
|
+
|
|
1085
|
+
export declare const GetAppRequestFilterSensitiveLog: (
|
|
1086
|
+
obj: GetAppRequest
|
|
1087
|
+
) => any;
|
|
1088
|
+
|
|
1089
|
+
export declare const GetAppResultFilterSensitiveLog: (obj: GetAppResult) => any;
|
|
1090
|
+
|
|
1091
|
+
export declare const GetArtifactUrlRequestFilterSensitiveLog: (
|
|
1092
|
+
obj: GetArtifactUrlRequest
|
|
1093
|
+
) => any;
|
|
1094
|
+
|
|
1095
|
+
export declare const GetArtifactUrlResultFilterSensitiveLog: (
|
|
1096
|
+
obj: GetArtifactUrlResult
|
|
1097
|
+
) => any;
|
|
1098
|
+
|
|
1099
|
+
export declare const GetBackendEnvironmentRequestFilterSensitiveLog: (
|
|
1100
|
+
obj: GetBackendEnvironmentRequest
|
|
1101
|
+
) => any;
|
|
1102
|
+
|
|
1103
|
+
export declare const GetBackendEnvironmentResultFilterSensitiveLog: (
|
|
1104
|
+
obj: GetBackendEnvironmentResult
|
|
1105
|
+
) => any;
|
|
1106
|
+
|
|
1107
|
+
export declare const GetBranchRequestFilterSensitiveLog: (
|
|
1108
|
+
obj: GetBranchRequest
|
|
1109
|
+
) => any;
|
|
1110
|
+
|
|
1111
|
+
export declare const GetBranchResultFilterSensitiveLog: (
|
|
1112
|
+
obj: GetBranchResult
|
|
1113
|
+
) => any;
|
|
1114
|
+
|
|
1115
|
+
export declare const GetDomainAssociationRequestFilterSensitiveLog: (
|
|
1116
|
+
obj: GetDomainAssociationRequest
|
|
1117
|
+
) => any;
|
|
1118
|
+
|
|
1119
|
+
export declare const GetDomainAssociationResultFilterSensitiveLog: (
|
|
1120
|
+
obj: GetDomainAssociationResult
|
|
1121
|
+
) => any;
|
|
1122
|
+
|
|
1123
|
+
export declare const GetJobRequestFilterSensitiveLog: (
|
|
1124
|
+
obj: GetJobRequest
|
|
1125
|
+
) => any;
|
|
1126
|
+
|
|
1127
|
+
export declare const StepFilterSensitiveLog: (obj: Step) => any;
|
|
1128
|
+
|
|
1129
|
+
export declare const JobFilterSensitiveLog: (obj: Job) => any;
|
|
1130
|
+
|
|
1131
|
+
export declare const GetJobResultFilterSensitiveLog: (obj: GetJobResult) => any;
|
|
1132
|
+
|
|
1133
|
+
export declare const GetWebhookRequestFilterSensitiveLog: (
|
|
1134
|
+
obj: GetWebhookRequest
|
|
1135
|
+
) => any;
|
|
1136
|
+
|
|
1137
|
+
export declare const GetWebhookResultFilterSensitiveLog: (
|
|
1138
|
+
obj: GetWebhookResult
|
|
1139
|
+
) => any;
|
|
1140
|
+
|
|
1141
|
+
export declare const ListAppsRequestFilterSensitiveLog: (
|
|
1142
|
+
obj: ListAppsRequest
|
|
1143
|
+
) => any;
|
|
1144
|
+
|
|
1145
|
+
export declare const ListAppsResultFilterSensitiveLog: (
|
|
1146
|
+
obj: ListAppsResult
|
|
1147
|
+
) => any;
|
|
1148
|
+
|
|
1149
|
+
export declare const ListArtifactsRequestFilterSensitiveLog: (
|
|
1150
|
+
obj: ListArtifactsRequest
|
|
1151
|
+
) => any;
|
|
1152
|
+
|
|
1153
|
+
export declare const ArtifactFilterSensitiveLog: (obj: Artifact) => any;
|
|
1154
|
+
|
|
1155
|
+
export declare const ListArtifactsResultFilterSensitiveLog: (
|
|
1156
|
+
obj: ListArtifactsResult
|
|
1157
|
+
) => any;
|
|
1158
|
+
|
|
1159
|
+
export declare const ListBackendEnvironmentsRequestFilterSensitiveLog: (
|
|
1160
|
+
obj: ListBackendEnvironmentsRequest
|
|
1161
|
+
) => any;
|
|
1162
|
+
|
|
1163
|
+
export declare const ListBackendEnvironmentsResultFilterSensitiveLog: (
|
|
1164
|
+
obj: ListBackendEnvironmentsResult
|
|
1165
|
+
) => any;
|
|
1166
|
+
|
|
1167
|
+
export declare const ListBranchesRequestFilterSensitiveLog: (
|
|
1168
|
+
obj: ListBranchesRequest
|
|
1169
|
+
) => any;
|
|
1170
|
+
|
|
1171
|
+
export declare const ListBranchesResultFilterSensitiveLog: (
|
|
1172
|
+
obj: ListBranchesResult
|
|
1173
|
+
) => any;
|
|
1174
|
+
|
|
1175
|
+
export declare const ListDomainAssociationsRequestFilterSensitiveLog: (
|
|
1176
|
+
obj: ListDomainAssociationsRequest
|
|
1177
|
+
) => any;
|
|
1178
|
+
|
|
1179
|
+
export declare const ListDomainAssociationsResultFilterSensitiveLog: (
|
|
1180
|
+
obj: ListDomainAssociationsResult
|
|
1181
|
+
) => any;
|
|
1182
|
+
|
|
1183
|
+
export declare const ListJobsRequestFilterSensitiveLog: (
|
|
1184
|
+
obj: ListJobsRequest
|
|
1185
|
+
) => any;
|
|
1186
|
+
|
|
1187
|
+
export declare const ListJobsResultFilterSensitiveLog: (
|
|
1188
|
+
obj: ListJobsResult
|
|
1189
|
+
) => any;
|
|
1190
|
+
|
|
1191
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1192
|
+
obj: ListTagsForResourceRequest
|
|
1193
|
+
) => any;
|
|
1194
|
+
|
|
1195
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1196
|
+
obj: ListTagsForResourceResponse
|
|
1197
|
+
) => any;
|
|
1198
|
+
|
|
1199
|
+
export declare const ListWebhooksRequestFilterSensitiveLog: (
|
|
1200
|
+
obj: ListWebhooksRequest
|
|
1201
|
+
) => any;
|
|
1202
|
+
|
|
1203
|
+
export declare const ListWebhooksResultFilterSensitiveLog: (
|
|
1204
|
+
obj: ListWebhooksResult
|
|
1205
|
+
) => any;
|
|
1206
|
+
|
|
1207
|
+
export declare const StartDeploymentRequestFilterSensitiveLog: (
|
|
1208
|
+
obj: StartDeploymentRequest
|
|
1209
|
+
) => any;
|
|
1210
|
+
|
|
1211
|
+
export declare const StartDeploymentResultFilterSensitiveLog: (
|
|
1212
|
+
obj: StartDeploymentResult
|
|
1213
|
+
) => any;
|
|
1214
|
+
|
|
1215
|
+
export declare const StartJobRequestFilterSensitiveLog: (
|
|
1216
|
+
obj: StartJobRequest
|
|
1217
|
+
) => any;
|
|
1218
|
+
|
|
1219
|
+
export declare const StartJobResultFilterSensitiveLog: (
|
|
1220
|
+
obj: StartJobResult
|
|
1221
|
+
) => any;
|
|
1222
|
+
|
|
1223
|
+
export declare const StopJobRequestFilterSensitiveLog: (
|
|
1224
|
+
obj: StopJobRequest
|
|
1225
|
+
) => any;
|
|
1226
|
+
|
|
1227
|
+
export declare const StopJobResultFilterSensitiveLog: (
|
|
1228
|
+
obj: StopJobResult
|
|
1229
|
+
) => any;
|
|
1230
|
+
|
|
1231
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1232
|
+
obj: TagResourceRequest
|
|
1233
|
+
) => any;
|
|
1234
|
+
|
|
1235
|
+
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1236
|
+
obj: TagResourceResponse
|
|
1237
|
+
) => any;
|
|
1238
|
+
|
|
1239
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1240
|
+
obj: UntagResourceRequest
|
|
1241
|
+
) => any;
|
|
1242
|
+
|
|
1243
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1244
|
+
obj: UntagResourceResponse
|
|
1245
|
+
) => any;
|
|
1246
|
+
|
|
1247
|
+
export declare const UpdateAppRequestFilterSensitiveLog: (
|
|
1248
|
+
obj: UpdateAppRequest
|
|
1249
|
+
) => any;
|
|
1250
|
+
|
|
1251
|
+
export declare const UpdateAppResultFilterSensitiveLog: (
|
|
1252
|
+
obj: UpdateAppResult
|
|
1253
|
+
) => any;
|
|
1254
|
+
|
|
1255
|
+
export declare const UpdateBranchRequestFilterSensitiveLog: (
|
|
1256
|
+
obj: UpdateBranchRequest
|
|
1257
|
+
) => any;
|
|
1258
|
+
|
|
1259
|
+
export declare const UpdateBranchResultFilterSensitiveLog: (
|
|
1260
|
+
obj: UpdateBranchResult
|
|
1261
|
+
) => any;
|
|
1262
|
+
|
|
1263
|
+
export declare const UpdateDomainAssociationRequestFilterSensitiveLog: (
|
|
1264
|
+
obj: UpdateDomainAssociationRequest
|
|
1265
|
+
) => any;
|
|
1266
|
+
|
|
1267
|
+
export declare const UpdateDomainAssociationResultFilterSensitiveLog: (
|
|
1268
|
+
obj: UpdateDomainAssociationResult
|
|
1269
|
+
) => any;
|
|
1270
|
+
|
|
1271
|
+
export declare const UpdateWebhookRequestFilterSensitiveLog: (
|
|
1272
|
+
obj: UpdateWebhookRequest
|
|
1273
|
+
) => any;
|
|
1274
|
+
|
|
1275
|
+
export declare const UpdateWebhookResultFilterSensitiveLog: (
|
|
1276
|
+
obj: UpdateWebhookResult
|
|
1277
|
+
) => any;
|