@aws-sdk/client-amplify 3.169.0 → 3.171.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 +633 -190
  3. package/dist-types/ts3.4/AmplifyClient.d.ts +326 -110
  4. package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/GetAppCommand.d.ts +30 -17
  18. package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +30 -17
  23. package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +39 -17
  27. package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
  30. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  31. package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +32 -17
  32. package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +35 -17
  33. package/dist-types/ts3.4/commands/StartJobCommand.d.ts +32 -17
  34. package/dist-types/ts3.4/commands/StopJobCommand.d.ts +30 -17
  35. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  36. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  37. package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +32 -17
  38. package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +32 -17
  39. package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +39 -17
  40. package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +32 -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 +7 -6
  45. package/dist-types/ts3.4/models/index.d.ts +1 -1
  46. package/dist-types/ts3.4/models/models_0.d.ts +844 -1196
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +449 -113
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  52. package/package.json +34 -34
@@ -1,1196 +1,844 @@
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
+ export declare class BadRequestException extends __BaseException {
4
+ readonly name: "BadRequestException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<BadRequestException, __BaseException>
8
+ );
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
+ export interface AutoBranchCreationConfig {
18
+ stage?: Stage | string;
19
+ framework?: string;
20
+ enableAutoBuild?: boolean;
21
+ environmentVariables?: Record<string, string>;
22
+ basicAuthCredentials?: string;
23
+ enableBasicAuth?: boolean;
24
+ enablePerformanceMode?: boolean;
25
+ buildSpec?: string;
26
+ enablePullRequestPreview?: boolean;
27
+ pullRequestEnvironmentName?: string;
28
+ }
29
+ export interface CustomRule {
30
+ source: string | undefined;
31
+ target: string | undefined;
32
+ status?: string;
33
+ condition?: string;
34
+ }
35
+ export declare enum Platform {
36
+ WEB = "WEB",
37
+ WEB_DYNAMIC = "WEB_DYNAMIC",
38
+ }
39
+ export interface CreateAppRequest {
40
+ name: string | undefined;
41
+ description?: string;
42
+ repository?: string;
43
+ platform?: Platform | string;
44
+ iamServiceRoleArn?: string;
45
+ oauthToken?: string;
46
+ accessToken?: string;
47
+ environmentVariables?: Record<string, string>;
48
+ enableBranchAutoBuild?: boolean;
49
+ enableBranchAutoDeletion?: boolean;
50
+ enableBasicAuth?: boolean;
51
+ basicAuthCredentials?: string;
52
+ customRules?: CustomRule[];
53
+ tags?: Record<string, string>;
54
+ buildSpec?: string;
55
+ customHeaders?: string;
56
+ enableAutoBranchCreation?: boolean;
57
+ autoBranchCreationPatterns?: string[];
58
+ autoBranchCreationConfig?: AutoBranchCreationConfig;
59
+ }
60
+ export interface ProductionBranch {
61
+ lastDeployTime?: Date;
62
+ status?: string;
63
+ thumbnailUrl?: string;
64
+ branchName?: string;
65
+ }
66
+ export declare enum RepositoryCloneMethod {
67
+ SIGV4 = "SIGV4",
68
+ SSH = "SSH",
69
+ TOKEN = "TOKEN",
70
+ }
71
+ export interface App {
72
+ appId: string | undefined;
73
+ appArn: string | undefined;
74
+ name: string | undefined;
75
+ tags?: Record<string, string>;
76
+ description: string | undefined;
77
+ repository: string | undefined;
78
+ platform: Platform | string | undefined;
79
+ createTime: Date | undefined;
80
+ updateTime: Date | undefined;
81
+ iamServiceRoleArn?: string;
82
+ environmentVariables: Record<string, string> | undefined;
83
+ defaultDomain: string | undefined;
84
+ enableBranchAutoBuild: boolean | undefined;
85
+ enableBranchAutoDeletion?: boolean;
86
+ enableBasicAuth: boolean | undefined;
87
+ basicAuthCredentials?: string;
88
+ customRules?: CustomRule[];
89
+ productionBranch?: ProductionBranch;
90
+ buildSpec?: string;
91
+ customHeaders?: string;
92
+ enableAutoBranchCreation?: boolean;
93
+ autoBranchCreationPatterns?: string[];
94
+ autoBranchCreationConfig?: AutoBranchCreationConfig;
95
+ repositoryCloneMethod?: RepositoryCloneMethod | string;
96
+ }
97
+ export interface CreateAppResult {
98
+ app: App | undefined;
99
+ }
100
+ export declare class DependentServiceFailureException extends __BaseException {
101
+ readonly name: "DependentServiceFailureException";
102
+ readonly $fault: "server";
103
+ constructor(
104
+ opts: __ExceptionOptionType<
105
+ DependentServiceFailureException,
106
+ __BaseException
107
+ >
108
+ );
109
+ }
110
+ export declare class InternalFailureException extends __BaseException {
111
+ readonly name: "InternalFailureException";
112
+ readonly $fault: "server";
113
+ constructor(
114
+ opts: __ExceptionOptionType<InternalFailureException, __BaseException>
115
+ );
116
+ }
117
+ export declare class LimitExceededException extends __BaseException {
118
+ readonly name: "LimitExceededException";
119
+ readonly $fault: "client";
120
+ constructor(
121
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
122
+ );
123
+ }
124
+ export declare class UnauthorizedException extends __BaseException {
125
+ readonly name: "UnauthorizedException";
126
+ readonly $fault: "client";
127
+ constructor(
128
+ opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
129
+ );
130
+ }
131
+ export interface CreateBackendEnvironmentRequest {
132
+ appId: string | undefined;
133
+ environmentName: string | undefined;
134
+ stackName?: string;
135
+ deploymentArtifacts?: string;
136
+ }
137
+ export interface BackendEnvironment {
138
+ backendEnvironmentArn: string | undefined;
139
+ environmentName: string | undefined;
140
+ stackName?: string;
141
+ deploymentArtifacts?: string;
142
+ createTime: Date | undefined;
143
+ updateTime: Date | undefined;
144
+ }
145
+ export interface CreateBackendEnvironmentResult {
146
+ backendEnvironment: BackendEnvironment | undefined;
147
+ }
148
+ export declare class NotFoundException extends __BaseException {
149
+ readonly name: "NotFoundException";
150
+ readonly $fault: "client";
151
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
152
+ }
153
+ export interface CreateBranchRequest {
154
+ appId: string | undefined;
155
+ branchName: string | undefined;
156
+ description?: string;
157
+ stage?: Stage | string;
158
+ framework?: string;
159
+ enableNotification?: boolean;
160
+ enableAutoBuild?: boolean;
161
+ environmentVariables?: Record<string, string>;
162
+ basicAuthCredentials?: string;
163
+ enableBasicAuth?: boolean;
164
+ enablePerformanceMode?: boolean;
165
+ tags?: Record<string, string>;
166
+ buildSpec?: string;
167
+ ttl?: string;
168
+ displayName?: string;
169
+ enablePullRequestPreview?: boolean;
170
+ pullRequestEnvironmentName?: string;
171
+ backendEnvironmentArn?: string;
172
+ }
173
+ export interface Branch {
174
+ branchArn: string | undefined;
175
+ branchName: string | undefined;
176
+ description: string | undefined;
177
+ tags?: Record<string, string>;
178
+ stage: Stage | string | undefined;
179
+ displayName: string | undefined;
180
+ enableNotification: boolean | undefined;
181
+ createTime: Date | undefined;
182
+ updateTime: Date | undefined;
183
+ environmentVariables: Record<string, string> | undefined;
184
+ enableAutoBuild: boolean | undefined;
185
+ customDomains: string[] | undefined;
186
+ framework: string | undefined;
187
+ activeJobId: string | undefined;
188
+ totalNumberOfJobs: string | undefined;
189
+ enableBasicAuth: boolean | undefined;
190
+ enablePerformanceMode?: boolean;
191
+ thumbnailUrl?: string;
192
+ basicAuthCredentials?: string;
193
+ buildSpec?: string;
194
+ ttl: string | undefined;
195
+ associatedResources?: string[];
196
+ enablePullRequestPreview: boolean | undefined;
197
+ pullRequestEnvironmentName?: string;
198
+ destinationBranch?: string;
199
+ sourceBranch?: string;
200
+ backendEnvironmentArn?: string;
201
+ }
202
+ export interface CreateBranchResult {
203
+ branch: Branch | undefined;
204
+ }
205
+ export interface CreateDeploymentRequest {
206
+ appId: string | undefined;
207
+ branchName: string | undefined;
208
+ fileMap?: Record<string, string>;
209
+ }
210
+ export interface CreateDeploymentResult {
211
+ jobId?: string;
212
+ fileUploadUrls: Record<string, string> | undefined;
213
+ zipUploadUrl: string | undefined;
214
+ }
215
+ export interface SubDomainSetting {
216
+ prefix: string | undefined;
217
+ branchName: string | undefined;
218
+ }
219
+ export interface CreateDomainAssociationRequest {
220
+ appId: string | undefined;
221
+ domainName: string | undefined;
222
+ enableAutoSubDomain?: boolean;
223
+ subDomainSettings: SubDomainSetting[] | undefined;
224
+ autoSubDomainCreationPatterns?: string[];
225
+ autoSubDomainIAMRole?: string;
226
+ }
227
+ export declare enum DomainStatus {
228
+ AVAILABLE = "AVAILABLE",
229
+ CREATING = "CREATING",
230
+ FAILED = "FAILED",
231
+ IN_PROGRESS = "IN_PROGRESS",
232
+ PENDING_DEPLOYMENT = "PENDING_DEPLOYMENT",
233
+ PENDING_VERIFICATION = "PENDING_VERIFICATION",
234
+ REQUESTING_CERTIFICATE = "REQUESTING_CERTIFICATE",
235
+ UPDATING = "UPDATING",
236
+ }
237
+ export interface SubDomain {
238
+ subDomainSetting: SubDomainSetting | undefined;
239
+ verified: boolean | undefined;
240
+ dnsRecord: string | undefined;
241
+ }
242
+ export interface DomainAssociation {
243
+ domainAssociationArn: string | undefined;
244
+ domainName: string | undefined;
245
+ enableAutoSubDomain: boolean | undefined;
246
+ autoSubDomainCreationPatterns?: string[];
247
+ autoSubDomainIAMRole?: string;
248
+ domainStatus: DomainStatus | string | undefined;
249
+ statusReason: string | undefined;
250
+ certificateVerificationDNSRecord?: string;
251
+ subDomains: SubDomain[] | undefined;
252
+ }
253
+ export interface CreateDomainAssociationResult {
254
+ domainAssociation: DomainAssociation | undefined;
255
+ }
256
+ export interface CreateWebhookRequest {
257
+ appId: string | undefined;
258
+ branchName: string | undefined;
259
+ description?: string;
260
+ }
261
+ export interface Webhook {
262
+ webhookArn: string | undefined;
263
+ webhookId: string | undefined;
264
+ webhookUrl: string | undefined;
265
+ branchName: string | undefined;
266
+ description: string | undefined;
267
+ createTime: Date | undefined;
268
+ updateTime: Date | undefined;
269
+ }
270
+ export interface CreateWebhookResult {
271
+ webhook: Webhook | undefined;
272
+ }
273
+ export interface DeleteAppRequest {
274
+ appId: string | undefined;
275
+ }
276
+ export interface DeleteAppResult {
277
+ app: App | undefined;
278
+ }
279
+ export interface DeleteBackendEnvironmentRequest {
280
+ appId: string | undefined;
281
+ environmentName: string | undefined;
282
+ }
283
+ export interface DeleteBackendEnvironmentResult {
284
+ backendEnvironment: BackendEnvironment | undefined;
285
+ }
286
+ export interface DeleteBranchRequest {
287
+ appId: string | undefined;
288
+ branchName: string | undefined;
289
+ }
290
+ export interface DeleteBranchResult {
291
+ branch: Branch | undefined;
292
+ }
293
+ export interface DeleteDomainAssociationRequest {
294
+ appId: string | undefined;
295
+ domainName: string | undefined;
296
+ }
297
+ export interface DeleteDomainAssociationResult {
298
+ domainAssociation: DomainAssociation | undefined;
299
+ }
300
+ export interface DeleteJobRequest {
301
+ appId: string | undefined;
302
+ branchName: string | undefined;
303
+ jobId: string | undefined;
304
+ }
305
+ export declare enum JobType {
306
+ MANUAL = "MANUAL",
307
+ RELEASE = "RELEASE",
308
+ RETRY = "RETRY",
309
+ WEB_HOOK = "WEB_HOOK",
310
+ }
311
+ export declare enum JobStatus {
312
+ CANCELLED = "CANCELLED",
313
+ CANCELLING = "CANCELLING",
314
+ FAILED = "FAILED",
315
+ PENDING = "PENDING",
316
+ PROVISIONING = "PROVISIONING",
317
+ RUNNING = "RUNNING",
318
+ SUCCEED = "SUCCEED",
319
+ }
320
+ export interface JobSummary {
321
+ jobArn: string | undefined;
322
+ jobId: string | undefined;
323
+ commitId: string | undefined;
324
+ commitMessage: string | undefined;
325
+ commitTime: Date | undefined;
326
+ startTime: Date | undefined;
327
+ status: JobStatus | string | undefined;
328
+ endTime?: Date;
329
+ jobType: JobType | string | undefined;
330
+ }
331
+ export interface DeleteJobResult {
332
+ jobSummary: JobSummary | undefined;
333
+ }
334
+ export interface DeleteWebhookRequest {
335
+ webhookId: string | undefined;
336
+ }
337
+ export interface DeleteWebhookResult {
338
+ webhook: Webhook | undefined;
339
+ }
340
+ export interface GenerateAccessLogsRequest {
341
+ startTime?: Date;
342
+ endTime?: Date;
343
+ domainName: string | undefined;
344
+ appId: string | undefined;
345
+ }
346
+ export interface GenerateAccessLogsResult {
347
+ logUrl?: string;
348
+ }
349
+ export interface GetAppRequest {
350
+ appId: string | undefined;
351
+ }
352
+ export interface GetAppResult {
353
+ app: App | undefined;
354
+ }
355
+ export interface GetArtifactUrlRequest {
356
+ artifactId: string | undefined;
357
+ }
358
+ export interface GetArtifactUrlResult {
359
+ artifactId: string | undefined;
360
+ artifactUrl: string | undefined;
361
+ }
362
+ export interface GetBackendEnvironmentRequest {
363
+ appId: string | undefined;
364
+ environmentName: string | undefined;
365
+ }
366
+ export interface GetBackendEnvironmentResult {
367
+ backendEnvironment: BackendEnvironment | undefined;
368
+ }
369
+ export interface GetBranchRequest {
370
+ appId: string | undefined;
371
+ branchName: string | undefined;
372
+ }
373
+ export interface GetBranchResult {
374
+ branch: Branch | undefined;
375
+ }
376
+ export interface GetDomainAssociationRequest {
377
+ appId: string | undefined;
378
+ domainName: string | undefined;
379
+ }
380
+ export interface GetDomainAssociationResult {
381
+ domainAssociation: DomainAssociation | undefined;
382
+ }
383
+ export interface GetJobRequest {
384
+ appId: string | undefined;
385
+ branchName: string | undefined;
386
+ jobId: string | undefined;
387
+ }
388
+ export interface Step {
389
+ stepName: string | undefined;
390
+ startTime: Date | undefined;
391
+ status: JobStatus | string | undefined;
392
+ endTime: Date | undefined;
393
+ logUrl?: string;
394
+ artifactsUrl?: string;
395
+ testArtifactsUrl?: string;
396
+ testConfigUrl?: string;
397
+ screenshots?: Record<string, string>;
398
+ statusReason?: string;
399
+ context?: string;
400
+ }
401
+ export interface Job {
402
+ summary: JobSummary | undefined;
403
+ steps: Step[] | undefined;
404
+ }
405
+ export interface GetJobResult {
406
+ job: Job | undefined;
407
+ }
408
+ export interface GetWebhookRequest {
409
+ webhookId: string | undefined;
410
+ }
411
+ export interface GetWebhookResult {
412
+ webhook: Webhook | undefined;
413
+ }
414
+ export interface ListAppsRequest {
415
+ nextToken?: string;
416
+ maxResults?: number;
417
+ }
418
+ export interface ListAppsResult {
419
+ apps: App[] | undefined;
420
+ nextToken?: string;
421
+ }
422
+ export interface ListArtifactsRequest {
423
+ appId: string | undefined;
424
+ branchName: string | undefined;
425
+ jobId: string | undefined;
426
+ nextToken?: string;
427
+ maxResults?: number;
428
+ }
429
+ export interface Artifact {
430
+ artifactFileName: string | undefined;
431
+ artifactId: string | undefined;
432
+ }
433
+ export interface ListArtifactsResult {
434
+ artifacts: Artifact[] | undefined;
435
+ nextToken?: string;
436
+ }
437
+ export interface ListBackendEnvironmentsRequest {
438
+ appId: string | undefined;
439
+ environmentName?: string;
440
+ nextToken?: string;
441
+ maxResults?: number;
442
+ }
443
+ export interface ListBackendEnvironmentsResult {
444
+ backendEnvironments: BackendEnvironment[] | undefined;
445
+ nextToken?: string;
446
+ }
447
+ export interface ListBranchesRequest {
448
+ appId: string | undefined;
449
+ nextToken?: string;
450
+ maxResults?: number;
451
+ }
452
+ export interface ListBranchesResult {
453
+ branches: Branch[] | undefined;
454
+ nextToken?: string;
455
+ }
456
+ export interface ListDomainAssociationsRequest {
457
+ appId: string | undefined;
458
+ nextToken?: string;
459
+ maxResults?: number;
460
+ }
461
+ export interface ListDomainAssociationsResult {
462
+ domainAssociations: DomainAssociation[] | undefined;
463
+ nextToken?: string;
464
+ }
465
+ export interface ListJobsRequest {
466
+ appId: string | undefined;
467
+ branchName: string | undefined;
468
+ nextToken?: string;
469
+ maxResults?: number;
470
+ }
471
+ export interface ListJobsResult {
472
+ jobSummaries: JobSummary[] | undefined;
473
+ nextToken?: string;
474
+ }
475
+ export interface ListTagsForResourceRequest {
476
+ resourceArn: string | undefined;
477
+ }
478
+ export interface ListTagsForResourceResponse {
479
+ tags?: Record<string, string>;
480
+ }
481
+ export declare class ResourceNotFoundException extends __BaseException {
482
+ readonly name: "ResourceNotFoundException";
483
+ readonly $fault: "client";
484
+ code: string | undefined;
485
+ constructor(
486
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
487
+ );
488
+ }
489
+ export interface ListWebhooksRequest {
490
+ appId: string | undefined;
491
+ nextToken?: string;
492
+ maxResults?: number;
493
+ }
494
+ export interface ListWebhooksResult {
495
+ webhooks: Webhook[] | undefined;
496
+ nextToken?: string;
497
+ }
498
+ export interface StartDeploymentRequest {
499
+ appId: string | undefined;
500
+ branchName: string | undefined;
501
+ jobId?: string;
502
+ sourceUrl?: string;
503
+ }
504
+ export interface StartDeploymentResult {
505
+ jobSummary: JobSummary | undefined;
506
+ }
507
+ export interface StartJobRequest {
508
+ appId: string | undefined;
509
+ branchName: string | undefined;
510
+ jobId?: string;
511
+ jobType: JobType | string | undefined;
512
+ jobReason?: string;
513
+ commitId?: string;
514
+ commitMessage?: string;
515
+ commitTime?: Date;
516
+ }
517
+ export interface StartJobResult {
518
+ jobSummary: JobSummary | undefined;
519
+ }
520
+ export interface StopJobRequest {
521
+ appId: string | undefined;
522
+ branchName: string | undefined;
523
+ jobId: string | undefined;
524
+ }
525
+ export interface StopJobResult {
526
+ jobSummary: JobSummary | undefined;
527
+ }
528
+ export interface TagResourceRequest {
529
+ resourceArn: string | undefined;
530
+ tags: Record<string, string> | undefined;
531
+ }
532
+ export interface TagResourceResponse {}
533
+ export interface UntagResourceRequest {
534
+ resourceArn: string | undefined;
535
+ tagKeys: string[] | undefined;
536
+ }
537
+ export interface UntagResourceResponse {}
538
+ export interface UpdateAppRequest {
539
+ appId: string | undefined;
540
+ name?: string;
541
+ description?: string;
542
+ platform?: Platform | string;
543
+ iamServiceRoleArn?: string;
544
+ environmentVariables?: Record<string, string>;
545
+ enableBranchAutoBuild?: boolean;
546
+ enableBranchAutoDeletion?: boolean;
547
+ enableBasicAuth?: boolean;
548
+ basicAuthCredentials?: string;
549
+ customRules?: CustomRule[];
550
+ buildSpec?: string;
551
+ customHeaders?: string;
552
+ enableAutoBranchCreation?: boolean;
553
+ autoBranchCreationPatterns?: string[];
554
+ autoBranchCreationConfig?: AutoBranchCreationConfig;
555
+ repository?: string;
556
+ oauthToken?: string;
557
+ accessToken?: string;
558
+ }
559
+ export interface UpdateAppResult {
560
+ app: App | undefined;
561
+ }
562
+ export interface UpdateBranchRequest {
563
+ appId: string | undefined;
564
+ branchName: string | undefined;
565
+ description?: string;
566
+ framework?: string;
567
+ stage?: Stage | string;
568
+ enableNotification?: boolean;
569
+ enableAutoBuild?: boolean;
570
+ environmentVariables?: Record<string, string>;
571
+ basicAuthCredentials?: string;
572
+ enableBasicAuth?: boolean;
573
+ enablePerformanceMode?: boolean;
574
+ buildSpec?: string;
575
+ ttl?: string;
576
+ displayName?: string;
577
+ enablePullRequestPreview?: boolean;
578
+ pullRequestEnvironmentName?: string;
579
+ backendEnvironmentArn?: string;
580
+ }
581
+ export interface UpdateBranchResult {
582
+ branch: Branch | undefined;
583
+ }
584
+ export interface UpdateDomainAssociationRequest {
585
+ appId: string | undefined;
586
+ domainName: string | undefined;
587
+ enableAutoSubDomain?: boolean;
588
+ subDomainSettings?: SubDomainSetting[];
589
+ autoSubDomainCreationPatterns?: string[];
590
+ autoSubDomainIAMRole?: string;
591
+ }
592
+ export interface UpdateDomainAssociationResult {
593
+ domainAssociation: DomainAssociation | undefined;
594
+ }
595
+ export interface UpdateWebhookRequest {
596
+ webhookId: string | undefined;
597
+ branchName?: string;
598
+ description?: string;
599
+ }
600
+ export interface UpdateWebhookResult {
601
+ webhook: Webhook | undefined;
602
+ }
603
+ export declare const AutoBranchCreationConfigFilterSensitiveLog: (
604
+ obj: AutoBranchCreationConfig
605
+ ) => any;
606
+ export declare const CustomRuleFilterSensitiveLog: (obj: CustomRule) => any;
607
+ export declare const CreateAppRequestFilterSensitiveLog: (
608
+ obj: CreateAppRequest
609
+ ) => any;
610
+ export declare const ProductionBranchFilterSensitiveLog: (
611
+ obj: ProductionBranch
612
+ ) => any;
613
+ export declare const AppFilterSensitiveLog: (obj: App) => any;
614
+ export declare const CreateAppResultFilterSensitiveLog: (
615
+ obj: CreateAppResult
616
+ ) => any;
617
+ export declare const CreateBackendEnvironmentRequestFilterSensitiveLog: (
618
+ obj: CreateBackendEnvironmentRequest
619
+ ) => any;
620
+ export declare const BackendEnvironmentFilterSensitiveLog: (
621
+ obj: BackendEnvironment
622
+ ) => any;
623
+ export declare const CreateBackendEnvironmentResultFilterSensitiveLog: (
624
+ obj: CreateBackendEnvironmentResult
625
+ ) => any;
626
+ export declare const CreateBranchRequestFilterSensitiveLog: (
627
+ obj: CreateBranchRequest
628
+ ) => any;
629
+ export declare const BranchFilterSensitiveLog: (obj: Branch) => any;
630
+ export declare const CreateBranchResultFilterSensitiveLog: (
631
+ obj: CreateBranchResult
632
+ ) => any;
633
+ export declare const CreateDeploymentRequestFilterSensitiveLog: (
634
+ obj: CreateDeploymentRequest
635
+ ) => any;
636
+ export declare const CreateDeploymentResultFilterSensitiveLog: (
637
+ obj: CreateDeploymentResult
638
+ ) => any;
639
+ export declare const SubDomainSettingFilterSensitiveLog: (
640
+ obj: SubDomainSetting
641
+ ) => any;
642
+ export declare const CreateDomainAssociationRequestFilterSensitiveLog: (
643
+ obj: CreateDomainAssociationRequest
644
+ ) => any;
645
+ export declare const SubDomainFilterSensitiveLog: (obj: SubDomain) => any;
646
+ export declare const DomainAssociationFilterSensitiveLog: (
647
+ obj: DomainAssociation
648
+ ) => any;
649
+ export declare const CreateDomainAssociationResultFilterSensitiveLog: (
650
+ obj: CreateDomainAssociationResult
651
+ ) => any;
652
+ export declare const CreateWebhookRequestFilterSensitiveLog: (
653
+ obj: CreateWebhookRequest
654
+ ) => any;
655
+ export declare const WebhookFilterSensitiveLog: (obj: Webhook) => any;
656
+ export declare const CreateWebhookResultFilterSensitiveLog: (
657
+ obj: CreateWebhookResult
658
+ ) => any;
659
+ export declare const DeleteAppRequestFilterSensitiveLog: (
660
+ obj: DeleteAppRequest
661
+ ) => any;
662
+ export declare const DeleteAppResultFilterSensitiveLog: (
663
+ obj: DeleteAppResult
664
+ ) => any;
665
+ export declare const DeleteBackendEnvironmentRequestFilterSensitiveLog: (
666
+ obj: DeleteBackendEnvironmentRequest
667
+ ) => any;
668
+ export declare const DeleteBackendEnvironmentResultFilterSensitiveLog: (
669
+ obj: DeleteBackendEnvironmentResult
670
+ ) => any;
671
+ export declare const DeleteBranchRequestFilterSensitiveLog: (
672
+ obj: DeleteBranchRequest
673
+ ) => any;
674
+ export declare const DeleteBranchResultFilterSensitiveLog: (
675
+ obj: DeleteBranchResult
676
+ ) => any;
677
+ export declare const DeleteDomainAssociationRequestFilterSensitiveLog: (
678
+ obj: DeleteDomainAssociationRequest
679
+ ) => any;
680
+ export declare const DeleteDomainAssociationResultFilterSensitiveLog: (
681
+ obj: DeleteDomainAssociationResult
682
+ ) => any;
683
+ export declare const DeleteJobRequestFilterSensitiveLog: (
684
+ obj: DeleteJobRequest
685
+ ) => any;
686
+ export declare const JobSummaryFilterSensitiveLog: (obj: JobSummary) => any;
687
+ export declare const DeleteJobResultFilterSensitiveLog: (
688
+ obj: DeleteJobResult
689
+ ) => any;
690
+ export declare const DeleteWebhookRequestFilterSensitiveLog: (
691
+ obj: DeleteWebhookRequest
692
+ ) => any;
693
+ export declare const DeleteWebhookResultFilterSensitiveLog: (
694
+ obj: DeleteWebhookResult
695
+ ) => any;
696
+ export declare const GenerateAccessLogsRequestFilterSensitiveLog: (
697
+ obj: GenerateAccessLogsRequest
698
+ ) => any;
699
+ export declare const GenerateAccessLogsResultFilterSensitiveLog: (
700
+ obj: GenerateAccessLogsResult
701
+ ) => any;
702
+ export declare const GetAppRequestFilterSensitiveLog: (
703
+ obj: GetAppRequest
704
+ ) => any;
705
+ export declare const GetAppResultFilterSensitiveLog: (obj: GetAppResult) => any;
706
+ export declare const GetArtifactUrlRequestFilterSensitiveLog: (
707
+ obj: GetArtifactUrlRequest
708
+ ) => any;
709
+ export declare const GetArtifactUrlResultFilterSensitiveLog: (
710
+ obj: GetArtifactUrlResult
711
+ ) => any;
712
+ export declare const GetBackendEnvironmentRequestFilterSensitiveLog: (
713
+ obj: GetBackendEnvironmentRequest
714
+ ) => any;
715
+ export declare const GetBackendEnvironmentResultFilterSensitiveLog: (
716
+ obj: GetBackendEnvironmentResult
717
+ ) => any;
718
+ export declare const GetBranchRequestFilterSensitiveLog: (
719
+ obj: GetBranchRequest
720
+ ) => any;
721
+ export declare const GetBranchResultFilterSensitiveLog: (
722
+ obj: GetBranchResult
723
+ ) => any;
724
+ export declare const GetDomainAssociationRequestFilterSensitiveLog: (
725
+ obj: GetDomainAssociationRequest
726
+ ) => any;
727
+ export declare const GetDomainAssociationResultFilterSensitiveLog: (
728
+ obj: GetDomainAssociationResult
729
+ ) => any;
730
+ export declare const GetJobRequestFilterSensitiveLog: (
731
+ obj: GetJobRequest
732
+ ) => any;
733
+ export declare const StepFilterSensitiveLog: (obj: Step) => any;
734
+ export declare const JobFilterSensitiveLog: (obj: Job) => any;
735
+ export declare const GetJobResultFilterSensitiveLog: (obj: GetJobResult) => any;
736
+ export declare const GetWebhookRequestFilterSensitiveLog: (
737
+ obj: GetWebhookRequest
738
+ ) => any;
739
+ export declare const GetWebhookResultFilterSensitiveLog: (
740
+ obj: GetWebhookResult
741
+ ) => any;
742
+ export declare const ListAppsRequestFilterSensitiveLog: (
743
+ obj: ListAppsRequest
744
+ ) => any;
745
+ export declare const ListAppsResultFilterSensitiveLog: (
746
+ obj: ListAppsResult
747
+ ) => any;
748
+ export declare const ListArtifactsRequestFilterSensitiveLog: (
749
+ obj: ListArtifactsRequest
750
+ ) => any;
751
+ export declare const ArtifactFilterSensitiveLog: (obj: Artifact) => any;
752
+ export declare const ListArtifactsResultFilterSensitiveLog: (
753
+ obj: ListArtifactsResult
754
+ ) => any;
755
+ export declare const ListBackendEnvironmentsRequestFilterSensitiveLog: (
756
+ obj: ListBackendEnvironmentsRequest
757
+ ) => any;
758
+ export declare const ListBackendEnvironmentsResultFilterSensitiveLog: (
759
+ obj: ListBackendEnvironmentsResult
760
+ ) => any;
761
+ export declare const ListBranchesRequestFilterSensitiveLog: (
762
+ obj: ListBranchesRequest
763
+ ) => any;
764
+ export declare const ListBranchesResultFilterSensitiveLog: (
765
+ obj: ListBranchesResult
766
+ ) => any;
767
+ export declare const ListDomainAssociationsRequestFilterSensitiveLog: (
768
+ obj: ListDomainAssociationsRequest
769
+ ) => any;
770
+ export declare const ListDomainAssociationsResultFilterSensitiveLog: (
771
+ obj: ListDomainAssociationsResult
772
+ ) => any;
773
+ export declare const ListJobsRequestFilterSensitiveLog: (
774
+ obj: ListJobsRequest
775
+ ) => any;
776
+ export declare const ListJobsResultFilterSensitiveLog: (
777
+ obj: ListJobsResult
778
+ ) => any;
779
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
780
+ obj: ListTagsForResourceRequest
781
+ ) => any;
782
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
783
+ obj: ListTagsForResourceResponse
784
+ ) => any;
785
+ export declare const ListWebhooksRequestFilterSensitiveLog: (
786
+ obj: ListWebhooksRequest
787
+ ) => any;
788
+ export declare const ListWebhooksResultFilterSensitiveLog: (
789
+ obj: ListWebhooksResult
790
+ ) => any;
791
+ export declare const StartDeploymentRequestFilterSensitiveLog: (
792
+ obj: StartDeploymentRequest
793
+ ) => any;
794
+ export declare const StartDeploymentResultFilterSensitiveLog: (
795
+ obj: StartDeploymentResult
796
+ ) => any;
797
+ export declare const StartJobRequestFilterSensitiveLog: (
798
+ obj: StartJobRequest
799
+ ) => any;
800
+ export declare const StartJobResultFilterSensitiveLog: (
801
+ obj: StartJobResult
802
+ ) => any;
803
+ export declare const StopJobRequestFilterSensitiveLog: (
804
+ obj: StopJobRequest
805
+ ) => any;
806
+ export declare const StopJobResultFilterSensitiveLog: (
807
+ obj: StopJobResult
808
+ ) => any;
809
+ export declare const TagResourceRequestFilterSensitiveLog: (
810
+ obj: TagResourceRequest
811
+ ) => any;
812
+ export declare const TagResourceResponseFilterSensitiveLog: (
813
+ obj: TagResourceResponse
814
+ ) => any;
815
+ export declare const UntagResourceRequestFilterSensitiveLog: (
816
+ obj: UntagResourceRequest
817
+ ) => any;
818
+ export declare const UntagResourceResponseFilterSensitiveLog: (
819
+ obj: UntagResourceResponse
820
+ ) => any;
821
+ export declare const UpdateAppRequestFilterSensitiveLog: (
822
+ obj: UpdateAppRequest
823
+ ) => any;
824
+ export declare const UpdateAppResultFilterSensitiveLog: (
825
+ obj: UpdateAppResult
826
+ ) => any;
827
+ export declare const UpdateBranchRequestFilterSensitiveLog: (
828
+ obj: UpdateBranchRequest
829
+ ) => any;
830
+ export declare const UpdateBranchResultFilterSensitiveLog: (
831
+ obj: UpdateBranchResult
832
+ ) => any;
833
+ export declare const UpdateDomainAssociationRequestFilterSensitiveLog: (
834
+ obj: UpdateDomainAssociationRequest
835
+ ) => any;
836
+ export declare const UpdateDomainAssociationResultFilterSensitiveLog: (
837
+ obj: UpdateDomainAssociationResult
838
+ ) => any;
839
+ export declare const UpdateWebhookRequestFilterSensitiveLog: (
840
+ obj: UpdateWebhookRequest
841
+ ) => any;
842
+ export declare const UpdateWebhookResultFilterSensitiveLog: (
843
+ obj: UpdateWebhookResult
844
+ ) => any;