@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.
Files changed (52) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Amplify.d.ts +670 -190
  3. package/dist-types/ts3.4/AmplifyClient.d.ts +351 -110
  4. package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/GetAppCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  31. package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +34 -17
  32. package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +37 -17
  33. package/dist-types/ts3.4/commands/StartJobCommand.d.ts +34 -17
  34. package/dist-types/ts3.4/commands/StopJobCommand.d.ts +32 -17
  35. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  36. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  37. package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +34 -17
  38. package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +34 -17
  39. package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +41 -17
  40. package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +34 -17
  41. package/dist-types/ts3.4/commands/index.d.ts +37 -37
  42. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  43. package/dist-types/ts3.4/index.d.ts +5 -5
  44. package/dist-types/ts3.4/models/AmplifyServiceException.d.ts +8 -6
  45. package/dist-types/ts3.4/models/index.d.ts +1 -1
  46. package/dist-types/ts3.4/models/models_0.d.ts +1277 -1196
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +449 -113
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  52. 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
- readonly name: "BadRequestException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
9
- }
10
- export declare enum Stage {
11
- BETA = "BETA",
12
- DEVELOPMENT = "DEVELOPMENT",
13
- EXPERIMENTAL = "EXPERIMENTAL",
14
- PRODUCTION = "PRODUCTION",
15
- PULL_REQUEST = "PULL_REQUEST"
16
- }
17
-
18
- export interface AutoBranchCreationConfig {
19
-
20
- stage?: Stage | string;
21
-
22
- framework?: string;
23
-
24
- enableAutoBuild?: boolean;
25
-
26
- environmentVariables?: Record<string, string>;
27
-
28
- basicAuthCredentials?: string;
29
-
30
- enableBasicAuth?: boolean;
31
-
32
- enablePerformanceMode?: boolean;
33
-
34
- buildSpec?: string;
35
-
36
- enablePullRequestPreview?: boolean;
37
-
38
- pullRequestEnvironmentName?: string;
39
- }
40
-
41
- export interface CustomRule {
42
-
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
-
58
- name: string | undefined;
59
-
60
- description?: string;
61
-
62
- repository?: string;
63
-
64
- platform?: Platform | string;
65
-
66
- iamServiceRoleArn?: string;
67
-
68
- oauthToken?: string;
69
-
70
- accessToken?: string;
71
-
72
- environmentVariables?: Record<string, string>;
73
-
74
- enableBranchAutoBuild?: boolean;
75
-
76
- enableBranchAutoDeletion?: boolean;
77
-
78
- enableBasicAuth?: boolean;
79
-
80
- basicAuthCredentials?: string;
81
-
82
- customRules?: CustomRule[];
83
-
84
- tags?: Record<string, string>;
85
-
86
- buildSpec?: string;
87
-
88
- customHeaders?: string;
89
-
90
- enableAutoBranchCreation?: boolean;
91
-
92
- autoBranchCreationPatterns?: string[];
93
-
94
- autoBranchCreationConfig?: AutoBranchCreationConfig;
95
- }
96
-
97
- export interface ProductionBranch {
98
-
99
- lastDeployTime?: Date;
100
-
101
- status?: string;
102
-
103
- thumbnailUrl?: string;
104
-
105
- branchName?: string;
106
- }
107
- export declare enum RepositoryCloneMethod {
108
- SIGV4 = "SIGV4",
109
- SSH = "SSH",
110
- TOKEN = "TOKEN"
111
- }
112
-
113
- export interface App {
114
-
115
- appId: string | undefined;
116
-
117
- appArn: string | undefined;
118
-
119
- name: string | undefined;
120
-
121
- tags?: Record<string, string>;
122
-
123
- description: string | undefined;
124
-
125
- repository: string | undefined;
126
-
127
- platform: Platform | string | undefined;
128
-
129
- createTime: Date | undefined;
130
-
131
- updateTime: Date | undefined;
132
-
133
- iamServiceRoleArn?: string;
134
-
135
- environmentVariables: Record<string, string> | undefined;
136
-
137
- defaultDomain: string | undefined;
138
-
139
- enableBranchAutoBuild: boolean | undefined;
140
-
141
- enableBranchAutoDeletion?: boolean;
142
-
143
- enableBasicAuth: boolean | undefined;
144
-
145
- basicAuthCredentials?: string;
146
-
147
- customRules?: CustomRule[];
148
-
149
- productionBranch?: ProductionBranch;
150
-
151
- buildSpec?: string;
152
-
153
- customHeaders?: string;
154
-
155
- enableAutoBranchCreation?: boolean;
156
-
157
- autoBranchCreationPatterns?: string[];
158
-
159
- autoBranchCreationConfig?: AutoBranchCreationConfig;
160
-
161
- repositoryCloneMethod?: RepositoryCloneMethod | string;
162
- }
163
- export interface CreateAppResult {
164
-
165
- app: App | undefined;
166
- }
167
-
168
- export declare class DependentServiceFailureException extends __BaseException {
169
- readonly name: "DependentServiceFailureException";
170
- readonly $fault: "server";
171
-
172
- constructor(opts: __ExceptionOptionType<DependentServiceFailureException, __BaseException>);
173
- }
174
-
175
- export declare class InternalFailureException extends __BaseException {
176
- readonly name: "InternalFailureException";
177
- readonly $fault: "server";
178
-
179
- constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
180
- }
181
-
182
- export declare class LimitExceededException extends __BaseException {
183
- readonly name: "LimitExceededException";
184
- readonly $fault: "client";
185
-
186
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
187
- }
188
-
189
- export declare class UnauthorizedException extends __BaseException {
190
- readonly name: "UnauthorizedException";
191
- readonly $fault: "client";
192
-
193
- constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
194
- }
195
-
196
- export interface CreateBackendEnvironmentRequest {
197
-
198
- appId: string | undefined;
199
-
200
- environmentName: string | undefined;
201
-
202
- stackName?: string;
203
-
204
- deploymentArtifacts?: string;
205
- }
206
-
207
- export interface BackendEnvironment {
208
-
209
- backendEnvironmentArn: string | undefined;
210
-
211
- environmentName: string | undefined;
212
-
213
- stackName?: string;
214
-
215
- deploymentArtifacts?: string;
216
-
217
- createTime: Date | undefined;
218
-
219
- updateTime: Date | undefined;
220
- }
221
-
222
- export interface CreateBackendEnvironmentResult {
223
-
224
- backendEnvironment: BackendEnvironment | undefined;
225
- }
226
-
227
- export declare class NotFoundException extends __BaseException {
228
- readonly name: "NotFoundException";
229
- readonly $fault: "client";
230
-
231
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
232
- }
233
-
234
- export interface CreateBranchRequest {
235
-
236
- appId: string | undefined;
237
-
238
- branchName: string | undefined;
239
-
240
- description?: string;
241
-
242
- stage?: Stage | string;
243
-
244
- framework?: string;
245
-
246
- enableNotification?: boolean;
247
-
248
- enableAutoBuild?: boolean;
249
-
250
- environmentVariables?: Record<string, string>;
251
-
252
- basicAuthCredentials?: string;
253
-
254
- enableBasicAuth?: boolean;
255
-
256
- enablePerformanceMode?: boolean;
257
-
258
- tags?: Record<string, string>;
259
-
260
- buildSpec?: string;
261
-
262
- ttl?: string;
263
-
264
- displayName?: string;
265
-
266
- enablePullRequestPreview?: boolean;
267
-
268
- pullRequestEnvironmentName?: string;
269
-
270
- backendEnvironmentArn?: string;
271
- }
272
-
273
- export interface Branch {
274
-
275
- branchArn: string | undefined;
276
-
277
- branchName: string | undefined;
278
-
279
- description: string | undefined;
280
-
281
- tags?: Record<string, string>;
282
-
283
- stage: Stage | string | undefined;
284
-
285
- displayName: string | undefined;
286
-
287
- enableNotification: boolean | undefined;
288
-
289
- createTime: Date | undefined;
290
-
291
- updateTime: Date | undefined;
292
-
293
- environmentVariables: Record<string, string> | undefined;
294
-
295
- enableAutoBuild: boolean | undefined;
296
-
297
- customDomains: string[] | undefined;
298
-
299
- framework: string | undefined;
300
-
301
- activeJobId: string | undefined;
302
-
303
- totalNumberOfJobs: string | undefined;
304
-
305
- enableBasicAuth: boolean | undefined;
306
-
307
- enablePerformanceMode?: boolean;
308
-
309
- thumbnailUrl?: string;
310
-
311
- basicAuthCredentials?: string;
312
-
313
- buildSpec?: string;
314
-
315
- ttl: string | undefined;
316
-
317
- associatedResources?: string[];
318
-
319
- enablePullRequestPreview: boolean | undefined;
320
-
321
- pullRequestEnvironmentName?: string;
322
-
323
- destinationBranch?: string;
324
-
325
- sourceBranch?: string;
326
-
327
- backendEnvironmentArn?: string;
328
- }
329
-
330
- export interface CreateBranchResult {
331
-
332
- branch: Branch | undefined;
333
- }
334
-
335
- export interface CreateDeploymentRequest {
336
-
337
- appId: string | undefined;
338
-
339
- branchName: string | undefined;
340
-
341
- fileMap?: Record<string, string>;
342
- }
343
-
344
- export interface CreateDeploymentResult {
345
-
346
- jobId?: string;
347
-
348
- fileUploadUrls: Record<string, string> | undefined;
349
-
350
- zipUploadUrl: string | undefined;
351
- }
352
-
353
- export interface SubDomainSetting {
354
-
355
- prefix: string | undefined;
356
-
357
- branchName: string | undefined;
358
- }
359
-
360
- export interface CreateDomainAssociationRequest {
361
-
362
- appId: string | undefined;
363
-
364
- domainName: string | undefined;
365
-
366
- enableAutoSubDomain?: boolean;
367
-
368
- subDomainSettings: SubDomainSetting[] | undefined;
369
-
370
- autoSubDomainCreationPatterns?: string[];
371
-
372
- autoSubDomainIAMRole?: string;
373
- }
374
- export declare enum DomainStatus {
375
- AVAILABLE = "AVAILABLE",
376
- CREATING = "CREATING",
377
- FAILED = "FAILED",
378
- IN_PROGRESS = "IN_PROGRESS",
379
- PENDING_DEPLOYMENT = "PENDING_DEPLOYMENT",
380
- PENDING_VERIFICATION = "PENDING_VERIFICATION",
381
- REQUESTING_CERTIFICATE = "REQUESTING_CERTIFICATE",
382
- UPDATING = "UPDATING"
383
- }
384
-
385
- export interface SubDomain {
386
-
387
- subDomainSetting: SubDomainSetting | undefined;
388
-
389
- verified: boolean | undefined;
390
-
391
- dnsRecord: string | undefined;
392
- }
393
-
394
- export interface DomainAssociation {
395
-
396
- domainAssociationArn: string | undefined;
397
-
398
- domainName: string | undefined;
399
-
400
- enableAutoSubDomain: boolean | undefined;
401
-
402
- autoSubDomainCreationPatterns?: string[];
403
-
404
- autoSubDomainIAMRole?: string;
405
-
406
- domainStatus: DomainStatus | string | undefined;
407
-
408
- statusReason: string | undefined;
409
-
410
- certificateVerificationDNSRecord?: string;
411
-
412
- subDomains: SubDomain[] | undefined;
413
- }
414
-
415
- export interface CreateDomainAssociationResult {
416
-
417
- domainAssociation: DomainAssociation | undefined;
418
- }
419
-
420
- export interface CreateWebhookRequest {
421
-
422
- appId: string | undefined;
423
-
424
- branchName: string | undefined;
425
-
426
- description?: string;
427
- }
428
-
429
- export interface Webhook {
430
-
431
- webhookArn: string | undefined;
432
-
433
- webhookId: string | undefined;
434
-
435
- webhookUrl: string | undefined;
436
-
437
- branchName: string | undefined;
438
-
439
- description: string | undefined;
440
-
441
- createTime: Date | undefined;
442
-
443
- updateTime: Date | undefined;
444
- }
445
-
446
- export interface CreateWebhookResult {
447
-
448
- webhook: Webhook | undefined;
449
- }
450
-
451
- export interface DeleteAppRequest {
452
-
453
- appId: string | undefined;
454
- }
455
-
456
- export interface DeleteAppResult {
457
-
458
- app: App | undefined;
459
- }
460
-
461
- export interface DeleteBackendEnvironmentRequest {
462
-
463
- appId: string | undefined;
464
-
465
- environmentName: string | undefined;
466
- }
467
-
468
- export interface DeleteBackendEnvironmentResult {
469
-
470
- backendEnvironment: BackendEnvironment | undefined;
471
- }
472
-
473
- export interface DeleteBranchRequest {
474
-
475
- appId: string | undefined;
476
-
477
- branchName: string | undefined;
478
- }
479
-
480
- export interface DeleteBranchResult {
481
-
482
- branch: Branch | undefined;
483
- }
484
-
485
- export interface DeleteDomainAssociationRequest {
486
-
487
- appId: string | undefined;
488
-
489
- domainName: string | undefined;
490
- }
491
- export interface DeleteDomainAssociationResult {
492
-
493
- domainAssociation: DomainAssociation | undefined;
494
- }
495
-
496
- export interface DeleteJobRequest {
497
-
498
- appId: string | undefined;
499
-
500
- branchName: string | undefined;
501
-
502
- jobId: string | undefined;
503
- }
504
- export declare enum JobType {
505
- MANUAL = "MANUAL",
506
- RELEASE = "RELEASE",
507
- RETRY = "RETRY",
508
- WEB_HOOK = "WEB_HOOK"
509
- }
510
- export declare enum JobStatus {
511
- CANCELLED = "CANCELLED",
512
- CANCELLING = "CANCELLING",
513
- FAILED = "FAILED",
514
- PENDING = "PENDING",
515
- PROVISIONING = "PROVISIONING",
516
- RUNNING = "RUNNING",
517
- SUCCEED = "SUCCEED"
518
- }
519
-
520
- export interface JobSummary {
521
-
522
- jobArn: string | undefined;
523
-
524
- jobId: string | undefined;
525
-
526
- commitId: string | undefined;
527
-
528
- commitMessage: string | undefined;
529
-
530
- commitTime: Date | undefined;
531
-
532
- startTime: Date | undefined;
533
-
534
- status: JobStatus | string | undefined;
535
-
536
- endTime?: Date;
537
-
538
- jobType: JobType | string | undefined;
539
- }
540
-
541
- export interface DeleteJobResult {
542
-
543
- jobSummary: JobSummary | undefined;
544
- }
545
-
546
- export interface DeleteWebhookRequest {
547
-
548
- webhookId: string | undefined;
549
- }
550
-
551
- export interface DeleteWebhookResult {
552
-
553
- webhook: Webhook | undefined;
554
- }
555
-
556
- export interface GenerateAccessLogsRequest {
557
-
558
- startTime?: Date;
559
-
560
- endTime?: Date;
561
-
562
- domainName: string | undefined;
563
-
564
- appId: string | undefined;
565
- }
566
-
567
- export interface GenerateAccessLogsResult {
568
-
569
- logUrl?: string;
570
- }
571
-
572
- export interface GetAppRequest {
573
-
574
- appId: string | undefined;
575
- }
576
- export interface GetAppResult {
577
-
578
- app: App | undefined;
579
- }
580
-
581
- export interface GetArtifactUrlRequest {
582
-
583
- artifactId: string | undefined;
584
- }
585
-
586
- export interface GetArtifactUrlResult {
587
-
588
- artifactId: string | undefined;
589
-
590
- artifactUrl: string | undefined;
591
- }
592
-
593
- export interface GetBackendEnvironmentRequest {
594
-
595
- appId: string | undefined;
596
-
597
- environmentName: string | undefined;
598
- }
599
-
600
- export interface GetBackendEnvironmentResult {
601
-
602
- backendEnvironment: BackendEnvironment | undefined;
603
- }
604
-
605
- export interface GetBranchRequest {
606
-
607
- appId: string | undefined;
608
-
609
- branchName: string | undefined;
610
- }
611
- export interface GetBranchResult {
612
-
613
- branch: Branch | undefined;
614
- }
615
-
616
- export interface GetDomainAssociationRequest {
617
-
618
- appId: string | undefined;
619
-
620
- domainName: string | undefined;
621
- }
622
-
623
- export interface GetDomainAssociationResult {
624
-
625
- domainAssociation: DomainAssociation | undefined;
626
- }
627
-
628
- export interface GetJobRequest {
629
-
630
- appId: string | undefined;
631
-
632
- branchName: string | undefined;
633
-
634
- jobId: string | undefined;
635
- }
636
-
637
- export interface Step {
638
-
639
- stepName: string | undefined;
640
-
641
- startTime: Date | undefined;
642
-
643
- status: JobStatus | string | undefined;
644
-
645
- endTime: Date | undefined;
646
-
647
- logUrl?: string;
648
-
649
- artifactsUrl?: string;
650
-
651
- testArtifactsUrl?: string;
652
-
653
- testConfigUrl?: string;
654
-
655
- screenshots?: Record<string, string>;
656
-
657
- statusReason?: string;
658
-
659
- context?: string;
660
- }
661
-
662
- export interface Job {
663
-
664
- summary: JobSummary | undefined;
665
-
666
- steps: Step[] | undefined;
667
- }
668
- export interface GetJobResult {
669
-
670
- job: Job | undefined;
671
- }
672
-
673
- export interface GetWebhookRequest {
674
-
675
- webhookId: string | undefined;
676
- }
677
-
678
- export interface GetWebhookResult {
679
-
680
- webhook: Webhook | undefined;
681
- }
682
-
683
- export interface ListAppsRequest {
684
-
685
- nextToken?: string;
686
-
687
- maxResults?: number;
688
- }
689
-
690
- export interface ListAppsResult {
691
-
692
- apps: App[] | undefined;
693
-
694
- nextToken?: string;
695
- }
696
-
697
- export interface ListArtifactsRequest {
698
-
699
- appId: string | undefined;
700
-
701
- branchName: string | undefined;
702
-
703
- jobId: string | undefined;
704
-
705
- nextToken?: string;
706
-
707
- maxResults?: number;
708
- }
709
-
710
- export interface Artifact {
711
-
712
- artifactFileName: string | undefined;
713
-
714
- artifactId: string | undefined;
715
- }
716
-
717
- export interface ListArtifactsResult {
718
-
719
- artifacts: Artifact[] | undefined;
720
-
721
- nextToken?: string;
722
- }
723
-
724
- export interface ListBackendEnvironmentsRequest {
725
-
726
- appId: string | undefined;
727
-
728
- environmentName?: string;
729
-
730
- nextToken?: string;
731
-
732
- maxResults?: number;
733
- }
734
-
735
- export interface ListBackendEnvironmentsResult {
736
-
737
- backendEnvironments: BackendEnvironment[] | undefined;
738
-
739
- nextToken?: string;
740
- }
741
-
742
- export interface ListBranchesRequest {
743
-
744
- appId: string | undefined;
745
-
746
- nextToken?: string;
747
-
748
- maxResults?: number;
749
- }
750
-
751
- export interface ListBranchesResult {
752
-
753
- branches: Branch[] | undefined;
754
-
755
- nextToken?: string;
756
- }
757
-
758
- export interface ListDomainAssociationsRequest {
759
-
760
- appId: string | undefined;
761
-
762
- nextToken?: string;
763
-
764
- maxResults?: number;
765
- }
766
-
767
- export interface ListDomainAssociationsResult {
768
-
769
- domainAssociations: DomainAssociation[] | undefined;
770
-
771
- nextToken?: string;
772
- }
773
-
774
- export interface ListJobsRequest {
775
-
776
- appId: string | undefined;
777
-
778
- branchName: string | undefined;
779
-
780
- nextToken?: string;
781
-
782
- maxResults?: number;
783
- }
784
-
785
- export interface ListJobsResult {
786
-
787
- jobSummaries: JobSummary[] | undefined;
788
-
789
- nextToken?: string;
790
- }
791
-
792
- export interface ListTagsForResourceRequest {
793
-
794
- resourceArn: string | undefined;
795
- }
796
-
797
- export interface ListTagsForResourceResponse {
798
-
799
- tags?: Record<string, string>;
800
- }
801
-
802
- export declare class ResourceNotFoundException extends __BaseException {
803
- readonly name: "ResourceNotFoundException";
804
- readonly $fault: "client";
805
- code: string | undefined;
806
-
807
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
808
- }
809
-
810
- export interface ListWebhooksRequest {
811
-
812
- appId: string | undefined;
813
-
814
- nextToken?: string;
815
-
816
- maxResults?: number;
817
- }
818
-
819
- export interface ListWebhooksResult {
820
-
821
- webhooks: Webhook[] | undefined;
822
-
823
- nextToken?: string;
824
- }
825
-
826
- export interface StartDeploymentRequest {
827
-
828
- appId: string | undefined;
829
-
830
- branchName: string | undefined;
831
-
832
- jobId?: string;
833
-
834
- sourceUrl?: string;
835
- }
836
-
837
- export interface StartDeploymentResult {
838
-
839
- jobSummary: JobSummary | undefined;
840
- }
841
-
842
- export interface StartJobRequest {
843
-
844
- appId: string | undefined;
845
-
846
- branchName: string | undefined;
847
-
848
- jobId?: string;
849
-
850
- jobType: JobType | string | undefined;
851
-
852
- jobReason?: string;
853
-
854
- commitId?: string;
855
-
856
- commitMessage?: string;
857
-
858
- commitTime?: Date;
859
- }
860
-
861
- export interface StartJobResult {
862
-
863
- jobSummary: JobSummary | undefined;
864
- }
865
-
866
- export interface StopJobRequest {
867
-
868
- appId: string | undefined;
869
-
870
- branchName: string | undefined;
871
-
872
- jobId: string | undefined;
873
- }
874
-
875
- export interface StopJobResult {
876
-
877
- jobSummary: JobSummary | undefined;
878
- }
879
-
880
- export interface TagResourceRequest {
881
-
882
- resourceArn: string | undefined;
883
-
884
- tags: Record<string, string> | undefined;
885
- }
886
-
887
- export interface TagResourceResponse {
888
- }
889
-
890
- export interface UntagResourceRequest {
891
-
892
- resourceArn: string | undefined;
893
-
894
- tagKeys: string[] | undefined;
895
- }
896
-
897
- export interface UntagResourceResponse {
898
- }
899
-
900
- export interface UpdateAppRequest {
901
-
902
- appId: string | undefined;
903
-
904
- name?: string;
905
-
906
- description?: string;
907
-
908
- platform?: Platform | string;
909
-
910
- iamServiceRoleArn?: string;
911
-
912
- environmentVariables?: Record<string, string>;
913
-
914
- enableBranchAutoBuild?: boolean;
915
-
916
- enableBranchAutoDeletion?: boolean;
917
-
918
- enableBasicAuth?: boolean;
919
-
920
- basicAuthCredentials?: string;
921
-
922
- customRules?: CustomRule[];
923
-
924
- buildSpec?: string;
925
-
926
- customHeaders?: string;
927
-
928
- enableAutoBranchCreation?: boolean;
929
-
930
- autoBranchCreationPatterns?: string[];
931
-
932
- autoBranchCreationConfig?: AutoBranchCreationConfig;
933
-
934
- repository?: string;
935
-
936
- oauthToken?: string;
937
-
938
- accessToken?: string;
939
- }
940
-
941
- export interface UpdateAppResult {
942
-
943
- app: App | undefined;
944
- }
945
-
946
- export interface UpdateBranchRequest {
947
-
948
- appId: string | undefined;
949
-
950
- branchName: string | undefined;
951
-
952
- description?: string;
953
-
954
- framework?: string;
955
-
956
- stage?: Stage | string;
957
-
958
- enableNotification?: boolean;
959
-
960
- enableAutoBuild?: boolean;
961
-
962
- environmentVariables?: Record<string, string>;
963
-
964
- basicAuthCredentials?: string;
965
-
966
- enableBasicAuth?: boolean;
967
-
968
- enablePerformanceMode?: boolean;
969
-
970
- buildSpec?: string;
971
-
972
- ttl?: string;
973
-
974
- displayName?: string;
975
-
976
- enablePullRequestPreview?: boolean;
977
-
978
- pullRequestEnvironmentName?: string;
979
-
980
- backendEnvironmentArn?: string;
981
- }
982
-
983
- export interface UpdateBranchResult {
984
-
985
- branch: Branch | undefined;
986
- }
987
-
988
- export interface UpdateDomainAssociationRequest {
989
-
990
- appId: string | undefined;
991
-
992
- domainName: string | undefined;
993
-
994
- enableAutoSubDomain?: boolean;
995
-
996
- subDomainSettings?: SubDomainSetting[];
997
-
998
- autoSubDomainCreationPatterns?: string[];
999
-
1000
- autoSubDomainIAMRole?: string;
1001
- }
1002
-
1003
- export interface UpdateDomainAssociationResult {
1004
-
1005
- domainAssociation: DomainAssociation | undefined;
1006
- }
1007
-
1008
- export interface UpdateWebhookRequest {
1009
-
1010
- webhookId: string | undefined;
1011
-
1012
- branchName?: string;
1013
-
1014
- description?: string;
1015
- }
1016
-
1017
- export interface UpdateWebhookResult {
1018
-
1019
- webhook: Webhook | undefined;
1020
- }
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;
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;