@aws-sdk/client-migration-hub-refactor-spaces 3.169.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 (46) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/MigrationHubRefactorSpaces.d.ts +436 -125
  3. package/dist-types/ts3.4/MigrationHubRefactorSpacesClient.d.ts +274 -97
  4. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/GetRouteCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListEnvironmentVpcsCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/ListRoutesCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateRouteCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/index.d.ts +24 -24
  29. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  30. package/dist-types/ts3.4/index.d.ts +6 -6
  31. package/dist-types/ts3.4/models/MigrationHubRefactorSpacesServiceException.d.ts +8 -6
  32. package/dist-types/ts3.4/models/index.d.ts +1 -1
  33. package/dist-types/ts3.4/models/models_0.d.ts +1201 -1124
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  35. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListEnvironmentVpcsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListRoutesPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  46. package/package.json +34 -34
@@ -1,1124 +1,1201 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { MigrationHubRefactorSpacesServiceException as __BaseException } from "./MigrationHubRefactorSpacesServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message: string | undefined;
8
-
9
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
- }
11
- export declare enum ApiGatewayEndpointType {
12
- PRIVATE = "PRIVATE",
13
- REGIONAL = "REGIONAL"
14
- }
15
-
16
- export interface ApiGatewayProxyConfig {
17
-
18
- ProxyUrl?: string;
19
-
20
- ApiGatewayId?: string;
21
-
22
- VpcLinkId?: string;
23
-
24
- NlbArn?: string;
25
-
26
- NlbName?: string;
27
-
28
- EndpointType?: ApiGatewayEndpointType | string;
29
-
30
- StageName?: string;
31
- }
32
-
33
- export interface ApiGatewayProxyInput {
34
-
35
- EndpointType?: ApiGatewayEndpointType | string;
36
-
37
- StageName?: string;
38
- }
39
-
40
- export interface ApiGatewayProxySummary {
41
-
42
- ProxyUrl?: string;
43
-
44
- ApiGatewayId?: string;
45
-
46
- VpcLinkId?: string;
47
-
48
- NlbArn?: string;
49
-
50
- NlbName?: string;
51
-
52
- EndpointType?: ApiGatewayEndpointType | string;
53
-
54
- StageName?: string;
55
- }
56
- export declare enum ApplicationState {
57
- ACTIVE = "ACTIVE",
58
- CREATING = "CREATING",
59
- DELETING = "DELETING",
60
- FAILED = "FAILED",
61
- UPDATING = "UPDATING"
62
- }
63
- export declare enum ErrorCode {
64
- INVALID_RESOURCE_STATE = "INVALID_RESOURCE_STATE",
65
- NOT_AUTHORIZED = "NOT_AUTHORIZED",
66
- REQUEST_LIMIT_EXCEEDED = "REQUEST_LIMIT_EXCEEDED",
67
- RESOURCE_CREATION_FAILURE = "RESOURCE_CREATION_FAILURE",
68
- RESOURCE_DELETION_FAILURE = "RESOURCE_DELETION_FAILURE",
69
- RESOURCE_IN_USE = "RESOURCE_IN_USE",
70
- RESOURCE_LIMIT_EXCEEDED = "RESOURCE_LIMIT_EXCEEDED",
71
- RESOURCE_NOT_FOUND = "RESOURCE_NOT_FOUND",
72
- RESOURCE_RETRIEVAL_FAILURE = "RESOURCE_RETRIEVAL_FAILURE",
73
- RESOURCE_UPDATE_FAILURE = "RESOURCE_UPDATE_FAILURE",
74
- SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE = "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE",
75
- STATE_TRANSITION_FAILURE = "STATE_TRANSITION_FAILURE"
76
- }
77
- export declare enum ErrorResourceType {
78
- API_GATEWAY = "API_GATEWAY",
79
- APPLICATION = "APPLICATION",
80
- ENVIRONMENT = "ENVIRONMENT",
81
- IAM_ROLE = "IAM_ROLE",
82
- LAMBDA = "LAMBDA",
83
- LOAD_BALANCER_LISTENER = "LOAD_BALANCER_LISTENER",
84
- NLB = "NLB",
85
- RESOURCE_SHARE = "RESOURCE_SHARE",
86
- ROUTE = "ROUTE",
87
- ROUTE_TABLE = "ROUTE_TABLE",
88
- SECURITY_GROUP = "SECURITY_GROUP",
89
- SERVICE = "SERVICE",
90
- SUBNET = "SUBNET",
91
- TARGET_GROUP = "TARGET_GROUP",
92
- TRANSIT_GATEWAY = "TRANSIT_GATEWAY",
93
- TRANSIT_GATEWAY_ATTACHMENT = "TRANSIT_GATEWAY_ATTACHMENT",
94
- VPC = "VPC",
95
- VPC_ENDPOINT_SERVICE_CONFIGURATION = "VPC_ENDPOINT_SERVICE_CONFIGURATION",
96
- VPC_LINK = "VPC_LINK"
97
- }
98
-
99
- export interface ErrorResponse {
100
-
101
- Code?: ErrorCode | string;
102
-
103
- Message?: string;
104
-
105
- AccountId?: string;
106
-
107
- ResourceIdentifier?: string;
108
-
109
- ResourceType?: ErrorResourceType | string;
110
-
111
- AdditionalDetails?: Record<string, string>;
112
- }
113
- export declare enum ProxyType {
114
- API_GATEWAY = "API_GATEWAY"
115
- }
116
-
117
- export interface ApplicationSummary {
118
-
119
- Name?: string;
120
-
121
- Arn?: string;
122
-
123
- OwnerAccountId?: string;
124
-
125
- CreatedByAccountId?: string;
126
-
127
- ApplicationId?: string;
128
-
129
- EnvironmentId?: string;
130
-
131
- VpcId?: string;
132
-
133
- ProxyType?: ProxyType | string;
134
-
135
- ApiGatewayProxy?: ApiGatewayProxySummary;
136
-
137
- State?: ApplicationState | string;
138
-
139
- Tags?: Record<string, string>;
140
-
141
- Error?: ErrorResponse;
142
-
143
- LastUpdatedTime?: Date;
144
-
145
- CreatedTime?: Date;
146
- }
147
-
148
- export declare class ConflictException extends __BaseException {
149
- readonly name: "ConflictException";
150
- readonly $fault: "client";
151
- Message: string | undefined;
152
-
153
- ResourceId: string | undefined;
154
-
155
- ResourceType: string | undefined;
156
-
157
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
158
- }
159
- export interface CreateApplicationRequest {
160
-
161
- Name: string | undefined;
162
-
163
- EnvironmentIdentifier: string | undefined;
164
-
165
- VpcId: string | undefined;
166
-
167
- ProxyType: ProxyType | string | undefined;
168
-
169
- ApiGatewayProxy?: ApiGatewayProxyInput;
170
-
171
- Tags?: Record<string, string>;
172
-
173
- ClientToken?: string;
174
- }
175
- export interface CreateApplicationResponse {
176
-
177
- Name?: string;
178
-
179
- Arn?: string;
180
-
181
- OwnerAccountId?: string;
182
-
183
- CreatedByAccountId?: string;
184
-
185
- ApplicationId?: string;
186
-
187
- EnvironmentId?: string;
188
-
189
- VpcId?: string;
190
-
191
- ProxyType?: ProxyType | string;
192
-
193
- ApiGatewayProxy?: ApiGatewayProxyInput;
194
-
195
- State?: ApplicationState | string;
196
-
197
- Tags?: Record<string, string>;
198
-
199
- LastUpdatedTime?: Date;
200
-
201
- CreatedTime?: Date;
202
- }
203
-
204
- export declare class InternalServerException extends __BaseException {
205
- readonly name: "InternalServerException";
206
- readonly $fault: "server";
207
- Message: string | undefined;
208
-
209
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
210
- }
211
-
212
- export declare class ResourceNotFoundException extends __BaseException {
213
- readonly name: "ResourceNotFoundException";
214
- readonly $fault: "client";
215
- Message: string | undefined;
216
-
217
- ResourceId: string | undefined;
218
-
219
- ResourceType: string | undefined;
220
-
221
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
222
- }
223
-
224
- export declare class ServiceQuotaExceededException extends __BaseException {
225
- readonly name: "ServiceQuotaExceededException";
226
- readonly $fault: "client";
227
- Message: string | undefined;
228
-
229
- ResourceId: string | undefined;
230
-
231
- ResourceType: string | undefined;
232
-
233
- QuotaCode?: string;
234
-
235
- ServiceCode: string | undefined;
236
-
237
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
238
- }
239
-
240
- export declare class ThrottlingException extends __BaseException {
241
- readonly name: "ThrottlingException";
242
- readonly $fault: "client";
243
- Message: string | undefined;
244
-
245
- QuotaCode?: string;
246
-
247
- ServiceCode?: string;
248
-
249
- RetryAfterSeconds?: number;
250
-
251
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
252
- }
253
-
254
- export declare class ValidationException extends __BaseException {
255
- readonly name: "ValidationException";
256
- readonly $fault: "client";
257
- Message: string | undefined;
258
-
259
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
260
- }
261
- export declare enum NetworkFabricType {
262
- TRANSIT_GATEWAY = "TRANSIT_GATEWAY"
263
- }
264
- export interface CreateEnvironmentRequest {
265
-
266
- Name: string | undefined;
267
-
268
- Description?: string;
269
-
270
- NetworkFabricType: NetworkFabricType | string | undefined;
271
-
272
- Tags?: Record<string, string>;
273
-
274
- ClientToken?: string;
275
- }
276
- export declare enum EnvironmentState {
277
- ACTIVE = "ACTIVE",
278
- CREATING = "CREATING",
279
- DELETING = "DELETING",
280
- FAILED = "FAILED"
281
- }
282
- export interface CreateEnvironmentResponse {
283
-
284
- Name?: string;
285
-
286
- Arn?: string;
287
-
288
- Description?: string;
289
-
290
- EnvironmentId?: string;
291
-
292
- NetworkFabricType?: NetworkFabricType | string;
293
-
294
- OwnerAccountId?: string;
295
-
296
- State?: EnvironmentState | string;
297
-
298
- Tags?: Record<string, string>;
299
-
300
- LastUpdatedTime?: Date;
301
-
302
- CreatedTime?: Date;
303
- }
304
- export declare enum RouteActivationState {
305
- ACTIVE = "ACTIVE",
306
- INACTIVE = "INACTIVE"
307
- }
308
-
309
- export interface DefaultRouteInput {
310
-
311
- ActivationState?: RouteActivationState | string;
312
- }
313
- export declare enum RouteType {
314
- DEFAULT = "DEFAULT",
315
- URI_PATH = "URI_PATH"
316
- }
317
- export declare enum HttpMethod {
318
- DELETE = "DELETE",
319
- GET = "GET",
320
- HEAD = "HEAD",
321
- OPTIONS = "OPTIONS",
322
- PATCH = "PATCH",
323
- POST = "POST",
324
- PUT = "PUT"
325
- }
326
-
327
- export interface UriPathRouteInput {
328
-
329
- SourcePath: string | undefined;
330
-
331
- ActivationState: RouteActivationState | string | undefined;
332
-
333
- Methods?: (HttpMethod | string)[];
334
-
335
- IncludeChildPaths?: boolean;
336
- }
337
- export interface CreateRouteRequest {
338
-
339
- EnvironmentIdentifier: string | undefined;
340
-
341
- ApplicationIdentifier: string | undefined;
342
-
343
- ServiceIdentifier: string | undefined;
344
-
345
- RouteType: RouteType | string | undefined;
346
-
347
- DefaultRoute?: DefaultRouteInput;
348
-
349
- UriPathRoute?: UriPathRouteInput;
350
-
351
- Tags?: Record<string, string>;
352
-
353
- ClientToken?: string;
354
- }
355
- export declare enum RouteState {
356
- ACTIVE = "ACTIVE",
357
- CREATING = "CREATING",
358
- DELETING = "DELETING",
359
- FAILED = "FAILED",
360
- INACTIVE = "INACTIVE",
361
- UPDATING = "UPDATING"
362
- }
363
- export interface CreateRouteResponse {
364
-
365
- RouteId?: string;
366
-
367
- Arn?: string;
368
-
369
- OwnerAccountId?: string;
370
-
371
- CreatedByAccountId?: string;
372
-
373
- RouteType?: RouteType | string;
374
-
375
- ServiceId?: string;
376
-
377
- ApplicationId?: string;
378
-
379
- UriPathRoute?: UriPathRouteInput;
380
-
381
- State?: RouteState | string;
382
-
383
- Tags?: Record<string, string>;
384
-
385
- LastUpdatedTime?: Date;
386
-
387
- CreatedTime?: Date;
388
- }
389
- export declare enum ServiceEndpointType {
390
- LAMBDA = "LAMBDA",
391
- URL = "URL"
392
- }
393
-
394
- export interface LambdaEndpointInput {
395
-
396
- Arn: string | undefined;
397
- }
398
-
399
- export interface UrlEndpointInput {
400
-
401
- Url: string | undefined;
402
-
403
- HealthUrl?: string;
404
- }
405
- export interface CreateServiceRequest {
406
-
407
- Name: string | undefined;
408
-
409
- Description?: string;
410
-
411
- EnvironmentIdentifier: string | undefined;
412
-
413
- ApplicationIdentifier: string | undefined;
414
-
415
- VpcId?: string;
416
-
417
- EndpointType: ServiceEndpointType | string | undefined;
418
-
419
- UrlEndpoint?: UrlEndpointInput;
420
-
421
- LambdaEndpoint?: LambdaEndpointInput;
422
-
423
- Tags?: Record<string, string>;
424
-
425
- ClientToken?: string;
426
- }
427
- export declare enum ServiceState {
428
- ACTIVE = "ACTIVE",
429
- CREATING = "CREATING",
430
- DELETING = "DELETING",
431
- FAILED = "FAILED"
432
- }
433
- export interface CreateServiceResponse {
434
-
435
- ServiceId?: string;
436
-
437
- Name?: string;
438
-
439
- Arn?: string;
440
-
441
- OwnerAccountId?: string;
442
-
443
- CreatedByAccountId?: string;
444
-
445
- Description?: string;
446
-
447
- EnvironmentId?: string;
448
-
449
- ApplicationId?: string;
450
-
451
- VpcId?: string;
452
-
453
- EndpointType?: ServiceEndpointType | string;
454
-
455
- UrlEndpoint?: UrlEndpointInput;
456
-
457
- LambdaEndpoint?: LambdaEndpointInput;
458
-
459
- State?: ServiceState | string;
460
-
461
- Tags?: Record<string, string>;
462
-
463
- LastUpdatedTime?: Date;
464
-
465
- CreatedTime?: Date;
466
- }
467
- export interface DeleteApplicationRequest {
468
-
469
- EnvironmentIdentifier: string | undefined;
470
-
471
- ApplicationIdentifier: string | undefined;
472
- }
473
- export interface DeleteApplicationResponse {
474
-
475
- Name?: string;
476
-
477
- Arn?: string;
478
-
479
- ApplicationId?: string;
480
-
481
- EnvironmentId?: string;
482
-
483
- State?: ApplicationState | string;
484
-
485
- LastUpdatedTime?: Date;
486
- }
487
- export interface DeleteEnvironmentRequest {
488
-
489
- EnvironmentIdentifier: string | undefined;
490
- }
491
- export interface DeleteEnvironmentResponse {
492
-
493
- Name?: string;
494
-
495
- Arn?: string;
496
-
497
- EnvironmentId?: string;
498
-
499
- State?: EnvironmentState | string;
500
-
501
- LastUpdatedTime?: Date;
502
- }
503
- export interface DeleteResourcePolicyRequest {
504
-
505
- Identifier: string | undefined;
506
- }
507
- export interface DeleteResourcePolicyResponse {
508
- }
509
- export interface DeleteRouteRequest {
510
-
511
- EnvironmentIdentifier: string | undefined;
512
-
513
- ApplicationIdentifier: string | undefined;
514
-
515
- RouteIdentifier: string | undefined;
516
- }
517
- export interface DeleteRouteResponse {
518
-
519
- RouteId?: string;
520
-
521
- Arn?: string;
522
-
523
- ServiceId?: string;
524
-
525
- ApplicationId?: string;
526
-
527
- State?: RouteState | string;
528
-
529
- LastUpdatedTime?: Date;
530
- }
531
- export interface DeleteServiceRequest {
532
-
533
- EnvironmentIdentifier: string | undefined;
534
-
535
- ApplicationIdentifier: string | undefined;
536
-
537
- ServiceIdentifier: string | undefined;
538
- }
539
- export interface DeleteServiceResponse {
540
-
541
- ServiceId?: string;
542
-
543
- Name?: string;
544
-
545
- Arn?: string;
546
-
547
- EnvironmentId?: string;
548
-
549
- ApplicationId?: string;
550
-
551
- State?: ServiceState | string;
552
-
553
- LastUpdatedTime?: Date;
554
- }
555
-
556
- export interface EnvironmentSummary {
557
-
558
- Name?: string;
559
-
560
- Arn?: string;
561
-
562
- Description?: string;
563
-
564
- EnvironmentId?: string;
565
-
566
- NetworkFabricType?: NetworkFabricType | string;
567
-
568
- OwnerAccountId?: string;
569
-
570
- TransitGatewayId?: string;
571
-
572
- State?: EnvironmentState | string;
573
-
574
- Tags?: Record<string, string>;
575
-
576
- Error?: ErrorResponse;
577
-
578
- LastUpdatedTime?: Date;
579
-
580
- CreatedTime?: Date;
581
- }
582
-
583
- export interface EnvironmentVpc {
584
-
585
- EnvironmentId?: string;
586
-
587
- VpcId?: string;
588
-
589
- AccountId?: string;
590
-
591
- CidrBlocks?: string[];
592
-
593
- VpcName?: string;
594
-
595
- LastUpdatedTime?: Date;
596
-
597
- CreatedTime?: Date;
598
- }
599
- export interface GetApplicationRequest {
600
-
601
- EnvironmentIdentifier: string | undefined;
602
-
603
- ApplicationIdentifier: string | undefined;
604
- }
605
- export interface GetApplicationResponse {
606
-
607
- Name?: string;
608
-
609
- Arn?: string;
610
-
611
- OwnerAccountId?: string;
612
-
613
- CreatedByAccountId?: string;
614
-
615
- ApplicationId?: string;
616
-
617
- EnvironmentId?: string;
618
-
619
- VpcId?: string;
620
-
621
- ProxyType?: ProxyType | string;
622
-
623
- ApiGatewayProxy?: ApiGatewayProxyConfig;
624
-
625
- State?: ApplicationState | string;
626
-
627
- Tags?: Record<string, string>;
628
-
629
- Error?: ErrorResponse;
630
-
631
- LastUpdatedTime?: Date;
632
-
633
- CreatedTime?: Date;
634
- }
635
- export interface GetEnvironmentRequest {
636
-
637
- EnvironmentIdentifier: string | undefined;
638
- }
639
- export interface GetEnvironmentResponse {
640
-
641
- Name?: string;
642
-
643
- Arn?: string;
644
-
645
- Description?: string;
646
-
647
- EnvironmentId?: string;
648
-
649
- NetworkFabricType?: NetworkFabricType | string;
650
-
651
- OwnerAccountId?: string;
652
-
653
- TransitGatewayId?: string;
654
-
655
- State?: EnvironmentState | string;
656
-
657
- Tags?: Record<string, string>;
658
-
659
- Error?: ErrorResponse;
660
-
661
- LastUpdatedTime?: Date;
662
-
663
- CreatedTime?: Date;
664
- }
665
- export interface GetResourcePolicyRequest {
666
-
667
- Identifier: string | undefined;
668
- }
669
- export interface GetResourcePolicyResponse {
670
-
671
- Policy?: string;
672
- }
673
- export interface GetRouteRequest {
674
-
675
- EnvironmentIdentifier: string | undefined;
676
-
677
- ApplicationIdentifier: string | undefined;
678
-
679
- RouteIdentifier: string | undefined;
680
- }
681
- export interface GetRouteResponse {
682
-
683
- RouteId?: string;
684
-
685
- Arn?: string;
686
-
687
- OwnerAccountId?: string;
688
-
689
- CreatedByAccountId?: string;
690
-
691
- RouteType?: RouteType | string;
692
-
693
- ServiceId?: string;
694
-
695
- ApplicationId?: string;
696
-
697
- EnvironmentId?: string;
698
-
699
- SourcePath?: string;
700
-
701
- Methods?: (HttpMethod | string)[];
702
-
703
- IncludeChildPaths?: boolean;
704
-
705
- PathResourceToId?: Record<string, string>;
706
-
707
- State?: RouteState | string;
708
-
709
- Tags?: Record<string, string>;
710
-
711
- Error?: ErrorResponse;
712
-
713
- LastUpdatedTime?: Date;
714
-
715
- CreatedTime?: Date;
716
- }
717
- export interface GetServiceRequest {
718
-
719
- EnvironmentIdentifier: string | undefined;
720
-
721
- ApplicationIdentifier: string | undefined;
722
-
723
- ServiceIdentifier: string | undefined;
724
- }
725
-
726
- export interface LambdaEndpointConfig {
727
-
728
- Arn?: string;
729
- }
730
-
731
- export interface UrlEndpointConfig {
732
-
733
- Url?: string;
734
-
735
- HealthUrl?: string;
736
- }
737
- export interface GetServiceResponse {
738
-
739
- ServiceId?: string;
740
-
741
- Name?: string;
742
-
743
- Arn?: string;
744
-
745
- OwnerAccountId?: string;
746
-
747
- CreatedByAccountId?: string;
748
-
749
- Description?: string;
750
-
751
- EnvironmentId?: string;
752
-
753
- ApplicationId?: string;
754
-
755
- VpcId?: string;
756
-
757
- EndpointType?: ServiceEndpointType | string;
758
-
759
- UrlEndpoint?: UrlEndpointConfig;
760
-
761
- LambdaEndpoint?: LambdaEndpointConfig;
762
-
763
- State?: ServiceState | string;
764
-
765
- Tags?: Record<string, string>;
766
-
767
- Error?: ErrorResponse;
768
-
769
- LastUpdatedTime?: Date;
770
-
771
- CreatedTime?: Date;
772
- }
773
-
774
- export declare class InvalidResourcePolicyException extends __BaseException {
775
- readonly name: "InvalidResourcePolicyException";
776
- readonly $fault: "client";
777
- Message: string | undefined;
778
-
779
- constructor(opts: __ExceptionOptionType<InvalidResourcePolicyException, __BaseException>);
780
- }
781
-
782
- export interface LambdaEndpointSummary {
783
-
784
- Arn?: string;
785
- }
786
- export interface ListApplicationsRequest {
787
-
788
- EnvironmentIdentifier: string | undefined;
789
-
790
- NextToken?: string;
791
-
792
- MaxResults?: number;
793
- }
794
- export interface ListApplicationsResponse {
795
-
796
- ApplicationSummaryList?: ApplicationSummary[];
797
-
798
- NextToken?: string;
799
- }
800
- export interface ListEnvironmentsRequest {
801
-
802
- NextToken?: string;
803
-
804
- MaxResults?: number;
805
- }
806
- export interface ListEnvironmentsResponse {
807
-
808
- EnvironmentSummaryList?: EnvironmentSummary[];
809
-
810
- NextToken?: string;
811
- }
812
- export interface ListEnvironmentVpcsRequest {
813
-
814
- EnvironmentIdentifier: string | undefined;
815
-
816
- NextToken?: string;
817
-
818
- MaxResults?: number;
819
- }
820
- export interface ListEnvironmentVpcsResponse {
821
-
822
- EnvironmentVpcList?: EnvironmentVpc[];
823
-
824
- NextToken?: string;
825
- }
826
- export interface ListRoutesRequest {
827
-
828
- EnvironmentIdentifier: string | undefined;
829
-
830
- ApplicationIdentifier: string | undefined;
831
-
832
- NextToken?: string;
833
-
834
- MaxResults?: number;
835
- }
836
-
837
- export interface RouteSummary {
838
-
839
- RouteId?: string;
840
-
841
- Arn?: string;
842
-
843
- OwnerAccountId?: string;
844
-
845
- CreatedByAccountId?: string;
846
-
847
- RouteType?: RouteType | string;
848
-
849
- ServiceId?: string;
850
-
851
- ApplicationId?: string;
852
-
853
- EnvironmentId?: string;
854
-
855
- SourcePath?: string;
856
-
857
- Methods?: (HttpMethod | string)[];
858
-
859
- IncludeChildPaths?: boolean;
860
-
861
- PathResourceToId?: Record<string, string>;
862
-
863
- State?: RouteState | string;
864
-
865
- Tags?: Record<string, string>;
866
-
867
- Error?: ErrorResponse;
868
-
869
- LastUpdatedTime?: Date;
870
-
871
- CreatedTime?: Date;
872
- }
873
- export interface ListRoutesResponse {
874
-
875
- RouteSummaryList?: RouteSummary[];
876
-
877
- NextToken?: string;
878
- }
879
- export interface ListServicesRequest {
880
-
881
- EnvironmentIdentifier: string | undefined;
882
-
883
- ApplicationIdentifier: string | undefined;
884
-
885
- NextToken?: string;
886
-
887
- MaxResults?: number;
888
- }
889
-
890
- export interface UrlEndpointSummary {
891
-
892
- Url?: string;
893
-
894
- HealthUrl?: string;
895
- }
896
-
897
- export interface ServiceSummary {
898
-
899
- ServiceId?: string;
900
-
901
- Name?: string;
902
-
903
- Arn?: string;
904
-
905
- OwnerAccountId?: string;
906
-
907
- CreatedByAccountId?: string;
908
-
909
- Description?: string;
910
-
911
- EnvironmentId?: string;
912
-
913
- ApplicationId?: string;
914
-
915
- VpcId?: string;
916
-
917
- EndpointType?: ServiceEndpointType | string;
918
-
919
- UrlEndpoint?: UrlEndpointSummary;
920
-
921
- LambdaEndpoint?: LambdaEndpointSummary;
922
-
923
- State?: ServiceState | string;
924
-
925
- Tags?: Record<string, string>;
926
-
927
- Error?: ErrorResponse;
928
-
929
- LastUpdatedTime?: Date;
930
-
931
- CreatedTime?: Date;
932
- }
933
- export interface ListServicesResponse {
934
-
935
- ServiceSummaryList?: ServiceSummary[];
936
-
937
- NextToken?: string;
938
- }
939
- export interface ListTagsForResourceRequest {
940
-
941
- ResourceArn: string | undefined;
942
- }
943
- export interface ListTagsForResourceResponse {
944
-
945
- Tags?: Record<string, string>;
946
- }
947
- export interface PutResourcePolicyRequest {
948
-
949
- ResourceArn: string | undefined;
950
-
951
- Policy: string | undefined;
952
- }
953
- export interface PutResourcePolicyResponse {
954
- }
955
- export interface TagResourceRequest {
956
-
957
- ResourceArn: string | undefined;
958
-
959
- Tags: Record<string, string> | undefined;
960
- }
961
- export interface TagResourceResponse {
962
- }
963
- export interface UntagResourceRequest {
964
-
965
- ResourceArn: string | undefined;
966
-
967
- TagKeys: string[] | undefined;
968
- }
969
- export interface UntagResourceResponse {
970
- }
971
- export interface UpdateRouteRequest {
972
-
973
- EnvironmentIdentifier: string | undefined;
974
-
975
- ApplicationIdentifier: string | undefined;
976
-
977
- RouteIdentifier: string | undefined;
978
-
979
- ActivationState: RouteActivationState | string | undefined;
980
- }
981
- export interface UpdateRouteResponse {
982
-
983
- RouteId?: string;
984
-
985
- Arn?: string;
986
-
987
- ServiceId?: string;
988
-
989
- ApplicationId?: string;
990
-
991
- State?: RouteState | string;
992
-
993
- LastUpdatedTime?: Date;
994
- }
995
-
996
- export declare const ApiGatewayProxyConfigFilterSensitiveLog: (obj: ApiGatewayProxyConfig) => any;
997
-
998
- export declare const ApiGatewayProxyInputFilterSensitiveLog: (obj: ApiGatewayProxyInput) => any;
999
-
1000
- export declare const ApiGatewayProxySummaryFilterSensitiveLog: (obj: ApiGatewayProxySummary) => any;
1001
-
1002
- export declare const ErrorResponseFilterSensitiveLog: (obj: ErrorResponse) => any;
1003
-
1004
- export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
1005
-
1006
- export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
1007
-
1008
- export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
1009
-
1010
- export declare const CreateEnvironmentRequestFilterSensitiveLog: (obj: CreateEnvironmentRequest) => any;
1011
-
1012
- export declare const CreateEnvironmentResponseFilterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
1013
-
1014
- export declare const DefaultRouteInputFilterSensitiveLog: (obj: DefaultRouteInput) => any;
1015
-
1016
- export declare const UriPathRouteInputFilterSensitiveLog: (obj: UriPathRouteInput) => any;
1017
-
1018
- export declare const CreateRouteRequestFilterSensitiveLog: (obj: CreateRouteRequest) => any;
1019
-
1020
- export declare const CreateRouteResponseFilterSensitiveLog: (obj: CreateRouteResponse) => any;
1021
-
1022
- export declare const LambdaEndpointInputFilterSensitiveLog: (obj: LambdaEndpointInput) => any;
1023
-
1024
- export declare const UrlEndpointInputFilterSensitiveLog: (obj: UrlEndpointInput) => any;
1025
-
1026
- export declare const CreateServiceRequestFilterSensitiveLog: (obj: CreateServiceRequest) => any;
1027
-
1028
- export declare const CreateServiceResponseFilterSensitiveLog: (obj: CreateServiceResponse) => any;
1029
-
1030
- export declare const DeleteApplicationRequestFilterSensitiveLog: (obj: DeleteApplicationRequest) => any;
1031
-
1032
- export declare const DeleteApplicationResponseFilterSensitiveLog: (obj: DeleteApplicationResponse) => any;
1033
-
1034
- export declare const DeleteEnvironmentRequestFilterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
1035
-
1036
- export declare const DeleteEnvironmentResponseFilterSensitiveLog: (obj: DeleteEnvironmentResponse) => any;
1037
-
1038
- export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (obj: DeleteResourcePolicyRequest) => any;
1039
-
1040
- export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (obj: DeleteResourcePolicyResponse) => any;
1041
-
1042
- export declare const DeleteRouteRequestFilterSensitiveLog: (obj: DeleteRouteRequest) => any;
1043
-
1044
- export declare const DeleteRouteResponseFilterSensitiveLog: (obj: DeleteRouteResponse) => any;
1045
-
1046
- export declare const DeleteServiceRequestFilterSensitiveLog: (obj: DeleteServiceRequest) => any;
1047
-
1048
- export declare const DeleteServiceResponseFilterSensitiveLog: (obj: DeleteServiceResponse) => any;
1049
-
1050
- export declare const EnvironmentSummaryFilterSensitiveLog: (obj: EnvironmentSummary) => any;
1051
-
1052
- export declare const EnvironmentVpcFilterSensitiveLog: (obj: EnvironmentVpc) => any;
1053
-
1054
- export declare const GetApplicationRequestFilterSensitiveLog: (obj: GetApplicationRequest) => any;
1055
-
1056
- export declare const GetApplicationResponseFilterSensitiveLog: (obj: GetApplicationResponse) => any;
1057
-
1058
- export declare const GetEnvironmentRequestFilterSensitiveLog: (obj: GetEnvironmentRequest) => any;
1059
-
1060
- export declare const GetEnvironmentResponseFilterSensitiveLog: (obj: GetEnvironmentResponse) => any;
1061
-
1062
- export declare const GetResourcePolicyRequestFilterSensitiveLog: (obj: GetResourcePolicyRequest) => any;
1063
-
1064
- export declare const GetResourcePolicyResponseFilterSensitiveLog: (obj: GetResourcePolicyResponse) => any;
1065
-
1066
- export declare const GetRouteRequestFilterSensitiveLog: (obj: GetRouteRequest) => any;
1067
-
1068
- export declare const GetRouteResponseFilterSensitiveLog: (obj: GetRouteResponse) => any;
1069
-
1070
- export declare const GetServiceRequestFilterSensitiveLog: (obj: GetServiceRequest) => any;
1071
-
1072
- export declare const LambdaEndpointConfigFilterSensitiveLog: (obj: LambdaEndpointConfig) => any;
1073
-
1074
- export declare const UrlEndpointConfigFilterSensitiveLog: (obj: UrlEndpointConfig) => any;
1075
-
1076
- export declare const GetServiceResponseFilterSensitiveLog: (obj: GetServiceResponse) => any;
1077
-
1078
- export declare const LambdaEndpointSummaryFilterSensitiveLog: (obj: LambdaEndpointSummary) => any;
1079
-
1080
- export declare const ListApplicationsRequestFilterSensitiveLog: (obj: ListApplicationsRequest) => any;
1081
-
1082
- export declare const ListApplicationsResponseFilterSensitiveLog: (obj: ListApplicationsResponse) => any;
1083
-
1084
- export declare const ListEnvironmentsRequestFilterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
1085
-
1086
- export declare const ListEnvironmentsResponseFilterSensitiveLog: (obj: ListEnvironmentsResponse) => any;
1087
-
1088
- export declare const ListEnvironmentVpcsRequestFilterSensitiveLog: (obj: ListEnvironmentVpcsRequest) => any;
1089
-
1090
- export declare const ListEnvironmentVpcsResponseFilterSensitiveLog: (obj: ListEnvironmentVpcsResponse) => any;
1091
-
1092
- export declare const ListRoutesRequestFilterSensitiveLog: (obj: ListRoutesRequest) => any;
1093
-
1094
- export declare const RouteSummaryFilterSensitiveLog: (obj: RouteSummary) => any;
1095
-
1096
- export declare const ListRoutesResponseFilterSensitiveLog: (obj: ListRoutesResponse) => any;
1097
-
1098
- export declare const ListServicesRequestFilterSensitiveLog: (obj: ListServicesRequest) => any;
1099
-
1100
- export declare const UrlEndpointSummaryFilterSensitiveLog: (obj: UrlEndpointSummary) => any;
1101
-
1102
- export declare const ServiceSummaryFilterSensitiveLog: (obj: ServiceSummary) => any;
1103
-
1104
- export declare const ListServicesResponseFilterSensitiveLog: (obj: ListServicesResponse) => any;
1105
-
1106
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1107
-
1108
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1109
-
1110
- export declare const PutResourcePolicyRequestFilterSensitiveLog: (obj: PutResourcePolicyRequest) => any;
1111
-
1112
- export declare const PutResourcePolicyResponseFilterSensitiveLog: (obj: PutResourcePolicyResponse) => any;
1113
-
1114
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1115
-
1116
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1117
-
1118
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1119
-
1120
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1121
-
1122
- export declare const UpdateRouteRequestFilterSensitiveLog: (obj: UpdateRouteRequest) => any;
1123
-
1124
- export declare const UpdateRouteResponseFilterSensitiveLog: (obj: UpdateRouteResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { MigrationHubRefactorSpacesServiceException as __BaseException } from "./MigrationHubRefactorSpacesServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message: string | undefined;
8
+
9
+ constructor(
10
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
+ );
12
+ }
13
+ export declare enum ApiGatewayEndpointType {
14
+ PRIVATE = "PRIVATE",
15
+ REGIONAL = "REGIONAL",
16
+ }
17
+
18
+ export interface ApiGatewayProxyConfig {
19
+ ProxyUrl?: string;
20
+
21
+ ApiGatewayId?: string;
22
+
23
+ VpcLinkId?: string;
24
+
25
+ NlbArn?: string;
26
+
27
+ NlbName?: string;
28
+
29
+ EndpointType?: ApiGatewayEndpointType | string;
30
+
31
+ StageName?: string;
32
+ }
33
+
34
+ export interface ApiGatewayProxyInput {
35
+ EndpointType?: ApiGatewayEndpointType | string;
36
+
37
+ StageName?: string;
38
+ }
39
+
40
+ export interface ApiGatewayProxySummary {
41
+ ProxyUrl?: string;
42
+
43
+ ApiGatewayId?: string;
44
+
45
+ VpcLinkId?: string;
46
+
47
+ NlbArn?: string;
48
+
49
+ NlbName?: string;
50
+
51
+ EndpointType?: ApiGatewayEndpointType | string;
52
+
53
+ StageName?: string;
54
+ }
55
+ export declare enum ApplicationState {
56
+ ACTIVE = "ACTIVE",
57
+ CREATING = "CREATING",
58
+ DELETING = "DELETING",
59
+ FAILED = "FAILED",
60
+ UPDATING = "UPDATING",
61
+ }
62
+ export declare enum ErrorCode {
63
+ INVALID_RESOURCE_STATE = "INVALID_RESOURCE_STATE",
64
+ NOT_AUTHORIZED = "NOT_AUTHORIZED",
65
+ REQUEST_LIMIT_EXCEEDED = "REQUEST_LIMIT_EXCEEDED",
66
+ RESOURCE_CREATION_FAILURE = "RESOURCE_CREATION_FAILURE",
67
+ RESOURCE_DELETION_FAILURE = "RESOURCE_DELETION_FAILURE",
68
+ RESOURCE_IN_USE = "RESOURCE_IN_USE",
69
+ RESOURCE_LIMIT_EXCEEDED = "RESOURCE_LIMIT_EXCEEDED",
70
+ RESOURCE_NOT_FOUND = "RESOURCE_NOT_FOUND",
71
+ RESOURCE_RETRIEVAL_FAILURE = "RESOURCE_RETRIEVAL_FAILURE",
72
+ RESOURCE_UPDATE_FAILURE = "RESOURCE_UPDATE_FAILURE",
73
+ SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE = "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE",
74
+ STATE_TRANSITION_FAILURE = "STATE_TRANSITION_FAILURE",
75
+ }
76
+ export declare enum ErrorResourceType {
77
+ API_GATEWAY = "API_GATEWAY",
78
+ APPLICATION = "APPLICATION",
79
+ ENVIRONMENT = "ENVIRONMENT",
80
+ IAM_ROLE = "IAM_ROLE",
81
+ LAMBDA = "LAMBDA",
82
+ LOAD_BALANCER_LISTENER = "LOAD_BALANCER_LISTENER",
83
+ NLB = "NLB",
84
+ RESOURCE_SHARE = "RESOURCE_SHARE",
85
+ ROUTE = "ROUTE",
86
+ ROUTE_TABLE = "ROUTE_TABLE",
87
+ SECURITY_GROUP = "SECURITY_GROUP",
88
+ SERVICE = "SERVICE",
89
+ SUBNET = "SUBNET",
90
+ TARGET_GROUP = "TARGET_GROUP",
91
+ TRANSIT_GATEWAY = "TRANSIT_GATEWAY",
92
+ TRANSIT_GATEWAY_ATTACHMENT = "TRANSIT_GATEWAY_ATTACHMENT",
93
+ VPC = "VPC",
94
+ VPC_ENDPOINT_SERVICE_CONFIGURATION = "VPC_ENDPOINT_SERVICE_CONFIGURATION",
95
+ VPC_LINK = "VPC_LINK",
96
+ }
97
+
98
+ export interface ErrorResponse {
99
+ Code?: ErrorCode | string;
100
+
101
+ Message?: string;
102
+
103
+ AccountId?: string;
104
+
105
+ ResourceIdentifier?: string;
106
+
107
+ ResourceType?: ErrorResourceType | string;
108
+
109
+ AdditionalDetails?: Record<string, string>;
110
+ }
111
+ export declare enum ProxyType {
112
+ API_GATEWAY = "API_GATEWAY",
113
+ }
114
+
115
+ export interface ApplicationSummary {
116
+ Name?: string;
117
+
118
+ Arn?: string;
119
+
120
+ OwnerAccountId?: string;
121
+
122
+ CreatedByAccountId?: string;
123
+
124
+ ApplicationId?: string;
125
+
126
+ EnvironmentId?: string;
127
+
128
+ VpcId?: string;
129
+
130
+ ProxyType?: ProxyType | string;
131
+
132
+ ApiGatewayProxy?: ApiGatewayProxySummary;
133
+
134
+ State?: ApplicationState | string;
135
+
136
+ Tags?: Record<string, string>;
137
+
138
+ Error?: ErrorResponse;
139
+
140
+ LastUpdatedTime?: Date;
141
+
142
+ CreatedTime?: Date;
143
+ }
144
+
145
+ export declare class ConflictException extends __BaseException {
146
+ readonly name: "ConflictException";
147
+ readonly $fault: "client";
148
+ Message: string | undefined;
149
+
150
+ ResourceId: string | undefined;
151
+
152
+ ResourceType: string | undefined;
153
+
154
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
155
+ }
156
+ export interface CreateApplicationRequest {
157
+ Name: string | undefined;
158
+
159
+ EnvironmentIdentifier: string | undefined;
160
+
161
+ VpcId: string | undefined;
162
+
163
+ ProxyType: ProxyType | string | undefined;
164
+
165
+ ApiGatewayProxy?: ApiGatewayProxyInput;
166
+
167
+ Tags?: Record<string, string>;
168
+
169
+ ClientToken?: string;
170
+ }
171
+ export interface CreateApplicationResponse {
172
+ Name?: string;
173
+
174
+ Arn?: string;
175
+
176
+ OwnerAccountId?: string;
177
+
178
+ CreatedByAccountId?: string;
179
+
180
+ ApplicationId?: string;
181
+
182
+ EnvironmentId?: string;
183
+
184
+ VpcId?: string;
185
+
186
+ ProxyType?: ProxyType | string;
187
+
188
+ ApiGatewayProxy?: ApiGatewayProxyInput;
189
+
190
+ State?: ApplicationState | string;
191
+
192
+ Tags?: Record<string, string>;
193
+
194
+ LastUpdatedTime?: Date;
195
+
196
+ CreatedTime?: Date;
197
+ }
198
+
199
+ export declare class InternalServerException extends __BaseException {
200
+ readonly name: "InternalServerException";
201
+ readonly $fault: "server";
202
+ Message: string | undefined;
203
+
204
+ constructor(
205
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
206
+ );
207
+ }
208
+
209
+ export declare class ResourceNotFoundException extends __BaseException {
210
+ readonly name: "ResourceNotFoundException";
211
+ readonly $fault: "client";
212
+ Message: string | undefined;
213
+
214
+ ResourceId: string | undefined;
215
+
216
+ ResourceType: string | undefined;
217
+
218
+ constructor(
219
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
220
+ );
221
+ }
222
+
223
+ export declare class ServiceQuotaExceededException extends __BaseException {
224
+ readonly name: "ServiceQuotaExceededException";
225
+ readonly $fault: "client";
226
+ Message: string | undefined;
227
+
228
+ ResourceId: string | undefined;
229
+
230
+ ResourceType: string | undefined;
231
+
232
+ QuotaCode?: string;
233
+
234
+ ServiceCode: string | undefined;
235
+
236
+ constructor(
237
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
238
+ );
239
+ }
240
+
241
+ export declare class ThrottlingException extends __BaseException {
242
+ readonly name: "ThrottlingException";
243
+ readonly $fault: "client";
244
+ Message: string | undefined;
245
+
246
+ QuotaCode?: string;
247
+
248
+ ServiceCode?: string;
249
+
250
+ RetryAfterSeconds?: number;
251
+
252
+ constructor(
253
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
254
+ );
255
+ }
256
+
257
+ export declare class ValidationException extends __BaseException {
258
+ readonly name: "ValidationException";
259
+ readonly $fault: "client";
260
+ Message: string | undefined;
261
+
262
+ constructor(
263
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
264
+ );
265
+ }
266
+ export declare enum NetworkFabricType {
267
+ TRANSIT_GATEWAY = "TRANSIT_GATEWAY",
268
+ }
269
+ export interface CreateEnvironmentRequest {
270
+ Name: string | undefined;
271
+
272
+ Description?: string;
273
+
274
+ NetworkFabricType: NetworkFabricType | string | undefined;
275
+
276
+ Tags?: Record<string, string>;
277
+
278
+ ClientToken?: string;
279
+ }
280
+ export declare enum EnvironmentState {
281
+ ACTIVE = "ACTIVE",
282
+ CREATING = "CREATING",
283
+ DELETING = "DELETING",
284
+ FAILED = "FAILED",
285
+ }
286
+ export interface CreateEnvironmentResponse {
287
+ Name?: string;
288
+
289
+ Arn?: string;
290
+
291
+ Description?: string;
292
+
293
+ EnvironmentId?: string;
294
+
295
+ NetworkFabricType?: NetworkFabricType | string;
296
+
297
+ OwnerAccountId?: string;
298
+
299
+ State?: EnvironmentState | string;
300
+
301
+ Tags?: Record<string, string>;
302
+
303
+ LastUpdatedTime?: Date;
304
+
305
+ CreatedTime?: Date;
306
+ }
307
+ export declare enum RouteActivationState {
308
+ ACTIVE = "ACTIVE",
309
+ INACTIVE = "INACTIVE",
310
+ }
311
+
312
+ export interface DefaultRouteInput {
313
+ ActivationState?: RouteActivationState | string;
314
+ }
315
+ export declare enum RouteType {
316
+ DEFAULT = "DEFAULT",
317
+ URI_PATH = "URI_PATH",
318
+ }
319
+ export declare enum HttpMethod {
320
+ DELETE = "DELETE",
321
+ GET = "GET",
322
+ HEAD = "HEAD",
323
+ OPTIONS = "OPTIONS",
324
+ PATCH = "PATCH",
325
+ POST = "POST",
326
+ PUT = "PUT",
327
+ }
328
+
329
+ export interface UriPathRouteInput {
330
+ SourcePath: string | undefined;
331
+
332
+ ActivationState: RouteActivationState | string | undefined;
333
+
334
+ Methods?: (HttpMethod | string)[];
335
+
336
+ IncludeChildPaths?: boolean;
337
+ }
338
+ export interface CreateRouteRequest {
339
+ EnvironmentIdentifier: string | undefined;
340
+
341
+ ApplicationIdentifier: string | undefined;
342
+
343
+ ServiceIdentifier: string | undefined;
344
+
345
+ RouteType: RouteType | string | undefined;
346
+
347
+ DefaultRoute?: DefaultRouteInput;
348
+
349
+ UriPathRoute?: UriPathRouteInput;
350
+
351
+ Tags?: Record<string, string>;
352
+
353
+ ClientToken?: string;
354
+ }
355
+ export declare enum RouteState {
356
+ ACTIVE = "ACTIVE",
357
+ CREATING = "CREATING",
358
+ DELETING = "DELETING",
359
+ FAILED = "FAILED",
360
+ INACTIVE = "INACTIVE",
361
+ UPDATING = "UPDATING",
362
+ }
363
+ export interface CreateRouteResponse {
364
+ RouteId?: string;
365
+
366
+ Arn?: string;
367
+
368
+ OwnerAccountId?: string;
369
+
370
+ CreatedByAccountId?: string;
371
+
372
+ RouteType?: RouteType | string;
373
+
374
+ ServiceId?: string;
375
+
376
+ ApplicationId?: string;
377
+
378
+ UriPathRoute?: UriPathRouteInput;
379
+
380
+ State?: RouteState | string;
381
+
382
+ Tags?: Record<string, string>;
383
+
384
+ LastUpdatedTime?: Date;
385
+
386
+ CreatedTime?: Date;
387
+ }
388
+ export declare enum ServiceEndpointType {
389
+ LAMBDA = "LAMBDA",
390
+ URL = "URL",
391
+ }
392
+
393
+ export interface LambdaEndpointInput {
394
+ Arn: string | undefined;
395
+ }
396
+
397
+ export interface UrlEndpointInput {
398
+ Url: string | undefined;
399
+
400
+ HealthUrl?: string;
401
+ }
402
+ export interface CreateServiceRequest {
403
+ Name: string | undefined;
404
+
405
+ Description?: string;
406
+
407
+ EnvironmentIdentifier: string | undefined;
408
+
409
+ ApplicationIdentifier: string | undefined;
410
+
411
+ VpcId?: string;
412
+
413
+ EndpointType: ServiceEndpointType | string | undefined;
414
+
415
+ UrlEndpoint?: UrlEndpointInput;
416
+
417
+ LambdaEndpoint?: LambdaEndpointInput;
418
+
419
+ Tags?: Record<string, string>;
420
+
421
+ ClientToken?: string;
422
+ }
423
+ export declare enum ServiceState {
424
+ ACTIVE = "ACTIVE",
425
+ CREATING = "CREATING",
426
+ DELETING = "DELETING",
427
+ FAILED = "FAILED",
428
+ }
429
+ export interface CreateServiceResponse {
430
+ ServiceId?: string;
431
+
432
+ Name?: string;
433
+
434
+ Arn?: string;
435
+
436
+ OwnerAccountId?: string;
437
+
438
+ CreatedByAccountId?: string;
439
+
440
+ Description?: string;
441
+
442
+ EnvironmentId?: string;
443
+
444
+ ApplicationId?: string;
445
+
446
+ VpcId?: string;
447
+
448
+ EndpointType?: ServiceEndpointType | string;
449
+
450
+ UrlEndpoint?: UrlEndpointInput;
451
+
452
+ LambdaEndpoint?: LambdaEndpointInput;
453
+
454
+ State?: ServiceState | string;
455
+
456
+ Tags?: Record<string, string>;
457
+
458
+ LastUpdatedTime?: Date;
459
+
460
+ CreatedTime?: Date;
461
+ }
462
+ export interface DeleteApplicationRequest {
463
+ EnvironmentIdentifier: string | undefined;
464
+
465
+ ApplicationIdentifier: string | undefined;
466
+ }
467
+ export interface DeleteApplicationResponse {
468
+ Name?: string;
469
+
470
+ Arn?: string;
471
+
472
+ ApplicationId?: string;
473
+
474
+ EnvironmentId?: string;
475
+
476
+ State?: ApplicationState | string;
477
+
478
+ LastUpdatedTime?: Date;
479
+ }
480
+ export interface DeleteEnvironmentRequest {
481
+ EnvironmentIdentifier: string | undefined;
482
+ }
483
+ export interface DeleteEnvironmentResponse {
484
+ Name?: string;
485
+
486
+ Arn?: string;
487
+
488
+ EnvironmentId?: string;
489
+
490
+ State?: EnvironmentState | string;
491
+
492
+ LastUpdatedTime?: Date;
493
+ }
494
+ export interface DeleteResourcePolicyRequest {
495
+ Identifier: string | undefined;
496
+ }
497
+ export interface DeleteResourcePolicyResponse {}
498
+ export interface DeleteRouteRequest {
499
+ EnvironmentIdentifier: string | undefined;
500
+
501
+ ApplicationIdentifier: string | undefined;
502
+
503
+ RouteIdentifier: string | undefined;
504
+ }
505
+ export interface DeleteRouteResponse {
506
+ RouteId?: string;
507
+
508
+ Arn?: string;
509
+
510
+ ServiceId?: string;
511
+
512
+ ApplicationId?: string;
513
+
514
+ State?: RouteState | string;
515
+
516
+ LastUpdatedTime?: Date;
517
+ }
518
+ export interface DeleteServiceRequest {
519
+ EnvironmentIdentifier: string | undefined;
520
+
521
+ ApplicationIdentifier: string | undefined;
522
+
523
+ ServiceIdentifier: string | undefined;
524
+ }
525
+ export interface DeleteServiceResponse {
526
+ ServiceId?: string;
527
+
528
+ Name?: string;
529
+
530
+ Arn?: string;
531
+
532
+ EnvironmentId?: string;
533
+
534
+ ApplicationId?: string;
535
+
536
+ State?: ServiceState | string;
537
+
538
+ LastUpdatedTime?: Date;
539
+ }
540
+
541
+ export interface EnvironmentSummary {
542
+ Name?: string;
543
+
544
+ Arn?: string;
545
+
546
+ Description?: string;
547
+
548
+ EnvironmentId?: string;
549
+
550
+ NetworkFabricType?: NetworkFabricType | string;
551
+
552
+ OwnerAccountId?: string;
553
+
554
+ TransitGatewayId?: string;
555
+
556
+ State?: EnvironmentState | string;
557
+
558
+ Tags?: Record<string, string>;
559
+
560
+ Error?: ErrorResponse;
561
+
562
+ LastUpdatedTime?: Date;
563
+
564
+ CreatedTime?: Date;
565
+ }
566
+
567
+ export interface EnvironmentVpc {
568
+ EnvironmentId?: string;
569
+
570
+ VpcId?: string;
571
+
572
+ AccountId?: string;
573
+
574
+ CidrBlocks?: string[];
575
+
576
+ VpcName?: string;
577
+
578
+ LastUpdatedTime?: Date;
579
+
580
+ CreatedTime?: Date;
581
+ }
582
+ export interface GetApplicationRequest {
583
+ EnvironmentIdentifier: string | undefined;
584
+
585
+ ApplicationIdentifier: string | undefined;
586
+ }
587
+ export interface GetApplicationResponse {
588
+ Name?: string;
589
+
590
+ Arn?: string;
591
+
592
+ OwnerAccountId?: string;
593
+
594
+ CreatedByAccountId?: string;
595
+
596
+ ApplicationId?: string;
597
+
598
+ EnvironmentId?: string;
599
+
600
+ VpcId?: string;
601
+
602
+ ProxyType?: ProxyType | string;
603
+
604
+ ApiGatewayProxy?: ApiGatewayProxyConfig;
605
+
606
+ State?: ApplicationState | string;
607
+
608
+ Tags?: Record<string, string>;
609
+
610
+ Error?: ErrorResponse;
611
+
612
+ LastUpdatedTime?: Date;
613
+
614
+ CreatedTime?: Date;
615
+ }
616
+ export interface GetEnvironmentRequest {
617
+ EnvironmentIdentifier: string | undefined;
618
+ }
619
+ export interface GetEnvironmentResponse {
620
+ Name?: string;
621
+
622
+ Arn?: string;
623
+
624
+ Description?: string;
625
+
626
+ EnvironmentId?: string;
627
+
628
+ NetworkFabricType?: NetworkFabricType | string;
629
+
630
+ OwnerAccountId?: string;
631
+
632
+ TransitGatewayId?: string;
633
+
634
+ State?: EnvironmentState | string;
635
+
636
+ Tags?: Record<string, string>;
637
+
638
+ Error?: ErrorResponse;
639
+
640
+ LastUpdatedTime?: Date;
641
+
642
+ CreatedTime?: Date;
643
+ }
644
+ export interface GetResourcePolicyRequest {
645
+ Identifier: string | undefined;
646
+ }
647
+ export interface GetResourcePolicyResponse {
648
+ Policy?: string;
649
+ }
650
+ export interface GetRouteRequest {
651
+ EnvironmentIdentifier: string | undefined;
652
+
653
+ ApplicationIdentifier: string | undefined;
654
+
655
+ RouteIdentifier: string | undefined;
656
+ }
657
+ export interface GetRouteResponse {
658
+ RouteId?: string;
659
+
660
+ Arn?: string;
661
+
662
+ OwnerAccountId?: string;
663
+
664
+ CreatedByAccountId?: string;
665
+
666
+ RouteType?: RouteType | string;
667
+
668
+ ServiceId?: string;
669
+
670
+ ApplicationId?: string;
671
+
672
+ EnvironmentId?: string;
673
+
674
+ SourcePath?: string;
675
+
676
+ Methods?: (HttpMethod | string)[];
677
+
678
+ IncludeChildPaths?: boolean;
679
+
680
+ PathResourceToId?: Record<string, string>;
681
+
682
+ State?: RouteState | string;
683
+
684
+ Tags?: Record<string, string>;
685
+
686
+ Error?: ErrorResponse;
687
+
688
+ LastUpdatedTime?: Date;
689
+
690
+ CreatedTime?: Date;
691
+ }
692
+ export interface GetServiceRequest {
693
+ EnvironmentIdentifier: string | undefined;
694
+
695
+ ApplicationIdentifier: string | undefined;
696
+
697
+ ServiceIdentifier: string | undefined;
698
+ }
699
+
700
+ export interface LambdaEndpointConfig {
701
+ Arn?: string;
702
+ }
703
+
704
+ export interface UrlEndpointConfig {
705
+ Url?: string;
706
+
707
+ HealthUrl?: string;
708
+ }
709
+ export interface GetServiceResponse {
710
+ ServiceId?: string;
711
+
712
+ Name?: string;
713
+
714
+ Arn?: string;
715
+
716
+ OwnerAccountId?: string;
717
+
718
+ CreatedByAccountId?: string;
719
+
720
+ Description?: string;
721
+
722
+ EnvironmentId?: string;
723
+
724
+ ApplicationId?: string;
725
+
726
+ VpcId?: string;
727
+
728
+ EndpointType?: ServiceEndpointType | string;
729
+
730
+ UrlEndpoint?: UrlEndpointConfig;
731
+
732
+ LambdaEndpoint?: LambdaEndpointConfig;
733
+
734
+ State?: ServiceState | string;
735
+
736
+ Tags?: Record<string, string>;
737
+
738
+ Error?: ErrorResponse;
739
+
740
+ LastUpdatedTime?: Date;
741
+
742
+ CreatedTime?: Date;
743
+ }
744
+
745
+ export declare class InvalidResourcePolicyException extends __BaseException {
746
+ readonly name: "InvalidResourcePolicyException";
747
+ readonly $fault: "client";
748
+ Message: string | undefined;
749
+
750
+ constructor(
751
+ opts: __ExceptionOptionType<InvalidResourcePolicyException, __BaseException>
752
+ );
753
+ }
754
+
755
+ export interface LambdaEndpointSummary {
756
+ Arn?: string;
757
+ }
758
+ export interface ListApplicationsRequest {
759
+ EnvironmentIdentifier: string | undefined;
760
+
761
+ NextToken?: string;
762
+
763
+ MaxResults?: number;
764
+ }
765
+ export interface ListApplicationsResponse {
766
+ ApplicationSummaryList?: ApplicationSummary[];
767
+
768
+ NextToken?: string;
769
+ }
770
+ export interface ListEnvironmentsRequest {
771
+ NextToken?: string;
772
+
773
+ MaxResults?: number;
774
+ }
775
+ export interface ListEnvironmentsResponse {
776
+ EnvironmentSummaryList?: EnvironmentSummary[];
777
+
778
+ NextToken?: string;
779
+ }
780
+ export interface ListEnvironmentVpcsRequest {
781
+ EnvironmentIdentifier: string | undefined;
782
+
783
+ NextToken?: string;
784
+
785
+ MaxResults?: number;
786
+ }
787
+ export interface ListEnvironmentVpcsResponse {
788
+ EnvironmentVpcList?: EnvironmentVpc[];
789
+
790
+ NextToken?: string;
791
+ }
792
+ export interface ListRoutesRequest {
793
+ EnvironmentIdentifier: string | undefined;
794
+
795
+ ApplicationIdentifier: string | undefined;
796
+
797
+ NextToken?: string;
798
+
799
+ MaxResults?: number;
800
+ }
801
+
802
+ export interface RouteSummary {
803
+ RouteId?: string;
804
+
805
+ Arn?: string;
806
+
807
+ OwnerAccountId?: string;
808
+
809
+ CreatedByAccountId?: string;
810
+
811
+ RouteType?: RouteType | string;
812
+
813
+ ServiceId?: string;
814
+
815
+ ApplicationId?: string;
816
+
817
+ EnvironmentId?: string;
818
+
819
+ SourcePath?: string;
820
+
821
+ Methods?: (HttpMethod | string)[];
822
+
823
+ IncludeChildPaths?: boolean;
824
+
825
+ PathResourceToId?: Record<string, string>;
826
+
827
+ State?: RouteState | string;
828
+
829
+ Tags?: Record<string, string>;
830
+
831
+ Error?: ErrorResponse;
832
+
833
+ LastUpdatedTime?: Date;
834
+
835
+ CreatedTime?: Date;
836
+ }
837
+ export interface ListRoutesResponse {
838
+ RouteSummaryList?: RouteSummary[];
839
+
840
+ NextToken?: string;
841
+ }
842
+ export interface ListServicesRequest {
843
+ EnvironmentIdentifier: string | undefined;
844
+
845
+ ApplicationIdentifier: string | undefined;
846
+
847
+ NextToken?: string;
848
+
849
+ MaxResults?: number;
850
+ }
851
+
852
+ export interface UrlEndpointSummary {
853
+ Url?: string;
854
+
855
+ HealthUrl?: string;
856
+ }
857
+
858
+ export interface ServiceSummary {
859
+ ServiceId?: string;
860
+
861
+ Name?: string;
862
+
863
+ Arn?: string;
864
+
865
+ OwnerAccountId?: string;
866
+
867
+ CreatedByAccountId?: string;
868
+
869
+ Description?: string;
870
+
871
+ EnvironmentId?: string;
872
+
873
+ ApplicationId?: string;
874
+
875
+ VpcId?: string;
876
+
877
+ EndpointType?: ServiceEndpointType | string;
878
+
879
+ UrlEndpoint?: UrlEndpointSummary;
880
+
881
+ LambdaEndpoint?: LambdaEndpointSummary;
882
+
883
+ State?: ServiceState | string;
884
+
885
+ Tags?: Record<string, string>;
886
+
887
+ Error?: ErrorResponse;
888
+
889
+ LastUpdatedTime?: Date;
890
+
891
+ CreatedTime?: Date;
892
+ }
893
+ export interface ListServicesResponse {
894
+ ServiceSummaryList?: ServiceSummary[];
895
+
896
+ NextToken?: string;
897
+ }
898
+ export interface ListTagsForResourceRequest {
899
+ ResourceArn: string | undefined;
900
+ }
901
+ export interface ListTagsForResourceResponse {
902
+ Tags?: Record<string, string>;
903
+ }
904
+ export interface PutResourcePolicyRequest {
905
+ ResourceArn: string | undefined;
906
+
907
+ Policy: string | undefined;
908
+ }
909
+ export interface PutResourcePolicyResponse {}
910
+ export interface TagResourceRequest {
911
+ ResourceArn: string | undefined;
912
+
913
+ Tags: Record<string, string> | undefined;
914
+ }
915
+ export interface TagResourceResponse {}
916
+ export interface UntagResourceRequest {
917
+ ResourceArn: string | undefined;
918
+
919
+ TagKeys: string[] | undefined;
920
+ }
921
+ export interface UntagResourceResponse {}
922
+ export interface UpdateRouteRequest {
923
+ EnvironmentIdentifier: string | undefined;
924
+
925
+ ApplicationIdentifier: string | undefined;
926
+
927
+ RouteIdentifier: string | undefined;
928
+
929
+ ActivationState: RouteActivationState | string | undefined;
930
+ }
931
+ export interface UpdateRouteResponse {
932
+ RouteId?: string;
933
+
934
+ Arn?: string;
935
+
936
+ ServiceId?: string;
937
+
938
+ ApplicationId?: string;
939
+
940
+ State?: RouteState | string;
941
+
942
+ LastUpdatedTime?: Date;
943
+ }
944
+
945
+ export declare const ApiGatewayProxyConfigFilterSensitiveLog: (
946
+ obj: ApiGatewayProxyConfig
947
+ ) => any;
948
+
949
+ export declare const ApiGatewayProxyInputFilterSensitiveLog: (
950
+ obj: ApiGatewayProxyInput
951
+ ) => any;
952
+
953
+ export declare const ApiGatewayProxySummaryFilterSensitiveLog: (
954
+ obj: ApiGatewayProxySummary
955
+ ) => any;
956
+
957
+ export declare const ErrorResponseFilterSensitiveLog: (
958
+ obj: ErrorResponse
959
+ ) => any;
960
+
961
+ export declare const ApplicationSummaryFilterSensitiveLog: (
962
+ obj: ApplicationSummary
963
+ ) => any;
964
+
965
+ export declare const CreateApplicationRequestFilterSensitiveLog: (
966
+ obj: CreateApplicationRequest
967
+ ) => any;
968
+
969
+ export declare const CreateApplicationResponseFilterSensitiveLog: (
970
+ obj: CreateApplicationResponse
971
+ ) => any;
972
+
973
+ export declare const CreateEnvironmentRequestFilterSensitiveLog: (
974
+ obj: CreateEnvironmentRequest
975
+ ) => any;
976
+
977
+ export declare const CreateEnvironmentResponseFilterSensitiveLog: (
978
+ obj: CreateEnvironmentResponse
979
+ ) => any;
980
+
981
+ export declare const DefaultRouteInputFilterSensitiveLog: (
982
+ obj: DefaultRouteInput
983
+ ) => any;
984
+
985
+ export declare const UriPathRouteInputFilterSensitiveLog: (
986
+ obj: UriPathRouteInput
987
+ ) => any;
988
+
989
+ export declare const CreateRouteRequestFilterSensitiveLog: (
990
+ obj: CreateRouteRequest
991
+ ) => any;
992
+
993
+ export declare const CreateRouteResponseFilterSensitiveLog: (
994
+ obj: CreateRouteResponse
995
+ ) => any;
996
+
997
+ export declare const LambdaEndpointInputFilterSensitiveLog: (
998
+ obj: LambdaEndpointInput
999
+ ) => any;
1000
+
1001
+ export declare const UrlEndpointInputFilterSensitiveLog: (
1002
+ obj: UrlEndpointInput
1003
+ ) => any;
1004
+
1005
+ export declare const CreateServiceRequestFilterSensitiveLog: (
1006
+ obj: CreateServiceRequest
1007
+ ) => any;
1008
+
1009
+ export declare const CreateServiceResponseFilterSensitiveLog: (
1010
+ obj: CreateServiceResponse
1011
+ ) => any;
1012
+
1013
+ export declare const DeleteApplicationRequestFilterSensitiveLog: (
1014
+ obj: DeleteApplicationRequest
1015
+ ) => any;
1016
+
1017
+ export declare const DeleteApplicationResponseFilterSensitiveLog: (
1018
+ obj: DeleteApplicationResponse
1019
+ ) => any;
1020
+
1021
+ export declare const DeleteEnvironmentRequestFilterSensitiveLog: (
1022
+ obj: DeleteEnvironmentRequest
1023
+ ) => any;
1024
+
1025
+ export declare const DeleteEnvironmentResponseFilterSensitiveLog: (
1026
+ obj: DeleteEnvironmentResponse
1027
+ ) => any;
1028
+
1029
+ export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (
1030
+ obj: DeleteResourcePolicyRequest
1031
+ ) => any;
1032
+
1033
+ export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (
1034
+ obj: DeleteResourcePolicyResponse
1035
+ ) => any;
1036
+
1037
+ export declare const DeleteRouteRequestFilterSensitiveLog: (
1038
+ obj: DeleteRouteRequest
1039
+ ) => any;
1040
+
1041
+ export declare const DeleteRouteResponseFilterSensitiveLog: (
1042
+ obj: DeleteRouteResponse
1043
+ ) => any;
1044
+
1045
+ export declare const DeleteServiceRequestFilterSensitiveLog: (
1046
+ obj: DeleteServiceRequest
1047
+ ) => any;
1048
+
1049
+ export declare const DeleteServiceResponseFilterSensitiveLog: (
1050
+ obj: DeleteServiceResponse
1051
+ ) => any;
1052
+
1053
+ export declare const EnvironmentSummaryFilterSensitiveLog: (
1054
+ obj: EnvironmentSummary
1055
+ ) => any;
1056
+
1057
+ export declare const EnvironmentVpcFilterSensitiveLog: (
1058
+ obj: EnvironmentVpc
1059
+ ) => any;
1060
+
1061
+ export declare const GetApplicationRequestFilterSensitiveLog: (
1062
+ obj: GetApplicationRequest
1063
+ ) => any;
1064
+
1065
+ export declare const GetApplicationResponseFilterSensitiveLog: (
1066
+ obj: GetApplicationResponse
1067
+ ) => any;
1068
+
1069
+ export declare const GetEnvironmentRequestFilterSensitiveLog: (
1070
+ obj: GetEnvironmentRequest
1071
+ ) => any;
1072
+
1073
+ export declare const GetEnvironmentResponseFilterSensitiveLog: (
1074
+ obj: GetEnvironmentResponse
1075
+ ) => any;
1076
+
1077
+ export declare const GetResourcePolicyRequestFilterSensitiveLog: (
1078
+ obj: GetResourcePolicyRequest
1079
+ ) => any;
1080
+
1081
+ export declare const GetResourcePolicyResponseFilterSensitiveLog: (
1082
+ obj: GetResourcePolicyResponse
1083
+ ) => any;
1084
+
1085
+ export declare const GetRouteRequestFilterSensitiveLog: (
1086
+ obj: GetRouteRequest
1087
+ ) => any;
1088
+
1089
+ export declare const GetRouteResponseFilterSensitiveLog: (
1090
+ obj: GetRouteResponse
1091
+ ) => any;
1092
+
1093
+ export declare const GetServiceRequestFilterSensitiveLog: (
1094
+ obj: GetServiceRequest
1095
+ ) => any;
1096
+
1097
+ export declare const LambdaEndpointConfigFilterSensitiveLog: (
1098
+ obj: LambdaEndpointConfig
1099
+ ) => any;
1100
+
1101
+ export declare const UrlEndpointConfigFilterSensitiveLog: (
1102
+ obj: UrlEndpointConfig
1103
+ ) => any;
1104
+
1105
+ export declare const GetServiceResponseFilterSensitiveLog: (
1106
+ obj: GetServiceResponse
1107
+ ) => any;
1108
+
1109
+ export declare const LambdaEndpointSummaryFilterSensitiveLog: (
1110
+ obj: LambdaEndpointSummary
1111
+ ) => any;
1112
+
1113
+ export declare const ListApplicationsRequestFilterSensitiveLog: (
1114
+ obj: ListApplicationsRequest
1115
+ ) => any;
1116
+
1117
+ export declare const ListApplicationsResponseFilterSensitiveLog: (
1118
+ obj: ListApplicationsResponse
1119
+ ) => any;
1120
+
1121
+ export declare const ListEnvironmentsRequestFilterSensitiveLog: (
1122
+ obj: ListEnvironmentsRequest
1123
+ ) => any;
1124
+
1125
+ export declare const ListEnvironmentsResponseFilterSensitiveLog: (
1126
+ obj: ListEnvironmentsResponse
1127
+ ) => any;
1128
+
1129
+ export declare const ListEnvironmentVpcsRequestFilterSensitiveLog: (
1130
+ obj: ListEnvironmentVpcsRequest
1131
+ ) => any;
1132
+
1133
+ export declare const ListEnvironmentVpcsResponseFilterSensitiveLog: (
1134
+ obj: ListEnvironmentVpcsResponse
1135
+ ) => any;
1136
+
1137
+ export declare const ListRoutesRequestFilterSensitiveLog: (
1138
+ obj: ListRoutesRequest
1139
+ ) => any;
1140
+
1141
+ export declare const RouteSummaryFilterSensitiveLog: (obj: RouteSummary) => any;
1142
+
1143
+ export declare const ListRoutesResponseFilterSensitiveLog: (
1144
+ obj: ListRoutesResponse
1145
+ ) => any;
1146
+
1147
+ export declare const ListServicesRequestFilterSensitiveLog: (
1148
+ obj: ListServicesRequest
1149
+ ) => any;
1150
+
1151
+ export declare const UrlEndpointSummaryFilterSensitiveLog: (
1152
+ obj: UrlEndpointSummary
1153
+ ) => any;
1154
+
1155
+ export declare const ServiceSummaryFilterSensitiveLog: (
1156
+ obj: ServiceSummary
1157
+ ) => any;
1158
+
1159
+ export declare const ListServicesResponseFilterSensitiveLog: (
1160
+ obj: ListServicesResponse
1161
+ ) => any;
1162
+
1163
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1164
+ obj: ListTagsForResourceRequest
1165
+ ) => any;
1166
+
1167
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1168
+ obj: ListTagsForResourceResponse
1169
+ ) => any;
1170
+
1171
+ export declare const PutResourcePolicyRequestFilterSensitiveLog: (
1172
+ obj: PutResourcePolicyRequest
1173
+ ) => any;
1174
+
1175
+ export declare const PutResourcePolicyResponseFilterSensitiveLog: (
1176
+ obj: PutResourcePolicyResponse
1177
+ ) => any;
1178
+
1179
+ export declare const TagResourceRequestFilterSensitiveLog: (
1180
+ obj: TagResourceRequest
1181
+ ) => any;
1182
+
1183
+ export declare const TagResourceResponseFilterSensitiveLog: (
1184
+ obj: TagResourceResponse
1185
+ ) => any;
1186
+
1187
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1188
+ obj: UntagResourceRequest
1189
+ ) => any;
1190
+
1191
+ export declare const UntagResourceResponseFilterSensitiveLog: (
1192
+ obj: UntagResourceResponse
1193
+ ) => any;
1194
+
1195
+ export declare const UpdateRouteRequestFilterSensitiveLog: (
1196
+ obj: UpdateRouteRequest
1197
+ ) => any;
1198
+
1199
+ export declare const UpdateRouteResponseFilterSensitiveLog: (
1200
+ obj: UpdateRouteResponse
1201
+ ) => any;