@aws-sdk/client-amplify 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateAppCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/CreateBranchCommand.js +2 -2
- package/dist-cjs/commands/CreateDeploymentCommand.js +2 -2
- package/dist-cjs/commands/CreateDomainAssociationCommand.js +2 -2
- package/dist-cjs/commands/CreateWebhookCommand.js +2 -2
- package/dist-cjs/commands/DeleteAppCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/DeleteBranchCommand.js +2 -2
- package/dist-cjs/commands/DeleteDomainAssociationCommand.js +2 -2
- package/dist-cjs/commands/DeleteJobCommand.js +2 -2
- package/dist-cjs/commands/DeleteWebhookCommand.js +2 -2
- package/dist-cjs/commands/GenerateAccessLogsCommand.js +2 -2
- package/dist-cjs/commands/GetAppCommand.js +2 -2
- package/dist-cjs/commands/GetArtifactUrlCommand.js +2 -2
- package/dist-cjs/commands/GetBackendEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/GetBranchCommand.js +2 -2
- package/dist-cjs/commands/GetDomainAssociationCommand.js +2 -2
- package/dist-cjs/commands/GetJobCommand.js +2 -2
- package/dist-cjs/commands/GetWebhookCommand.js +2 -2
- package/dist-cjs/commands/ListAppsCommand.js +2 -2
- package/dist-cjs/commands/ListArtifactsCommand.js +2 -2
- package/dist-cjs/commands/ListBackendEnvironmentsCommand.js +2 -2
- package/dist-cjs/commands/ListBranchesCommand.js +2 -2
- package/dist-cjs/commands/ListDomainAssociationsCommand.js +2 -2
- package/dist-cjs/commands/ListJobsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListWebhooksCommand.js +2 -2
- package/dist-cjs/commands/StartDeploymentCommand.js +2 -2
- package/dist-cjs/commands/StartJobCommand.js +2 -2
- package/dist-cjs/commands/StopJobCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateAppCommand.js +2 -2
- package/dist-cjs/commands/UpdateBranchCommand.js +2 -2
- package/dist-cjs/commands/UpdateDomainAssociationCommand.js +2 -2
- package/dist-cjs/commands/UpdateWebhookCommand.js +2 -2
- package/dist-cjs/models/models_0.js +392 -568
- package/dist-cjs/protocols/Aws_restJson1.js +444 -1106
- package/dist-es/commands/CreateAppCommand.js +3 -3
- package/dist-es/commands/CreateBackendEnvironmentCommand.js +3 -3
- package/dist-es/commands/CreateBranchCommand.js +3 -3
- package/dist-es/commands/CreateDeploymentCommand.js +3 -3
- package/dist-es/commands/CreateDomainAssociationCommand.js +3 -3
- package/dist-es/commands/CreateWebhookCommand.js +3 -3
- package/dist-es/commands/DeleteAppCommand.js +3 -3
- package/dist-es/commands/DeleteBackendEnvironmentCommand.js +3 -3
- package/dist-es/commands/DeleteBranchCommand.js +3 -3
- package/dist-es/commands/DeleteDomainAssociationCommand.js +3 -3
- package/dist-es/commands/DeleteJobCommand.js +3 -3
- package/dist-es/commands/DeleteWebhookCommand.js +3 -3
- package/dist-es/commands/GenerateAccessLogsCommand.js +3 -3
- package/dist-es/commands/GetAppCommand.js +3 -3
- package/dist-es/commands/GetArtifactUrlCommand.js +3 -3
- package/dist-es/commands/GetBackendEnvironmentCommand.js +3 -3
- package/dist-es/commands/GetBranchCommand.js +3 -3
- package/dist-es/commands/GetDomainAssociationCommand.js +3 -3
- package/dist-es/commands/GetJobCommand.js +3 -3
- package/dist-es/commands/GetWebhookCommand.js +3 -3
- package/dist-es/commands/ListAppsCommand.js +3 -3
- package/dist-es/commands/ListArtifactsCommand.js +3 -3
- package/dist-es/commands/ListBackendEnvironmentsCommand.js +3 -3
- package/dist-es/commands/ListBranchesCommand.js +3 -3
- package/dist-es/commands/ListDomainAssociationsCommand.js +3 -3
- package/dist-es/commands/ListJobsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListWebhooksCommand.js +3 -3
- package/dist-es/commands/StartDeploymentCommand.js +3 -3
- package/dist-es/commands/StartJobCommand.js +3 -3
- package/dist-es/commands/StopJobCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateAppCommand.js +3 -3
- package/dist-es/commands/UpdateBranchCommand.js +3 -3
- package/dist-es/commands/UpdateDomainAssociationCommand.js +3 -3
- package/dist-es/commands/UpdateWebhookCommand.js +3 -3
- package/dist-es/models/models_0.js +94 -358
- package/dist-es/protocols/Aws_restJson1.js +591 -1118
- package/dist-types/models/models_0.d.ts +352 -528
- package/dist-types/ts3.4/models/models_0.d.ts +176 -352
- package/package.json +6 -6
|
@@ -37,10 +37,6 @@ export interface AutoBranchCreationConfig {
|
|
|
37
37
|
|
|
38
38
|
pullRequestEnvironmentName?: string;
|
|
39
39
|
}
|
|
40
|
-
export declare namespace AutoBranchCreationConfig {
|
|
41
|
-
|
|
42
|
-
const filterSensitiveLog: (obj: AutoBranchCreationConfig) => any;
|
|
43
|
-
}
|
|
44
40
|
|
|
45
41
|
export interface CustomRule {
|
|
46
42
|
|
|
@@ -52,10 +48,6 @@ export interface CustomRule {
|
|
|
52
48
|
|
|
53
49
|
condition?: string;
|
|
54
50
|
}
|
|
55
|
-
export declare namespace CustomRule {
|
|
56
|
-
|
|
57
|
-
const filterSensitiveLog: (obj: CustomRule) => any;
|
|
58
|
-
}
|
|
59
51
|
export declare enum Platform {
|
|
60
52
|
WEB = "WEB",
|
|
61
53
|
WEB_DYNAMIC = "WEB_DYNAMIC"
|
|
@@ -101,10 +93,6 @@ export interface CreateAppRequest {
|
|
|
101
93
|
|
|
102
94
|
autoBranchCreationConfig?: AutoBranchCreationConfig;
|
|
103
95
|
}
|
|
104
|
-
export declare namespace CreateAppRequest {
|
|
105
|
-
|
|
106
|
-
const filterSensitiveLog: (obj: CreateAppRequest) => any;
|
|
107
|
-
}
|
|
108
96
|
|
|
109
97
|
export interface ProductionBranch {
|
|
110
98
|
|
|
@@ -116,10 +104,6 @@ export interface ProductionBranch {
|
|
|
116
104
|
|
|
117
105
|
branchName?: string;
|
|
118
106
|
}
|
|
119
|
-
export declare namespace ProductionBranch {
|
|
120
|
-
|
|
121
|
-
const filterSensitiveLog: (obj: ProductionBranch) => any;
|
|
122
|
-
}
|
|
123
107
|
export declare enum RepositoryCloneMethod {
|
|
124
108
|
SIGV4 = "SIGV4",
|
|
125
109
|
SSH = "SSH",
|
|
@@ -176,18 +160,10 @@ export interface App {
|
|
|
176
160
|
|
|
177
161
|
repositoryCloneMethod?: RepositoryCloneMethod | string;
|
|
178
162
|
}
|
|
179
|
-
export declare namespace App {
|
|
180
|
-
|
|
181
|
-
const filterSensitiveLog: (obj: App) => any;
|
|
182
|
-
}
|
|
183
163
|
export interface CreateAppResult {
|
|
184
164
|
|
|
185
165
|
app: App | undefined;
|
|
186
166
|
}
|
|
187
|
-
export declare namespace CreateAppResult {
|
|
188
|
-
|
|
189
|
-
const filterSensitiveLog: (obj: CreateAppResult) => any;
|
|
190
|
-
}
|
|
191
167
|
|
|
192
168
|
export declare class DependentServiceFailureException extends __BaseException {
|
|
193
169
|
readonly name: "DependentServiceFailureException";
|
|
@@ -227,10 +203,6 @@ export interface CreateBackendEnvironmentRequest {
|
|
|
227
203
|
|
|
228
204
|
deploymentArtifacts?: string;
|
|
229
205
|
}
|
|
230
|
-
export declare namespace CreateBackendEnvironmentRequest {
|
|
231
|
-
|
|
232
|
-
const filterSensitiveLog: (obj: CreateBackendEnvironmentRequest) => any;
|
|
233
|
-
}
|
|
234
206
|
|
|
235
207
|
export interface BackendEnvironment {
|
|
236
208
|
|
|
@@ -246,19 +218,11 @@ export interface BackendEnvironment {
|
|
|
246
218
|
|
|
247
219
|
updateTime: Date | undefined;
|
|
248
220
|
}
|
|
249
|
-
export declare namespace BackendEnvironment {
|
|
250
|
-
|
|
251
|
-
const filterSensitiveLog: (obj: BackendEnvironment) => any;
|
|
252
|
-
}
|
|
253
221
|
|
|
254
222
|
export interface CreateBackendEnvironmentResult {
|
|
255
223
|
|
|
256
224
|
backendEnvironment: BackendEnvironment | undefined;
|
|
257
225
|
}
|
|
258
|
-
export declare namespace CreateBackendEnvironmentResult {
|
|
259
|
-
|
|
260
|
-
const filterSensitiveLog: (obj: CreateBackendEnvironmentResult) => any;
|
|
261
|
-
}
|
|
262
226
|
|
|
263
227
|
export declare class NotFoundException extends __BaseException {
|
|
264
228
|
readonly name: "NotFoundException";
|
|
@@ -305,10 +269,6 @@ export interface CreateBranchRequest {
|
|
|
305
269
|
|
|
306
270
|
backendEnvironmentArn?: string;
|
|
307
271
|
}
|
|
308
|
-
export declare namespace CreateBranchRequest {
|
|
309
|
-
|
|
310
|
-
const filterSensitiveLog: (obj: CreateBranchRequest) => any;
|
|
311
|
-
}
|
|
312
272
|
|
|
313
273
|
export interface Branch {
|
|
314
274
|
|
|
@@ -366,19 +326,11 @@ export interface Branch {
|
|
|
366
326
|
|
|
367
327
|
backendEnvironmentArn?: string;
|
|
368
328
|
}
|
|
369
|
-
export declare namespace Branch {
|
|
370
|
-
|
|
371
|
-
const filterSensitiveLog: (obj: Branch) => any;
|
|
372
|
-
}
|
|
373
329
|
|
|
374
330
|
export interface CreateBranchResult {
|
|
375
331
|
|
|
376
332
|
branch: Branch | undefined;
|
|
377
333
|
}
|
|
378
|
-
export declare namespace CreateBranchResult {
|
|
379
|
-
|
|
380
|
-
const filterSensitiveLog: (obj: CreateBranchResult) => any;
|
|
381
|
-
}
|
|
382
334
|
|
|
383
335
|
export interface CreateDeploymentRequest {
|
|
384
336
|
|
|
@@ -388,10 +340,6 @@ export interface CreateDeploymentRequest {
|
|
|
388
340
|
|
|
389
341
|
fileMap?: Record<string, string>;
|
|
390
342
|
}
|
|
391
|
-
export declare namespace CreateDeploymentRequest {
|
|
392
|
-
|
|
393
|
-
const filterSensitiveLog: (obj: CreateDeploymentRequest) => any;
|
|
394
|
-
}
|
|
395
343
|
|
|
396
344
|
export interface CreateDeploymentResult {
|
|
397
345
|
|
|
@@ -401,10 +349,6 @@ export interface CreateDeploymentResult {
|
|
|
401
349
|
|
|
402
350
|
zipUploadUrl: string | undefined;
|
|
403
351
|
}
|
|
404
|
-
export declare namespace CreateDeploymentResult {
|
|
405
|
-
|
|
406
|
-
const filterSensitiveLog: (obj: CreateDeploymentResult) => any;
|
|
407
|
-
}
|
|
408
352
|
|
|
409
353
|
export interface SubDomainSetting {
|
|
410
354
|
|
|
@@ -412,10 +356,6 @@ export interface SubDomainSetting {
|
|
|
412
356
|
|
|
413
357
|
branchName: string | undefined;
|
|
414
358
|
}
|
|
415
|
-
export declare namespace SubDomainSetting {
|
|
416
|
-
|
|
417
|
-
const filterSensitiveLog: (obj: SubDomainSetting) => any;
|
|
418
|
-
}
|
|
419
359
|
|
|
420
360
|
export interface CreateDomainAssociationRequest {
|
|
421
361
|
|
|
@@ -431,10 +371,6 @@ export interface CreateDomainAssociationRequest {
|
|
|
431
371
|
|
|
432
372
|
autoSubDomainIAMRole?: string;
|
|
433
373
|
}
|
|
434
|
-
export declare namespace CreateDomainAssociationRequest {
|
|
435
|
-
|
|
436
|
-
const filterSensitiveLog: (obj: CreateDomainAssociationRequest) => any;
|
|
437
|
-
}
|
|
438
374
|
export declare enum DomainStatus {
|
|
439
375
|
AVAILABLE = "AVAILABLE",
|
|
440
376
|
CREATING = "CREATING",
|
|
@@ -454,10 +390,6 @@ export interface SubDomain {
|
|
|
454
390
|
|
|
455
391
|
dnsRecord: string | undefined;
|
|
456
392
|
}
|
|
457
|
-
export declare namespace SubDomain {
|
|
458
|
-
|
|
459
|
-
const filterSensitiveLog: (obj: SubDomain) => any;
|
|
460
|
-
}
|
|
461
393
|
|
|
462
394
|
export interface DomainAssociation {
|
|
463
395
|
|
|
@@ -479,19 +411,11 @@ export interface DomainAssociation {
|
|
|
479
411
|
|
|
480
412
|
subDomains: SubDomain[] | undefined;
|
|
481
413
|
}
|
|
482
|
-
export declare namespace DomainAssociation {
|
|
483
|
-
|
|
484
|
-
const filterSensitiveLog: (obj: DomainAssociation) => any;
|
|
485
|
-
}
|
|
486
414
|
|
|
487
415
|
export interface CreateDomainAssociationResult {
|
|
488
416
|
|
|
489
417
|
domainAssociation: DomainAssociation | undefined;
|
|
490
418
|
}
|
|
491
|
-
export declare namespace CreateDomainAssociationResult {
|
|
492
|
-
|
|
493
|
-
const filterSensitiveLog: (obj: CreateDomainAssociationResult) => any;
|
|
494
|
-
}
|
|
495
419
|
|
|
496
420
|
export interface CreateWebhookRequest {
|
|
497
421
|
|
|
@@ -501,10 +425,6 @@ export interface CreateWebhookRequest {
|
|
|
501
425
|
|
|
502
426
|
description?: string;
|
|
503
427
|
}
|
|
504
|
-
export declare namespace CreateWebhookRequest {
|
|
505
|
-
|
|
506
|
-
const filterSensitiveLog: (obj: CreateWebhookRequest) => any;
|
|
507
|
-
}
|
|
508
428
|
|
|
509
429
|
export interface Webhook {
|
|
510
430
|
|
|
@@ -522,37 +442,21 @@ export interface Webhook {
|
|
|
522
442
|
|
|
523
443
|
updateTime: Date | undefined;
|
|
524
444
|
}
|
|
525
|
-
export declare namespace Webhook {
|
|
526
|
-
|
|
527
|
-
const filterSensitiveLog: (obj: Webhook) => any;
|
|
528
|
-
}
|
|
529
445
|
|
|
530
446
|
export interface CreateWebhookResult {
|
|
531
447
|
|
|
532
448
|
webhook: Webhook | undefined;
|
|
533
449
|
}
|
|
534
|
-
export declare namespace CreateWebhookResult {
|
|
535
|
-
|
|
536
|
-
const filterSensitiveLog: (obj: CreateWebhookResult) => any;
|
|
537
|
-
}
|
|
538
450
|
|
|
539
451
|
export interface DeleteAppRequest {
|
|
540
452
|
|
|
541
453
|
appId: string | undefined;
|
|
542
454
|
}
|
|
543
|
-
export declare namespace DeleteAppRequest {
|
|
544
|
-
|
|
545
|
-
const filterSensitiveLog: (obj: DeleteAppRequest) => any;
|
|
546
|
-
}
|
|
547
455
|
|
|
548
456
|
export interface DeleteAppResult {
|
|
549
457
|
|
|
550
458
|
app: App | undefined;
|
|
551
459
|
}
|
|
552
|
-
export declare namespace DeleteAppResult {
|
|
553
|
-
|
|
554
|
-
const filterSensitiveLog: (obj: DeleteAppResult) => any;
|
|
555
|
-
}
|
|
556
460
|
|
|
557
461
|
export interface DeleteBackendEnvironmentRequest {
|
|
558
462
|
|
|
@@ -560,19 +464,11 @@ export interface DeleteBackendEnvironmentRequest {
|
|
|
560
464
|
|
|
561
465
|
environmentName: string | undefined;
|
|
562
466
|
}
|
|
563
|
-
export declare namespace DeleteBackendEnvironmentRequest {
|
|
564
|
-
|
|
565
|
-
const filterSensitiveLog: (obj: DeleteBackendEnvironmentRequest) => any;
|
|
566
|
-
}
|
|
567
467
|
|
|
568
468
|
export interface DeleteBackendEnvironmentResult {
|
|
569
469
|
|
|
570
470
|
backendEnvironment: BackendEnvironment | undefined;
|
|
571
471
|
}
|
|
572
|
-
export declare namespace DeleteBackendEnvironmentResult {
|
|
573
|
-
|
|
574
|
-
const filterSensitiveLog: (obj: DeleteBackendEnvironmentResult) => any;
|
|
575
|
-
}
|
|
576
472
|
|
|
577
473
|
export interface DeleteBranchRequest {
|
|
578
474
|
|
|
@@ -580,19 +476,11 @@ export interface DeleteBranchRequest {
|
|
|
580
476
|
|
|
581
477
|
branchName: string | undefined;
|
|
582
478
|
}
|
|
583
|
-
export declare namespace DeleteBranchRequest {
|
|
584
|
-
|
|
585
|
-
const filterSensitiveLog: (obj: DeleteBranchRequest) => any;
|
|
586
|
-
}
|
|
587
479
|
|
|
588
480
|
export interface DeleteBranchResult {
|
|
589
481
|
|
|
590
482
|
branch: Branch | undefined;
|
|
591
483
|
}
|
|
592
|
-
export declare namespace DeleteBranchResult {
|
|
593
|
-
|
|
594
|
-
const filterSensitiveLog: (obj: DeleteBranchResult) => any;
|
|
595
|
-
}
|
|
596
484
|
|
|
597
485
|
export interface DeleteDomainAssociationRequest {
|
|
598
486
|
|
|
@@ -600,18 +488,10 @@ export interface DeleteDomainAssociationRequest {
|
|
|
600
488
|
|
|
601
489
|
domainName: string | undefined;
|
|
602
490
|
}
|
|
603
|
-
export declare namespace DeleteDomainAssociationRequest {
|
|
604
|
-
|
|
605
|
-
const filterSensitiveLog: (obj: DeleteDomainAssociationRequest) => any;
|
|
606
|
-
}
|
|
607
491
|
export interface DeleteDomainAssociationResult {
|
|
608
492
|
|
|
609
493
|
domainAssociation: DomainAssociation | undefined;
|
|
610
494
|
}
|
|
611
|
-
export declare namespace DeleteDomainAssociationResult {
|
|
612
|
-
|
|
613
|
-
const filterSensitiveLog: (obj: DeleteDomainAssociationResult) => any;
|
|
614
|
-
}
|
|
615
495
|
|
|
616
496
|
export interface DeleteJobRequest {
|
|
617
497
|
|
|
@@ -621,10 +501,6 @@ export interface DeleteJobRequest {
|
|
|
621
501
|
|
|
622
502
|
jobId: string | undefined;
|
|
623
503
|
}
|
|
624
|
-
export declare namespace DeleteJobRequest {
|
|
625
|
-
|
|
626
|
-
const filterSensitiveLog: (obj: DeleteJobRequest) => any;
|
|
627
|
-
}
|
|
628
504
|
export declare enum JobType {
|
|
629
505
|
MANUAL = "MANUAL",
|
|
630
506
|
RELEASE = "RELEASE",
|
|
@@ -661,37 +537,21 @@ export interface JobSummary {
|
|
|
661
537
|
|
|
662
538
|
jobType: JobType | string | undefined;
|
|
663
539
|
}
|
|
664
|
-
export declare namespace JobSummary {
|
|
665
|
-
|
|
666
|
-
const filterSensitiveLog: (obj: JobSummary) => any;
|
|
667
|
-
}
|
|
668
540
|
|
|
669
541
|
export interface DeleteJobResult {
|
|
670
542
|
|
|
671
543
|
jobSummary: JobSummary | undefined;
|
|
672
544
|
}
|
|
673
|
-
export declare namespace DeleteJobResult {
|
|
674
|
-
|
|
675
|
-
const filterSensitiveLog: (obj: DeleteJobResult) => any;
|
|
676
|
-
}
|
|
677
545
|
|
|
678
546
|
export interface DeleteWebhookRequest {
|
|
679
547
|
|
|
680
548
|
webhookId: string | undefined;
|
|
681
549
|
}
|
|
682
|
-
export declare namespace DeleteWebhookRequest {
|
|
683
|
-
|
|
684
|
-
const filterSensitiveLog: (obj: DeleteWebhookRequest) => any;
|
|
685
|
-
}
|
|
686
550
|
|
|
687
551
|
export interface DeleteWebhookResult {
|
|
688
552
|
|
|
689
553
|
webhook: Webhook | undefined;
|
|
690
554
|
}
|
|
691
|
-
export declare namespace DeleteWebhookResult {
|
|
692
|
-
|
|
693
|
-
const filterSensitiveLog: (obj: DeleteWebhookResult) => any;
|
|
694
|
-
}
|
|
695
555
|
|
|
696
556
|
export interface GenerateAccessLogsRequest {
|
|
697
557
|
|
|
@@ -703,45 +563,25 @@ export interface GenerateAccessLogsRequest {
|
|
|
703
563
|
|
|
704
564
|
appId: string | undefined;
|
|
705
565
|
}
|
|
706
|
-
export declare namespace GenerateAccessLogsRequest {
|
|
707
|
-
|
|
708
|
-
const filterSensitiveLog: (obj: GenerateAccessLogsRequest) => any;
|
|
709
|
-
}
|
|
710
566
|
|
|
711
567
|
export interface GenerateAccessLogsResult {
|
|
712
568
|
|
|
713
569
|
logUrl?: string;
|
|
714
570
|
}
|
|
715
|
-
export declare namespace GenerateAccessLogsResult {
|
|
716
|
-
|
|
717
|
-
const filterSensitiveLog: (obj: GenerateAccessLogsResult) => any;
|
|
718
|
-
}
|
|
719
571
|
|
|
720
572
|
export interface GetAppRequest {
|
|
721
573
|
|
|
722
574
|
appId: string | undefined;
|
|
723
575
|
}
|
|
724
|
-
export declare namespace GetAppRequest {
|
|
725
|
-
|
|
726
|
-
const filterSensitiveLog: (obj: GetAppRequest) => any;
|
|
727
|
-
}
|
|
728
576
|
export interface GetAppResult {
|
|
729
577
|
|
|
730
578
|
app: App | undefined;
|
|
731
579
|
}
|
|
732
|
-
export declare namespace GetAppResult {
|
|
733
|
-
|
|
734
|
-
const filterSensitiveLog: (obj: GetAppResult) => any;
|
|
735
|
-
}
|
|
736
580
|
|
|
737
581
|
export interface GetArtifactUrlRequest {
|
|
738
582
|
|
|
739
583
|
artifactId: string | undefined;
|
|
740
584
|
}
|
|
741
|
-
export declare namespace GetArtifactUrlRequest {
|
|
742
|
-
|
|
743
|
-
const filterSensitiveLog: (obj: GetArtifactUrlRequest) => any;
|
|
744
|
-
}
|
|
745
585
|
|
|
746
586
|
export interface GetArtifactUrlResult {
|
|
747
587
|
|
|
@@ -749,10 +589,6 @@ export interface GetArtifactUrlResult {
|
|
|
749
589
|
|
|
750
590
|
artifactUrl: string | undefined;
|
|
751
591
|
}
|
|
752
|
-
export declare namespace GetArtifactUrlResult {
|
|
753
|
-
|
|
754
|
-
const filterSensitiveLog: (obj: GetArtifactUrlResult) => any;
|
|
755
|
-
}
|
|
756
592
|
|
|
757
593
|
export interface GetBackendEnvironmentRequest {
|
|
758
594
|
|
|
@@ -760,19 +596,11 @@ export interface GetBackendEnvironmentRequest {
|
|
|
760
596
|
|
|
761
597
|
environmentName: string | undefined;
|
|
762
598
|
}
|
|
763
|
-
export declare namespace GetBackendEnvironmentRequest {
|
|
764
|
-
|
|
765
|
-
const filterSensitiveLog: (obj: GetBackendEnvironmentRequest) => any;
|
|
766
|
-
}
|
|
767
599
|
|
|
768
600
|
export interface GetBackendEnvironmentResult {
|
|
769
601
|
|
|
770
602
|
backendEnvironment: BackendEnvironment | undefined;
|
|
771
603
|
}
|
|
772
|
-
export declare namespace GetBackendEnvironmentResult {
|
|
773
|
-
|
|
774
|
-
const filterSensitiveLog: (obj: GetBackendEnvironmentResult) => any;
|
|
775
|
-
}
|
|
776
604
|
|
|
777
605
|
export interface GetBranchRequest {
|
|
778
606
|
|
|
@@ -780,18 +608,10 @@ export interface GetBranchRequest {
|
|
|
780
608
|
|
|
781
609
|
branchName: string | undefined;
|
|
782
610
|
}
|
|
783
|
-
export declare namespace GetBranchRequest {
|
|
784
|
-
|
|
785
|
-
const filterSensitiveLog: (obj: GetBranchRequest) => any;
|
|
786
|
-
}
|
|
787
611
|
export interface GetBranchResult {
|
|
788
612
|
|
|
789
613
|
branch: Branch | undefined;
|
|
790
614
|
}
|
|
791
|
-
export declare namespace GetBranchResult {
|
|
792
|
-
|
|
793
|
-
const filterSensitiveLog: (obj: GetBranchResult) => any;
|
|
794
|
-
}
|
|
795
615
|
|
|
796
616
|
export interface GetDomainAssociationRequest {
|
|
797
617
|
|
|
@@ -799,19 +619,11 @@ export interface GetDomainAssociationRequest {
|
|
|
799
619
|
|
|
800
620
|
domainName: string | undefined;
|
|
801
621
|
}
|
|
802
|
-
export declare namespace GetDomainAssociationRequest {
|
|
803
|
-
|
|
804
|
-
const filterSensitiveLog: (obj: GetDomainAssociationRequest) => any;
|
|
805
|
-
}
|
|
806
622
|
|
|
807
623
|
export interface GetDomainAssociationResult {
|
|
808
624
|
|
|
809
625
|
domainAssociation: DomainAssociation | undefined;
|
|
810
626
|
}
|
|
811
|
-
export declare namespace GetDomainAssociationResult {
|
|
812
|
-
|
|
813
|
-
const filterSensitiveLog: (obj: GetDomainAssociationResult) => any;
|
|
814
|
-
}
|
|
815
627
|
|
|
816
628
|
export interface GetJobRequest {
|
|
817
629
|
|
|
@@ -821,10 +633,6 @@ export interface GetJobRequest {
|
|
|
821
633
|
|
|
822
634
|
jobId: string | undefined;
|
|
823
635
|
}
|
|
824
|
-
export declare namespace GetJobRequest {
|
|
825
|
-
|
|
826
|
-
const filterSensitiveLog: (obj: GetJobRequest) => any;
|
|
827
|
-
}
|
|
828
636
|
|
|
829
637
|
export interface Step {
|
|
830
638
|
|
|
@@ -850,10 +658,6 @@ export interface Step {
|
|
|
850
658
|
|
|
851
659
|
context?: string;
|
|
852
660
|
}
|
|
853
|
-
export declare namespace Step {
|
|
854
|
-
|
|
855
|
-
const filterSensitiveLog: (obj: Step) => any;
|
|
856
|
-
}
|
|
857
661
|
|
|
858
662
|
export interface Job {
|
|
859
663
|
|
|
@@ -861,36 +665,20 @@ export interface Job {
|
|
|
861
665
|
|
|
862
666
|
steps: Step[] | undefined;
|
|
863
667
|
}
|
|
864
|
-
export declare namespace Job {
|
|
865
|
-
|
|
866
|
-
const filterSensitiveLog: (obj: Job) => any;
|
|
867
|
-
}
|
|
868
668
|
export interface GetJobResult {
|
|
869
669
|
|
|
870
670
|
job: Job | undefined;
|
|
871
671
|
}
|
|
872
|
-
export declare namespace GetJobResult {
|
|
873
|
-
|
|
874
|
-
const filterSensitiveLog: (obj: GetJobResult) => any;
|
|
875
|
-
}
|
|
876
672
|
|
|
877
673
|
export interface GetWebhookRequest {
|
|
878
674
|
|
|
879
675
|
webhookId: string | undefined;
|
|
880
676
|
}
|
|
881
|
-
export declare namespace GetWebhookRequest {
|
|
882
|
-
|
|
883
|
-
const filterSensitiveLog: (obj: GetWebhookRequest) => any;
|
|
884
|
-
}
|
|
885
677
|
|
|
886
678
|
export interface GetWebhookResult {
|
|
887
679
|
|
|
888
680
|
webhook: Webhook | undefined;
|
|
889
681
|
}
|
|
890
|
-
export declare namespace GetWebhookResult {
|
|
891
|
-
|
|
892
|
-
const filterSensitiveLog: (obj: GetWebhookResult) => any;
|
|
893
|
-
}
|
|
894
682
|
|
|
895
683
|
export interface ListAppsRequest {
|
|
896
684
|
|
|
@@ -898,10 +686,6 @@ export interface ListAppsRequest {
|
|
|
898
686
|
|
|
899
687
|
maxResults?: number;
|
|
900
688
|
}
|
|
901
|
-
export declare namespace ListAppsRequest {
|
|
902
|
-
|
|
903
|
-
const filterSensitiveLog: (obj: ListAppsRequest) => any;
|
|
904
|
-
}
|
|
905
689
|
|
|
906
690
|
export interface ListAppsResult {
|
|
907
691
|
|
|
@@ -909,10 +693,6 @@ export interface ListAppsResult {
|
|
|
909
693
|
|
|
910
694
|
nextToken?: string;
|
|
911
695
|
}
|
|
912
|
-
export declare namespace ListAppsResult {
|
|
913
|
-
|
|
914
|
-
const filterSensitiveLog: (obj: ListAppsResult) => any;
|
|
915
|
-
}
|
|
916
696
|
|
|
917
697
|
export interface ListArtifactsRequest {
|
|
918
698
|
|
|
@@ -926,10 +706,6 @@ export interface ListArtifactsRequest {
|
|
|
926
706
|
|
|
927
707
|
maxResults?: number;
|
|
928
708
|
}
|
|
929
|
-
export declare namespace ListArtifactsRequest {
|
|
930
|
-
|
|
931
|
-
const filterSensitiveLog: (obj: ListArtifactsRequest) => any;
|
|
932
|
-
}
|
|
933
709
|
|
|
934
710
|
export interface Artifact {
|
|
935
711
|
|
|
@@ -937,10 +713,6 @@ export interface Artifact {
|
|
|
937
713
|
|
|
938
714
|
artifactId: string | undefined;
|
|
939
715
|
}
|
|
940
|
-
export declare namespace Artifact {
|
|
941
|
-
|
|
942
|
-
const filterSensitiveLog: (obj: Artifact) => any;
|
|
943
|
-
}
|
|
944
716
|
|
|
945
717
|
export interface ListArtifactsResult {
|
|
946
718
|
|
|
@@ -948,10 +720,6 @@ export interface ListArtifactsResult {
|
|
|
948
720
|
|
|
949
721
|
nextToken?: string;
|
|
950
722
|
}
|
|
951
|
-
export declare namespace ListArtifactsResult {
|
|
952
|
-
|
|
953
|
-
const filterSensitiveLog: (obj: ListArtifactsResult) => any;
|
|
954
|
-
}
|
|
955
723
|
|
|
956
724
|
export interface ListBackendEnvironmentsRequest {
|
|
957
725
|
|
|
@@ -963,10 +731,6 @@ export interface ListBackendEnvironmentsRequest {
|
|
|
963
731
|
|
|
964
732
|
maxResults?: number;
|
|
965
733
|
}
|
|
966
|
-
export declare namespace ListBackendEnvironmentsRequest {
|
|
967
|
-
|
|
968
|
-
const filterSensitiveLog: (obj: ListBackendEnvironmentsRequest) => any;
|
|
969
|
-
}
|
|
970
734
|
|
|
971
735
|
export interface ListBackendEnvironmentsResult {
|
|
972
736
|
|
|
@@ -974,10 +738,6 @@ export interface ListBackendEnvironmentsResult {
|
|
|
974
738
|
|
|
975
739
|
nextToken?: string;
|
|
976
740
|
}
|
|
977
|
-
export declare namespace ListBackendEnvironmentsResult {
|
|
978
|
-
|
|
979
|
-
const filterSensitiveLog: (obj: ListBackendEnvironmentsResult) => any;
|
|
980
|
-
}
|
|
981
741
|
|
|
982
742
|
export interface ListBranchesRequest {
|
|
983
743
|
|
|
@@ -987,10 +747,6 @@ export interface ListBranchesRequest {
|
|
|
987
747
|
|
|
988
748
|
maxResults?: number;
|
|
989
749
|
}
|
|
990
|
-
export declare namespace ListBranchesRequest {
|
|
991
|
-
|
|
992
|
-
const filterSensitiveLog: (obj: ListBranchesRequest) => any;
|
|
993
|
-
}
|
|
994
750
|
|
|
995
751
|
export interface ListBranchesResult {
|
|
996
752
|
|
|
@@ -998,10 +754,6 @@ export interface ListBranchesResult {
|
|
|
998
754
|
|
|
999
755
|
nextToken?: string;
|
|
1000
756
|
}
|
|
1001
|
-
export declare namespace ListBranchesResult {
|
|
1002
|
-
|
|
1003
|
-
const filterSensitiveLog: (obj: ListBranchesResult) => any;
|
|
1004
|
-
}
|
|
1005
757
|
|
|
1006
758
|
export interface ListDomainAssociationsRequest {
|
|
1007
759
|
|
|
@@ -1011,10 +763,6 @@ export interface ListDomainAssociationsRequest {
|
|
|
1011
763
|
|
|
1012
764
|
maxResults?: number;
|
|
1013
765
|
}
|
|
1014
|
-
export declare namespace ListDomainAssociationsRequest {
|
|
1015
|
-
|
|
1016
|
-
const filterSensitiveLog: (obj: ListDomainAssociationsRequest) => any;
|
|
1017
|
-
}
|
|
1018
766
|
|
|
1019
767
|
export interface ListDomainAssociationsResult {
|
|
1020
768
|
|
|
@@ -1022,10 +770,6 @@ export interface ListDomainAssociationsResult {
|
|
|
1022
770
|
|
|
1023
771
|
nextToken?: string;
|
|
1024
772
|
}
|
|
1025
|
-
export declare namespace ListDomainAssociationsResult {
|
|
1026
|
-
|
|
1027
|
-
const filterSensitiveLog: (obj: ListDomainAssociationsResult) => any;
|
|
1028
|
-
}
|
|
1029
773
|
|
|
1030
774
|
export interface ListJobsRequest {
|
|
1031
775
|
|
|
@@ -1037,10 +781,6 @@ export interface ListJobsRequest {
|
|
|
1037
781
|
|
|
1038
782
|
maxResults?: number;
|
|
1039
783
|
}
|
|
1040
|
-
export declare namespace ListJobsRequest {
|
|
1041
|
-
|
|
1042
|
-
const filterSensitiveLog: (obj: ListJobsRequest) => any;
|
|
1043
|
-
}
|
|
1044
784
|
|
|
1045
785
|
export interface ListJobsResult {
|
|
1046
786
|
|
|
@@ -1048,28 +788,16 @@ export interface ListJobsResult {
|
|
|
1048
788
|
|
|
1049
789
|
nextToken?: string;
|
|
1050
790
|
}
|
|
1051
|
-
export declare namespace ListJobsResult {
|
|
1052
|
-
|
|
1053
|
-
const filterSensitiveLog: (obj: ListJobsResult) => any;
|
|
1054
|
-
}
|
|
1055
791
|
|
|
1056
792
|
export interface ListTagsForResourceRequest {
|
|
1057
793
|
|
|
1058
794
|
resourceArn: string | undefined;
|
|
1059
795
|
}
|
|
1060
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1061
|
-
|
|
1062
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1063
|
-
}
|
|
1064
796
|
|
|
1065
797
|
export interface ListTagsForResourceResponse {
|
|
1066
798
|
|
|
1067
799
|
tags?: Record<string, string>;
|
|
1068
800
|
}
|
|
1069
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1070
|
-
|
|
1071
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1072
|
-
}
|
|
1073
801
|
|
|
1074
802
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
1075
803
|
readonly name: "ResourceNotFoundException";
|
|
@@ -1087,10 +815,6 @@ export interface ListWebhooksRequest {
|
|
|
1087
815
|
|
|
1088
816
|
maxResults?: number;
|
|
1089
817
|
}
|
|
1090
|
-
export declare namespace ListWebhooksRequest {
|
|
1091
|
-
|
|
1092
|
-
const filterSensitiveLog: (obj: ListWebhooksRequest) => any;
|
|
1093
|
-
}
|
|
1094
818
|
|
|
1095
819
|
export interface ListWebhooksResult {
|
|
1096
820
|
|
|
@@ -1098,10 +822,6 @@ export interface ListWebhooksResult {
|
|
|
1098
822
|
|
|
1099
823
|
nextToken?: string;
|
|
1100
824
|
}
|
|
1101
|
-
export declare namespace ListWebhooksResult {
|
|
1102
|
-
|
|
1103
|
-
const filterSensitiveLog: (obj: ListWebhooksResult) => any;
|
|
1104
|
-
}
|
|
1105
825
|
|
|
1106
826
|
export interface StartDeploymentRequest {
|
|
1107
827
|
|
|
@@ -1113,19 +833,11 @@ export interface StartDeploymentRequest {
|
|
|
1113
833
|
|
|
1114
834
|
sourceUrl?: string;
|
|
1115
835
|
}
|
|
1116
|
-
export declare namespace StartDeploymentRequest {
|
|
1117
|
-
|
|
1118
|
-
const filterSensitiveLog: (obj: StartDeploymentRequest) => any;
|
|
1119
|
-
}
|
|
1120
836
|
|
|
1121
837
|
export interface StartDeploymentResult {
|
|
1122
838
|
|
|
1123
839
|
jobSummary: JobSummary | undefined;
|
|
1124
840
|
}
|
|
1125
|
-
export declare namespace StartDeploymentResult {
|
|
1126
|
-
|
|
1127
|
-
const filterSensitiveLog: (obj: StartDeploymentResult) => any;
|
|
1128
|
-
}
|
|
1129
841
|
|
|
1130
842
|
export interface StartJobRequest {
|
|
1131
843
|
|
|
@@ -1145,19 +857,11 @@ export interface StartJobRequest {
|
|
|
1145
857
|
|
|
1146
858
|
commitTime?: Date;
|
|
1147
859
|
}
|
|
1148
|
-
export declare namespace StartJobRequest {
|
|
1149
|
-
|
|
1150
|
-
const filterSensitiveLog: (obj: StartJobRequest) => any;
|
|
1151
|
-
}
|
|
1152
860
|
|
|
1153
861
|
export interface StartJobResult {
|
|
1154
862
|
|
|
1155
863
|
jobSummary: JobSummary | undefined;
|
|
1156
864
|
}
|
|
1157
|
-
export declare namespace StartJobResult {
|
|
1158
|
-
|
|
1159
|
-
const filterSensitiveLog: (obj: StartJobResult) => any;
|
|
1160
|
-
}
|
|
1161
865
|
|
|
1162
866
|
export interface StopJobRequest {
|
|
1163
867
|
|
|
@@ -1167,19 +871,11 @@ export interface StopJobRequest {
|
|
|
1167
871
|
|
|
1168
872
|
jobId: string | undefined;
|
|
1169
873
|
}
|
|
1170
|
-
export declare namespace StopJobRequest {
|
|
1171
|
-
|
|
1172
|
-
const filterSensitiveLog: (obj: StopJobRequest) => any;
|
|
1173
|
-
}
|
|
1174
874
|
|
|
1175
875
|
export interface StopJobResult {
|
|
1176
876
|
|
|
1177
877
|
jobSummary: JobSummary | undefined;
|
|
1178
878
|
}
|
|
1179
|
-
export declare namespace StopJobResult {
|
|
1180
|
-
|
|
1181
|
-
const filterSensitiveLog: (obj: StopJobResult) => any;
|
|
1182
|
-
}
|
|
1183
879
|
|
|
1184
880
|
export interface TagResourceRequest {
|
|
1185
881
|
|
|
@@ -1187,17 +883,9 @@ export interface TagResourceRequest {
|
|
|
1187
883
|
|
|
1188
884
|
tags: Record<string, string> | undefined;
|
|
1189
885
|
}
|
|
1190
|
-
export declare namespace TagResourceRequest {
|
|
1191
|
-
|
|
1192
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1193
|
-
}
|
|
1194
886
|
|
|
1195
887
|
export interface TagResourceResponse {
|
|
1196
888
|
}
|
|
1197
|
-
export declare namespace TagResourceResponse {
|
|
1198
|
-
|
|
1199
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1200
|
-
}
|
|
1201
889
|
|
|
1202
890
|
export interface UntagResourceRequest {
|
|
1203
891
|
|
|
@@ -1205,17 +893,9 @@ export interface UntagResourceRequest {
|
|
|
1205
893
|
|
|
1206
894
|
tagKeys: string[] | undefined;
|
|
1207
895
|
}
|
|
1208
|
-
export declare namespace UntagResourceRequest {
|
|
1209
|
-
|
|
1210
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1211
|
-
}
|
|
1212
896
|
|
|
1213
897
|
export interface UntagResourceResponse {
|
|
1214
898
|
}
|
|
1215
|
-
export declare namespace UntagResourceResponse {
|
|
1216
|
-
|
|
1217
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1218
|
-
}
|
|
1219
899
|
|
|
1220
900
|
export interface UpdateAppRequest {
|
|
1221
901
|
|
|
@@ -1257,19 +937,11 @@ export interface UpdateAppRequest {
|
|
|
1257
937
|
|
|
1258
938
|
accessToken?: string;
|
|
1259
939
|
}
|
|
1260
|
-
export declare namespace UpdateAppRequest {
|
|
1261
|
-
|
|
1262
|
-
const filterSensitiveLog: (obj: UpdateAppRequest) => any;
|
|
1263
|
-
}
|
|
1264
940
|
|
|
1265
941
|
export interface UpdateAppResult {
|
|
1266
942
|
|
|
1267
943
|
app: App | undefined;
|
|
1268
944
|
}
|
|
1269
|
-
export declare namespace UpdateAppResult {
|
|
1270
|
-
|
|
1271
|
-
const filterSensitiveLog: (obj: UpdateAppResult) => any;
|
|
1272
|
-
}
|
|
1273
945
|
|
|
1274
946
|
export interface UpdateBranchRequest {
|
|
1275
947
|
|
|
@@ -1307,19 +979,11 @@ export interface UpdateBranchRequest {
|
|
|
1307
979
|
|
|
1308
980
|
backendEnvironmentArn?: string;
|
|
1309
981
|
}
|
|
1310
|
-
export declare namespace UpdateBranchRequest {
|
|
1311
|
-
|
|
1312
|
-
const filterSensitiveLog: (obj: UpdateBranchRequest) => any;
|
|
1313
|
-
}
|
|
1314
982
|
|
|
1315
983
|
export interface UpdateBranchResult {
|
|
1316
984
|
|
|
1317
985
|
branch: Branch | undefined;
|
|
1318
986
|
}
|
|
1319
|
-
export declare namespace UpdateBranchResult {
|
|
1320
|
-
|
|
1321
|
-
const filterSensitiveLog: (obj: UpdateBranchResult) => any;
|
|
1322
|
-
}
|
|
1323
987
|
|
|
1324
988
|
export interface UpdateDomainAssociationRequest {
|
|
1325
989
|
|
|
@@ -1335,19 +999,11 @@ export interface UpdateDomainAssociationRequest {
|
|
|
1335
999
|
|
|
1336
1000
|
autoSubDomainIAMRole?: string;
|
|
1337
1001
|
}
|
|
1338
|
-
export declare namespace UpdateDomainAssociationRequest {
|
|
1339
|
-
|
|
1340
|
-
const filterSensitiveLog: (obj: UpdateDomainAssociationRequest) => any;
|
|
1341
|
-
}
|
|
1342
1002
|
|
|
1343
1003
|
export interface UpdateDomainAssociationResult {
|
|
1344
1004
|
|
|
1345
1005
|
domainAssociation: DomainAssociation | undefined;
|
|
1346
1006
|
}
|
|
1347
|
-
export declare namespace UpdateDomainAssociationResult {
|
|
1348
|
-
|
|
1349
|
-
const filterSensitiveLog: (obj: UpdateDomainAssociationResult) => any;
|
|
1350
|
-
}
|
|
1351
1007
|
|
|
1352
1008
|
export interface UpdateWebhookRequest {
|
|
1353
1009
|
|
|
@@ -1357,16 +1013,184 @@ export interface UpdateWebhookRequest {
|
|
|
1357
1013
|
|
|
1358
1014
|
description?: string;
|
|
1359
1015
|
}
|
|
1360
|
-
export declare namespace UpdateWebhookRequest {
|
|
1361
|
-
|
|
1362
|
-
const filterSensitiveLog: (obj: UpdateWebhookRequest) => any;
|
|
1363
|
-
}
|
|
1364
1016
|
|
|
1365
1017
|
export interface UpdateWebhookResult {
|
|
1366
1018
|
|
|
1367
1019
|
webhook: Webhook | undefined;
|
|
1368
1020
|
}
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1021
|
+
|
|
1022
|
+
export declare const AutoBranchCreationConfigFilterSensitiveLog: (obj: AutoBranchCreationConfig) => any;
|
|
1023
|
+
|
|
1024
|
+
export declare const CustomRuleFilterSensitiveLog: (obj: CustomRule) => any;
|
|
1025
|
+
|
|
1026
|
+
export declare const CreateAppRequestFilterSensitiveLog: (obj: CreateAppRequest) => any;
|
|
1027
|
+
|
|
1028
|
+
export declare const ProductionBranchFilterSensitiveLog: (obj: ProductionBranch) => any;
|
|
1029
|
+
|
|
1030
|
+
export declare const AppFilterSensitiveLog: (obj: App) => any;
|
|
1031
|
+
|
|
1032
|
+
export declare const CreateAppResultFilterSensitiveLog: (obj: CreateAppResult) => any;
|
|
1033
|
+
|
|
1034
|
+
export declare const CreateBackendEnvironmentRequestFilterSensitiveLog: (obj: CreateBackendEnvironmentRequest) => any;
|
|
1035
|
+
|
|
1036
|
+
export declare const BackendEnvironmentFilterSensitiveLog: (obj: BackendEnvironment) => any;
|
|
1037
|
+
|
|
1038
|
+
export declare const CreateBackendEnvironmentResultFilterSensitiveLog: (obj: CreateBackendEnvironmentResult) => any;
|
|
1039
|
+
|
|
1040
|
+
export declare const CreateBranchRequestFilterSensitiveLog: (obj: CreateBranchRequest) => any;
|
|
1041
|
+
|
|
1042
|
+
export declare const BranchFilterSensitiveLog: (obj: Branch) => any;
|
|
1043
|
+
|
|
1044
|
+
export declare const CreateBranchResultFilterSensitiveLog: (obj: CreateBranchResult) => any;
|
|
1045
|
+
|
|
1046
|
+
export declare const CreateDeploymentRequestFilterSensitiveLog: (obj: CreateDeploymentRequest) => any;
|
|
1047
|
+
|
|
1048
|
+
export declare const CreateDeploymentResultFilterSensitiveLog: (obj: CreateDeploymentResult) => any;
|
|
1049
|
+
|
|
1050
|
+
export declare const SubDomainSettingFilterSensitiveLog: (obj: SubDomainSetting) => any;
|
|
1051
|
+
|
|
1052
|
+
export declare const CreateDomainAssociationRequestFilterSensitiveLog: (obj: CreateDomainAssociationRequest) => any;
|
|
1053
|
+
|
|
1054
|
+
export declare const SubDomainFilterSensitiveLog: (obj: SubDomain) => any;
|
|
1055
|
+
|
|
1056
|
+
export declare const DomainAssociationFilterSensitiveLog: (obj: DomainAssociation) => any;
|
|
1057
|
+
|
|
1058
|
+
export declare const CreateDomainAssociationResultFilterSensitiveLog: (obj: CreateDomainAssociationResult) => any;
|
|
1059
|
+
|
|
1060
|
+
export declare const CreateWebhookRequestFilterSensitiveLog: (obj: CreateWebhookRequest) => any;
|
|
1061
|
+
|
|
1062
|
+
export declare const WebhookFilterSensitiveLog: (obj: Webhook) => any;
|
|
1063
|
+
|
|
1064
|
+
export declare const CreateWebhookResultFilterSensitiveLog: (obj: CreateWebhookResult) => any;
|
|
1065
|
+
|
|
1066
|
+
export declare const DeleteAppRequestFilterSensitiveLog: (obj: DeleteAppRequest) => any;
|
|
1067
|
+
|
|
1068
|
+
export declare const DeleteAppResultFilterSensitiveLog: (obj: DeleteAppResult) => any;
|
|
1069
|
+
|
|
1070
|
+
export declare const DeleteBackendEnvironmentRequestFilterSensitiveLog: (obj: DeleteBackendEnvironmentRequest) => any;
|
|
1071
|
+
|
|
1072
|
+
export declare const DeleteBackendEnvironmentResultFilterSensitiveLog: (obj: DeleteBackendEnvironmentResult) => any;
|
|
1073
|
+
|
|
1074
|
+
export declare const DeleteBranchRequestFilterSensitiveLog: (obj: DeleteBranchRequest) => any;
|
|
1075
|
+
|
|
1076
|
+
export declare const DeleteBranchResultFilterSensitiveLog: (obj: DeleteBranchResult) => any;
|
|
1077
|
+
|
|
1078
|
+
export declare const DeleteDomainAssociationRequestFilterSensitiveLog: (obj: DeleteDomainAssociationRequest) => any;
|
|
1079
|
+
|
|
1080
|
+
export declare const DeleteDomainAssociationResultFilterSensitiveLog: (obj: DeleteDomainAssociationResult) => any;
|
|
1081
|
+
|
|
1082
|
+
export declare const DeleteJobRequestFilterSensitiveLog: (obj: DeleteJobRequest) => any;
|
|
1083
|
+
|
|
1084
|
+
export declare const JobSummaryFilterSensitiveLog: (obj: JobSummary) => any;
|
|
1085
|
+
|
|
1086
|
+
export declare const DeleteJobResultFilterSensitiveLog: (obj: DeleteJobResult) => any;
|
|
1087
|
+
|
|
1088
|
+
export declare const DeleteWebhookRequestFilterSensitiveLog: (obj: DeleteWebhookRequest) => any;
|
|
1089
|
+
|
|
1090
|
+
export declare const DeleteWebhookResultFilterSensitiveLog: (obj: DeleteWebhookResult) => any;
|
|
1091
|
+
|
|
1092
|
+
export declare const GenerateAccessLogsRequestFilterSensitiveLog: (obj: GenerateAccessLogsRequest) => any;
|
|
1093
|
+
|
|
1094
|
+
export declare const GenerateAccessLogsResultFilterSensitiveLog: (obj: GenerateAccessLogsResult) => any;
|
|
1095
|
+
|
|
1096
|
+
export declare const GetAppRequestFilterSensitiveLog: (obj: GetAppRequest) => any;
|
|
1097
|
+
|
|
1098
|
+
export declare const GetAppResultFilterSensitiveLog: (obj: GetAppResult) => any;
|
|
1099
|
+
|
|
1100
|
+
export declare const GetArtifactUrlRequestFilterSensitiveLog: (obj: GetArtifactUrlRequest) => any;
|
|
1101
|
+
|
|
1102
|
+
export declare const GetArtifactUrlResultFilterSensitiveLog: (obj: GetArtifactUrlResult) => any;
|
|
1103
|
+
|
|
1104
|
+
export declare const GetBackendEnvironmentRequestFilterSensitiveLog: (obj: GetBackendEnvironmentRequest) => any;
|
|
1105
|
+
|
|
1106
|
+
export declare const GetBackendEnvironmentResultFilterSensitiveLog: (obj: GetBackendEnvironmentResult) => any;
|
|
1107
|
+
|
|
1108
|
+
export declare const GetBranchRequestFilterSensitiveLog: (obj: GetBranchRequest) => any;
|
|
1109
|
+
|
|
1110
|
+
export declare const GetBranchResultFilterSensitiveLog: (obj: GetBranchResult) => any;
|
|
1111
|
+
|
|
1112
|
+
export declare const GetDomainAssociationRequestFilterSensitiveLog: (obj: GetDomainAssociationRequest) => any;
|
|
1113
|
+
|
|
1114
|
+
export declare const GetDomainAssociationResultFilterSensitiveLog: (obj: GetDomainAssociationResult) => any;
|
|
1115
|
+
|
|
1116
|
+
export declare const GetJobRequestFilterSensitiveLog: (obj: GetJobRequest) => any;
|
|
1117
|
+
|
|
1118
|
+
export declare const StepFilterSensitiveLog: (obj: Step) => any;
|
|
1119
|
+
|
|
1120
|
+
export declare const JobFilterSensitiveLog: (obj: Job) => any;
|
|
1121
|
+
|
|
1122
|
+
export declare const GetJobResultFilterSensitiveLog: (obj: GetJobResult) => any;
|
|
1123
|
+
|
|
1124
|
+
export declare const GetWebhookRequestFilterSensitiveLog: (obj: GetWebhookRequest) => any;
|
|
1125
|
+
|
|
1126
|
+
export declare const GetWebhookResultFilterSensitiveLog: (obj: GetWebhookResult) => any;
|
|
1127
|
+
|
|
1128
|
+
export declare const ListAppsRequestFilterSensitiveLog: (obj: ListAppsRequest) => any;
|
|
1129
|
+
|
|
1130
|
+
export declare const ListAppsResultFilterSensitiveLog: (obj: ListAppsResult) => any;
|
|
1131
|
+
|
|
1132
|
+
export declare const ListArtifactsRequestFilterSensitiveLog: (obj: ListArtifactsRequest) => any;
|
|
1133
|
+
|
|
1134
|
+
export declare const ArtifactFilterSensitiveLog: (obj: Artifact) => any;
|
|
1135
|
+
|
|
1136
|
+
export declare const ListArtifactsResultFilterSensitiveLog: (obj: ListArtifactsResult) => any;
|
|
1137
|
+
|
|
1138
|
+
export declare const ListBackendEnvironmentsRequestFilterSensitiveLog: (obj: ListBackendEnvironmentsRequest) => any;
|
|
1139
|
+
|
|
1140
|
+
export declare const ListBackendEnvironmentsResultFilterSensitiveLog: (obj: ListBackendEnvironmentsResult) => any;
|
|
1141
|
+
|
|
1142
|
+
export declare const ListBranchesRequestFilterSensitiveLog: (obj: ListBranchesRequest) => any;
|
|
1143
|
+
|
|
1144
|
+
export declare const ListBranchesResultFilterSensitiveLog: (obj: ListBranchesResult) => any;
|
|
1145
|
+
|
|
1146
|
+
export declare const ListDomainAssociationsRequestFilterSensitiveLog: (obj: ListDomainAssociationsRequest) => any;
|
|
1147
|
+
|
|
1148
|
+
export declare const ListDomainAssociationsResultFilterSensitiveLog: (obj: ListDomainAssociationsResult) => any;
|
|
1149
|
+
|
|
1150
|
+
export declare const ListJobsRequestFilterSensitiveLog: (obj: ListJobsRequest) => any;
|
|
1151
|
+
|
|
1152
|
+
export declare const ListJobsResultFilterSensitiveLog: (obj: ListJobsResult) => any;
|
|
1153
|
+
|
|
1154
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1155
|
+
|
|
1156
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1157
|
+
|
|
1158
|
+
export declare const ListWebhooksRequestFilterSensitiveLog: (obj: ListWebhooksRequest) => any;
|
|
1159
|
+
|
|
1160
|
+
export declare const ListWebhooksResultFilterSensitiveLog: (obj: ListWebhooksResult) => any;
|
|
1161
|
+
|
|
1162
|
+
export declare const StartDeploymentRequestFilterSensitiveLog: (obj: StartDeploymentRequest) => any;
|
|
1163
|
+
|
|
1164
|
+
export declare const StartDeploymentResultFilterSensitiveLog: (obj: StartDeploymentResult) => any;
|
|
1165
|
+
|
|
1166
|
+
export declare const StartJobRequestFilterSensitiveLog: (obj: StartJobRequest) => any;
|
|
1167
|
+
|
|
1168
|
+
export declare const StartJobResultFilterSensitiveLog: (obj: StartJobResult) => any;
|
|
1169
|
+
|
|
1170
|
+
export declare const StopJobRequestFilterSensitiveLog: (obj: StopJobRequest) => any;
|
|
1171
|
+
|
|
1172
|
+
export declare const StopJobResultFilterSensitiveLog: (obj: StopJobResult) => any;
|
|
1173
|
+
|
|
1174
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1175
|
+
|
|
1176
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1177
|
+
|
|
1178
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1179
|
+
|
|
1180
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1181
|
+
|
|
1182
|
+
export declare const UpdateAppRequestFilterSensitiveLog: (obj: UpdateAppRequest) => any;
|
|
1183
|
+
|
|
1184
|
+
export declare const UpdateAppResultFilterSensitiveLog: (obj: UpdateAppResult) => any;
|
|
1185
|
+
|
|
1186
|
+
export declare const UpdateBranchRequestFilterSensitiveLog: (obj: UpdateBranchRequest) => any;
|
|
1187
|
+
|
|
1188
|
+
export declare const UpdateBranchResultFilterSensitiveLog: (obj: UpdateBranchResult) => any;
|
|
1189
|
+
|
|
1190
|
+
export declare const UpdateDomainAssociationRequestFilterSensitiveLog: (obj: UpdateDomainAssociationRequest) => any;
|
|
1191
|
+
|
|
1192
|
+
export declare const UpdateDomainAssociationResultFilterSensitiveLog: (obj: UpdateDomainAssociationResult) => any;
|
|
1193
|
+
|
|
1194
|
+
export declare const UpdateWebhookRequestFilterSensitiveLog: (obj: UpdateWebhookRequest) => any;
|
|
1195
|
+
|
|
1196
|
+
export declare const UpdateWebhookResultFilterSensitiveLog: (obj: UpdateWebhookResult) => any;
|