@aws-sdk/client-migration-hub-refactor-spaces 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 (46) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/MigrationHubRefactorSpaces.d.ts +412 -125
  3. package/dist-types/ts3.4/MigrationHubRefactorSpacesClient.d.ts +249 -97
  4. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/GetRouteCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ListEnvironmentVpcsCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/ListRoutesCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/UpdateRouteCommand.d.ts +32 -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 +7 -6
  32. package/dist-types/ts3.4/models/index.d.ts +1 -1
  33. package/dist-types/ts3.4/models/models_0.d.ts +820 -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 +67 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  46. package/package.json +34 -34
@@ -1,1124 +1,820 @@
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
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare enum ApiGatewayEndpointType {
12
+ PRIVATE = "PRIVATE",
13
+ REGIONAL = "REGIONAL",
14
+ }
15
+ export interface ApiGatewayProxyConfig {
16
+ ProxyUrl?: string;
17
+ ApiGatewayId?: string;
18
+ VpcLinkId?: string;
19
+ NlbArn?: string;
20
+ NlbName?: string;
21
+ EndpointType?: ApiGatewayEndpointType | string;
22
+ StageName?: string;
23
+ }
24
+ export interface ApiGatewayProxyInput {
25
+ EndpointType?: ApiGatewayEndpointType | string;
26
+ StageName?: string;
27
+ }
28
+ export interface ApiGatewayProxySummary {
29
+ ProxyUrl?: string;
30
+ ApiGatewayId?: string;
31
+ VpcLinkId?: string;
32
+ NlbArn?: string;
33
+ NlbName?: string;
34
+ EndpointType?: ApiGatewayEndpointType | string;
35
+ StageName?: string;
36
+ }
37
+ export declare enum ApplicationState {
38
+ ACTIVE = "ACTIVE",
39
+ CREATING = "CREATING",
40
+ DELETING = "DELETING",
41
+ FAILED = "FAILED",
42
+ UPDATING = "UPDATING",
43
+ }
44
+ export declare enum ErrorCode {
45
+ INVALID_RESOURCE_STATE = "INVALID_RESOURCE_STATE",
46
+ NOT_AUTHORIZED = "NOT_AUTHORIZED",
47
+ REQUEST_LIMIT_EXCEEDED = "REQUEST_LIMIT_EXCEEDED",
48
+ RESOURCE_CREATION_FAILURE = "RESOURCE_CREATION_FAILURE",
49
+ RESOURCE_DELETION_FAILURE = "RESOURCE_DELETION_FAILURE",
50
+ RESOURCE_IN_USE = "RESOURCE_IN_USE",
51
+ RESOURCE_LIMIT_EXCEEDED = "RESOURCE_LIMIT_EXCEEDED",
52
+ RESOURCE_NOT_FOUND = "RESOURCE_NOT_FOUND",
53
+ RESOURCE_RETRIEVAL_FAILURE = "RESOURCE_RETRIEVAL_FAILURE",
54
+ RESOURCE_UPDATE_FAILURE = "RESOURCE_UPDATE_FAILURE",
55
+ SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE = "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE",
56
+ STATE_TRANSITION_FAILURE = "STATE_TRANSITION_FAILURE",
57
+ }
58
+ export declare enum ErrorResourceType {
59
+ API_GATEWAY = "API_GATEWAY",
60
+ APPLICATION = "APPLICATION",
61
+ ENVIRONMENT = "ENVIRONMENT",
62
+ IAM_ROLE = "IAM_ROLE",
63
+ LAMBDA = "LAMBDA",
64
+ LOAD_BALANCER_LISTENER = "LOAD_BALANCER_LISTENER",
65
+ NLB = "NLB",
66
+ RESOURCE_SHARE = "RESOURCE_SHARE",
67
+ ROUTE = "ROUTE",
68
+ ROUTE_TABLE = "ROUTE_TABLE",
69
+ SECURITY_GROUP = "SECURITY_GROUP",
70
+ SERVICE = "SERVICE",
71
+ SUBNET = "SUBNET",
72
+ TARGET_GROUP = "TARGET_GROUP",
73
+ TRANSIT_GATEWAY = "TRANSIT_GATEWAY",
74
+ TRANSIT_GATEWAY_ATTACHMENT = "TRANSIT_GATEWAY_ATTACHMENT",
75
+ VPC = "VPC",
76
+ VPC_ENDPOINT_SERVICE_CONFIGURATION = "VPC_ENDPOINT_SERVICE_CONFIGURATION",
77
+ VPC_LINK = "VPC_LINK",
78
+ }
79
+ export interface ErrorResponse {
80
+ Code?: ErrorCode | string;
81
+ Message?: string;
82
+ AccountId?: string;
83
+ ResourceIdentifier?: string;
84
+ ResourceType?: ErrorResourceType | string;
85
+ AdditionalDetails?: Record<string, string>;
86
+ }
87
+ export declare enum ProxyType {
88
+ API_GATEWAY = "API_GATEWAY",
89
+ }
90
+ export interface ApplicationSummary {
91
+ Name?: string;
92
+ Arn?: string;
93
+ OwnerAccountId?: string;
94
+ CreatedByAccountId?: string;
95
+ ApplicationId?: string;
96
+ EnvironmentId?: string;
97
+ VpcId?: string;
98
+ ProxyType?: ProxyType | string;
99
+ ApiGatewayProxy?: ApiGatewayProxySummary;
100
+ State?: ApplicationState | string;
101
+ Tags?: Record<string, string>;
102
+ Error?: ErrorResponse;
103
+ LastUpdatedTime?: Date;
104
+ CreatedTime?: Date;
105
+ }
106
+ export declare class ConflictException extends __BaseException {
107
+ readonly name: "ConflictException";
108
+ readonly $fault: "client";
109
+ Message: string | undefined;
110
+ ResourceId: string | undefined;
111
+ ResourceType: string | undefined;
112
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
113
+ }
114
+ export interface CreateApplicationRequest {
115
+ Name: string | undefined;
116
+ EnvironmentIdentifier: string | undefined;
117
+ VpcId: string | undefined;
118
+ ProxyType: ProxyType | string | undefined;
119
+ ApiGatewayProxy?: ApiGatewayProxyInput;
120
+ Tags?: Record<string, string>;
121
+ ClientToken?: string;
122
+ }
123
+ export interface CreateApplicationResponse {
124
+ Name?: string;
125
+ Arn?: string;
126
+ OwnerAccountId?: string;
127
+ CreatedByAccountId?: string;
128
+ ApplicationId?: string;
129
+ EnvironmentId?: string;
130
+ VpcId?: string;
131
+ ProxyType?: ProxyType | string;
132
+ ApiGatewayProxy?: ApiGatewayProxyInput;
133
+ State?: ApplicationState | string;
134
+ Tags?: Record<string, string>;
135
+ LastUpdatedTime?: Date;
136
+ CreatedTime?: Date;
137
+ }
138
+ export declare class InternalServerException extends __BaseException {
139
+ readonly name: "InternalServerException";
140
+ readonly $fault: "server";
141
+ Message: string | undefined;
142
+ constructor(
143
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
144
+ );
145
+ }
146
+ export declare class ResourceNotFoundException extends __BaseException {
147
+ readonly name: "ResourceNotFoundException";
148
+ readonly $fault: "client";
149
+ Message: string | undefined;
150
+ ResourceId: string | undefined;
151
+ ResourceType: string | undefined;
152
+ constructor(
153
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
154
+ );
155
+ }
156
+ export declare class ServiceQuotaExceededException extends __BaseException {
157
+ readonly name: "ServiceQuotaExceededException";
158
+ readonly $fault: "client";
159
+ Message: string | undefined;
160
+ ResourceId: string | undefined;
161
+ ResourceType: string | undefined;
162
+ QuotaCode?: string;
163
+ ServiceCode: string | undefined;
164
+ constructor(
165
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
166
+ );
167
+ }
168
+ export declare class ThrottlingException extends __BaseException {
169
+ readonly name: "ThrottlingException";
170
+ readonly $fault: "client";
171
+ Message: string | undefined;
172
+ QuotaCode?: string;
173
+ ServiceCode?: string;
174
+ RetryAfterSeconds?: number;
175
+ constructor(
176
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
177
+ );
178
+ }
179
+ export declare class ValidationException extends __BaseException {
180
+ readonly name: "ValidationException";
181
+ readonly $fault: "client";
182
+ Message: string | undefined;
183
+ constructor(
184
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
185
+ );
186
+ }
187
+ export declare enum NetworkFabricType {
188
+ TRANSIT_GATEWAY = "TRANSIT_GATEWAY",
189
+ }
190
+ export interface CreateEnvironmentRequest {
191
+ Name: string | undefined;
192
+ Description?: string;
193
+ NetworkFabricType: NetworkFabricType | string | undefined;
194
+ Tags?: Record<string, string>;
195
+ ClientToken?: string;
196
+ }
197
+ export declare enum EnvironmentState {
198
+ ACTIVE = "ACTIVE",
199
+ CREATING = "CREATING",
200
+ DELETING = "DELETING",
201
+ FAILED = "FAILED",
202
+ }
203
+ export interface CreateEnvironmentResponse {
204
+ Name?: string;
205
+ Arn?: string;
206
+ Description?: string;
207
+ EnvironmentId?: string;
208
+ NetworkFabricType?: NetworkFabricType | string;
209
+ OwnerAccountId?: string;
210
+ State?: EnvironmentState | string;
211
+ Tags?: Record<string, string>;
212
+ LastUpdatedTime?: Date;
213
+ CreatedTime?: Date;
214
+ }
215
+ export declare enum RouteActivationState {
216
+ ACTIVE = "ACTIVE",
217
+ INACTIVE = "INACTIVE",
218
+ }
219
+ export interface DefaultRouteInput {
220
+ ActivationState?: RouteActivationState | string;
221
+ }
222
+ export declare enum RouteType {
223
+ DEFAULT = "DEFAULT",
224
+ URI_PATH = "URI_PATH",
225
+ }
226
+ export declare enum HttpMethod {
227
+ DELETE = "DELETE",
228
+ GET = "GET",
229
+ HEAD = "HEAD",
230
+ OPTIONS = "OPTIONS",
231
+ PATCH = "PATCH",
232
+ POST = "POST",
233
+ PUT = "PUT",
234
+ }
235
+ export interface UriPathRouteInput {
236
+ SourcePath: string | undefined;
237
+ ActivationState: RouteActivationState | string | undefined;
238
+ Methods?: (HttpMethod | string)[];
239
+ IncludeChildPaths?: boolean;
240
+ }
241
+ export interface CreateRouteRequest {
242
+ EnvironmentIdentifier: string | undefined;
243
+ ApplicationIdentifier: string | undefined;
244
+ ServiceIdentifier: string | undefined;
245
+ RouteType: RouteType | string | undefined;
246
+ DefaultRoute?: DefaultRouteInput;
247
+ UriPathRoute?: UriPathRouteInput;
248
+ Tags?: Record<string, string>;
249
+ ClientToken?: string;
250
+ }
251
+ export declare enum RouteState {
252
+ ACTIVE = "ACTIVE",
253
+ CREATING = "CREATING",
254
+ DELETING = "DELETING",
255
+ FAILED = "FAILED",
256
+ INACTIVE = "INACTIVE",
257
+ UPDATING = "UPDATING",
258
+ }
259
+ export interface CreateRouteResponse {
260
+ RouteId?: string;
261
+ Arn?: string;
262
+ OwnerAccountId?: string;
263
+ CreatedByAccountId?: string;
264
+ RouteType?: RouteType | string;
265
+ ServiceId?: string;
266
+ ApplicationId?: string;
267
+ UriPathRoute?: UriPathRouteInput;
268
+ State?: RouteState | string;
269
+ Tags?: Record<string, string>;
270
+ LastUpdatedTime?: Date;
271
+ CreatedTime?: Date;
272
+ }
273
+ export declare enum ServiceEndpointType {
274
+ LAMBDA = "LAMBDA",
275
+ URL = "URL",
276
+ }
277
+ export interface LambdaEndpointInput {
278
+ Arn: string | undefined;
279
+ }
280
+ export interface UrlEndpointInput {
281
+ Url: string | undefined;
282
+ HealthUrl?: string;
283
+ }
284
+ export interface CreateServiceRequest {
285
+ Name: string | undefined;
286
+ Description?: string;
287
+ EnvironmentIdentifier: string | undefined;
288
+ ApplicationIdentifier: string | undefined;
289
+ VpcId?: string;
290
+ EndpointType: ServiceEndpointType | string | undefined;
291
+ UrlEndpoint?: UrlEndpointInput;
292
+ LambdaEndpoint?: LambdaEndpointInput;
293
+ Tags?: Record<string, string>;
294
+ ClientToken?: string;
295
+ }
296
+ export declare enum ServiceState {
297
+ ACTIVE = "ACTIVE",
298
+ CREATING = "CREATING",
299
+ DELETING = "DELETING",
300
+ FAILED = "FAILED",
301
+ }
302
+ export interface CreateServiceResponse {
303
+ ServiceId?: string;
304
+ Name?: string;
305
+ Arn?: string;
306
+ OwnerAccountId?: string;
307
+ CreatedByAccountId?: string;
308
+ Description?: string;
309
+ EnvironmentId?: string;
310
+ ApplicationId?: string;
311
+ VpcId?: string;
312
+ EndpointType?: ServiceEndpointType | string;
313
+ UrlEndpoint?: UrlEndpointInput;
314
+ LambdaEndpoint?: LambdaEndpointInput;
315
+ State?: ServiceState | string;
316
+ Tags?: Record<string, string>;
317
+ LastUpdatedTime?: Date;
318
+ CreatedTime?: Date;
319
+ }
320
+ export interface DeleteApplicationRequest {
321
+ EnvironmentIdentifier: string | undefined;
322
+ ApplicationIdentifier: string | undefined;
323
+ }
324
+ export interface DeleteApplicationResponse {
325
+ Name?: string;
326
+ Arn?: string;
327
+ ApplicationId?: string;
328
+ EnvironmentId?: string;
329
+ State?: ApplicationState | string;
330
+ LastUpdatedTime?: Date;
331
+ }
332
+ export interface DeleteEnvironmentRequest {
333
+ EnvironmentIdentifier: string | undefined;
334
+ }
335
+ export interface DeleteEnvironmentResponse {
336
+ Name?: string;
337
+ Arn?: string;
338
+ EnvironmentId?: string;
339
+ State?: EnvironmentState | string;
340
+ LastUpdatedTime?: Date;
341
+ }
342
+ export interface DeleteResourcePolicyRequest {
343
+ Identifier: string | undefined;
344
+ }
345
+ export interface DeleteResourcePolicyResponse {}
346
+ export interface DeleteRouteRequest {
347
+ EnvironmentIdentifier: string | undefined;
348
+ ApplicationIdentifier: string | undefined;
349
+ RouteIdentifier: string | undefined;
350
+ }
351
+ export interface DeleteRouteResponse {
352
+ RouteId?: string;
353
+ Arn?: string;
354
+ ServiceId?: string;
355
+ ApplicationId?: string;
356
+ State?: RouteState | string;
357
+ LastUpdatedTime?: Date;
358
+ }
359
+ export interface DeleteServiceRequest {
360
+ EnvironmentIdentifier: string | undefined;
361
+ ApplicationIdentifier: string | undefined;
362
+ ServiceIdentifier: string | undefined;
363
+ }
364
+ export interface DeleteServiceResponse {
365
+ ServiceId?: string;
366
+ Name?: string;
367
+ Arn?: string;
368
+ EnvironmentId?: string;
369
+ ApplicationId?: string;
370
+ State?: ServiceState | string;
371
+ LastUpdatedTime?: Date;
372
+ }
373
+ export interface EnvironmentSummary {
374
+ Name?: string;
375
+ Arn?: string;
376
+ Description?: string;
377
+ EnvironmentId?: string;
378
+ NetworkFabricType?: NetworkFabricType | string;
379
+ OwnerAccountId?: string;
380
+ TransitGatewayId?: string;
381
+ State?: EnvironmentState | string;
382
+ Tags?: Record<string, string>;
383
+ Error?: ErrorResponse;
384
+ LastUpdatedTime?: Date;
385
+ CreatedTime?: Date;
386
+ }
387
+ export interface EnvironmentVpc {
388
+ EnvironmentId?: string;
389
+ VpcId?: string;
390
+ AccountId?: string;
391
+ CidrBlocks?: string[];
392
+ VpcName?: string;
393
+ LastUpdatedTime?: Date;
394
+ CreatedTime?: Date;
395
+ }
396
+ export interface GetApplicationRequest {
397
+ EnvironmentIdentifier: string | undefined;
398
+ ApplicationIdentifier: string | undefined;
399
+ }
400
+ export interface GetApplicationResponse {
401
+ Name?: string;
402
+ Arn?: string;
403
+ OwnerAccountId?: string;
404
+ CreatedByAccountId?: string;
405
+ ApplicationId?: string;
406
+ EnvironmentId?: string;
407
+ VpcId?: string;
408
+ ProxyType?: ProxyType | string;
409
+ ApiGatewayProxy?: ApiGatewayProxyConfig;
410
+ State?: ApplicationState | string;
411
+ Tags?: Record<string, string>;
412
+ Error?: ErrorResponse;
413
+ LastUpdatedTime?: Date;
414
+ CreatedTime?: Date;
415
+ }
416
+ export interface GetEnvironmentRequest {
417
+ EnvironmentIdentifier: string | undefined;
418
+ }
419
+ export interface GetEnvironmentResponse {
420
+ Name?: string;
421
+ Arn?: string;
422
+ Description?: string;
423
+ EnvironmentId?: string;
424
+ NetworkFabricType?: NetworkFabricType | string;
425
+ OwnerAccountId?: string;
426
+ TransitGatewayId?: string;
427
+ State?: EnvironmentState | string;
428
+ Tags?: Record<string, string>;
429
+ Error?: ErrorResponse;
430
+ LastUpdatedTime?: Date;
431
+ CreatedTime?: Date;
432
+ }
433
+ export interface GetResourcePolicyRequest {
434
+ Identifier: string | undefined;
435
+ }
436
+ export interface GetResourcePolicyResponse {
437
+ Policy?: string;
438
+ }
439
+ export interface GetRouteRequest {
440
+ EnvironmentIdentifier: string | undefined;
441
+ ApplicationIdentifier: string | undefined;
442
+ RouteIdentifier: string | undefined;
443
+ }
444
+ export interface GetRouteResponse {
445
+ RouteId?: string;
446
+ Arn?: string;
447
+ OwnerAccountId?: string;
448
+ CreatedByAccountId?: string;
449
+ RouteType?: RouteType | string;
450
+ ServiceId?: string;
451
+ ApplicationId?: string;
452
+ EnvironmentId?: string;
453
+ SourcePath?: string;
454
+ Methods?: (HttpMethod | string)[];
455
+ IncludeChildPaths?: boolean;
456
+ PathResourceToId?: Record<string, string>;
457
+ State?: RouteState | string;
458
+ Tags?: Record<string, string>;
459
+ Error?: ErrorResponse;
460
+ LastUpdatedTime?: Date;
461
+ CreatedTime?: Date;
462
+ }
463
+ export interface GetServiceRequest {
464
+ EnvironmentIdentifier: string | undefined;
465
+ ApplicationIdentifier: string | undefined;
466
+ ServiceIdentifier: string | undefined;
467
+ }
468
+ export interface LambdaEndpointConfig {
469
+ Arn?: string;
470
+ }
471
+ export interface UrlEndpointConfig {
472
+ Url?: string;
473
+ HealthUrl?: string;
474
+ }
475
+ export interface GetServiceResponse {
476
+ ServiceId?: string;
477
+ Name?: string;
478
+ Arn?: string;
479
+ OwnerAccountId?: string;
480
+ CreatedByAccountId?: string;
481
+ Description?: string;
482
+ EnvironmentId?: string;
483
+ ApplicationId?: string;
484
+ VpcId?: string;
485
+ EndpointType?: ServiceEndpointType | string;
486
+ UrlEndpoint?: UrlEndpointConfig;
487
+ LambdaEndpoint?: LambdaEndpointConfig;
488
+ State?: ServiceState | string;
489
+ Tags?: Record<string, string>;
490
+ Error?: ErrorResponse;
491
+ LastUpdatedTime?: Date;
492
+ CreatedTime?: Date;
493
+ }
494
+ export declare class InvalidResourcePolicyException extends __BaseException {
495
+ readonly name: "InvalidResourcePolicyException";
496
+ readonly $fault: "client";
497
+ Message: string | undefined;
498
+ constructor(
499
+ opts: __ExceptionOptionType<InvalidResourcePolicyException, __BaseException>
500
+ );
501
+ }
502
+ export interface LambdaEndpointSummary {
503
+ Arn?: string;
504
+ }
505
+ export interface ListApplicationsRequest {
506
+ EnvironmentIdentifier: string | undefined;
507
+ NextToken?: string;
508
+ MaxResults?: number;
509
+ }
510
+ export interface ListApplicationsResponse {
511
+ ApplicationSummaryList?: ApplicationSummary[];
512
+ NextToken?: string;
513
+ }
514
+ export interface ListEnvironmentsRequest {
515
+ NextToken?: string;
516
+ MaxResults?: number;
517
+ }
518
+ export interface ListEnvironmentsResponse {
519
+ EnvironmentSummaryList?: EnvironmentSummary[];
520
+ NextToken?: string;
521
+ }
522
+ export interface ListEnvironmentVpcsRequest {
523
+ EnvironmentIdentifier: string | undefined;
524
+ NextToken?: string;
525
+ MaxResults?: number;
526
+ }
527
+ export interface ListEnvironmentVpcsResponse {
528
+ EnvironmentVpcList?: EnvironmentVpc[];
529
+ NextToken?: string;
530
+ }
531
+ export interface ListRoutesRequest {
532
+ EnvironmentIdentifier: string | undefined;
533
+ ApplicationIdentifier: string | undefined;
534
+ NextToken?: string;
535
+ MaxResults?: number;
536
+ }
537
+ export interface RouteSummary {
538
+ RouteId?: string;
539
+ Arn?: string;
540
+ OwnerAccountId?: string;
541
+ CreatedByAccountId?: string;
542
+ RouteType?: RouteType | string;
543
+ ServiceId?: string;
544
+ ApplicationId?: string;
545
+ EnvironmentId?: string;
546
+ SourcePath?: string;
547
+ Methods?: (HttpMethod | string)[];
548
+ IncludeChildPaths?: boolean;
549
+ PathResourceToId?: Record<string, string>;
550
+ State?: RouteState | string;
551
+ Tags?: Record<string, string>;
552
+ Error?: ErrorResponse;
553
+ LastUpdatedTime?: Date;
554
+ CreatedTime?: Date;
555
+ }
556
+ export interface ListRoutesResponse {
557
+ RouteSummaryList?: RouteSummary[];
558
+ NextToken?: string;
559
+ }
560
+ export interface ListServicesRequest {
561
+ EnvironmentIdentifier: string | undefined;
562
+ ApplicationIdentifier: string | undefined;
563
+ NextToken?: string;
564
+ MaxResults?: number;
565
+ }
566
+ export interface UrlEndpointSummary {
567
+ Url?: string;
568
+ HealthUrl?: string;
569
+ }
570
+ export interface ServiceSummary {
571
+ ServiceId?: string;
572
+ Name?: string;
573
+ Arn?: string;
574
+ OwnerAccountId?: string;
575
+ CreatedByAccountId?: string;
576
+ Description?: string;
577
+ EnvironmentId?: string;
578
+ ApplicationId?: string;
579
+ VpcId?: string;
580
+ EndpointType?: ServiceEndpointType | string;
581
+ UrlEndpoint?: UrlEndpointSummary;
582
+ LambdaEndpoint?: LambdaEndpointSummary;
583
+ State?: ServiceState | string;
584
+ Tags?: Record<string, string>;
585
+ Error?: ErrorResponse;
586
+ LastUpdatedTime?: Date;
587
+ CreatedTime?: Date;
588
+ }
589
+ export interface ListServicesResponse {
590
+ ServiceSummaryList?: ServiceSummary[];
591
+ NextToken?: string;
592
+ }
593
+ export interface ListTagsForResourceRequest {
594
+ ResourceArn: string | undefined;
595
+ }
596
+ export interface ListTagsForResourceResponse {
597
+ Tags?: Record<string, string>;
598
+ }
599
+ export interface PutResourcePolicyRequest {
600
+ ResourceArn: string | undefined;
601
+ Policy: string | undefined;
602
+ }
603
+ export interface PutResourcePolicyResponse {}
604
+ export interface TagResourceRequest {
605
+ ResourceArn: string | undefined;
606
+ Tags: Record<string, string> | undefined;
607
+ }
608
+ export interface TagResourceResponse {}
609
+ export interface UntagResourceRequest {
610
+ ResourceArn: string | undefined;
611
+ TagKeys: string[] | undefined;
612
+ }
613
+ export interface UntagResourceResponse {}
614
+ export interface UpdateRouteRequest {
615
+ EnvironmentIdentifier: string | undefined;
616
+ ApplicationIdentifier: string | undefined;
617
+ RouteIdentifier: string | undefined;
618
+ ActivationState: RouteActivationState | string | undefined;
619
+ }
620
+ export interface UpdateRouteResponse {
621
+ RouteId?: string;
622
+ Arn?: string;
623
+ ServiceId?: string;
624
+ ApplicationId?: string;
625
+ State?: RouteState | string;
626
+ LastUpdatedTime?: Date;
627
+ }
628
+ export declare const ApiGatewayProxyConfigFilterSensitiveLog: (
629
+ obj: ApiGatewayProxyConfig
630
+ ) => any;
631
+ export declare const ApiGatewayProxyInputFilterSensitiveLog: (
632
+ obj: ApiGatewayProxyInput
633
+ ) => any;
634
+ export declare const ApiGatewayProxySummaryFilterSensitiveLog: (
635
+ obj: ApiGatewayProxySummary
636
+ ) => any;
637
+ export declare const ErrorResponseFilterSensitiveLog: (
638
+ obj: ErrorResponse
639
+ ) => any;
640
+ export declare const ApplicationSummaryFilterSensitiveLog: (
641
+ obj: ApplicationSummary
642
+ ) => any;
643
+ export declare const CreateApplicationRequestFilterSensitiveLog: (
644
+ obj: CreateApplicationRequest
645
+ ) => any;
646
+ export declare const CreateApplicationResponseFilterSensitiveLog: (
647
+ obj: CreateApplicationResponse
648
+ ) => any;
649
+ export declare const CreateEnvironmentRequestFilterSensitiveLog: (
650
+ obj: CreateEnvironmentRequest
651
+ ) => any;
652
+ export declare const CreateEnvironmentResponseFilterSensitiveLog: (
653
+ obj: CreateEnvironmentResponse
654
+ ) => any;
655
+ export declare const DefaultRouteInputFilterSensitiveLog: (
656
+ obj: DefaultRouteInput
657
+ ) => any;
658
+ export declare const UriPathRouteInputFilterSensitiveLog: (
659
+ obj: UriPathRouteInput
660
+ ) => any;
661
+ export declare const CreateRouteRequestFilterSensitiveLog: (
662
+ obj: CreateRouteRequest
663
+ ) => any;
664
+ export declare const CreateRouteResponseFilterSensitiveLog: (
665
+ obj: CreateRouteResponse
666
+ ) => any;
667
+ export declare const LambdaEndpointInputFilterSensitiveLog: (
668
+ obj: LambdaEndpointInput
669
+ ) => any;
670
+ export declare const UrlEndpointInputFilterSensitiveLog: (
671
+ obj: UrlEndpointInput
672
+ ) => any;
673
+ export declare const CreateServiceRequestFilterSensitiveLog: (
674
+ obj: CreateServiceRequest
675
+ ) => any;
676
+ export declare const CreateServiceResponseFilterSensitiveLog: (
677
+ obj: CreateServiceResponse
678
+ ) => any;
679
+ export declare const DeleteApplicationRequestFilterSensitiveLog: (
680
+ obj: DeleteApplicationRequest
681
+ ) => any;
682
+ export declare const DeleteApplicationResponseFilterSensitiveLog: (
683
+ obj: DeleteApplicationResponse
684
+ ) => any;
685
+ export declare const DeleteEnvironmentRequestFilterSensitiveLog: (
686
+ obj: DeleteEnvironmentRequest
687
+ ) => any;
688
+ export declare const DeleteEnvironmentResponseFilterSensitiveLog: (
689
+ obj: DeleteEnvironmentResponse
690
+ ) => any;
691
+ export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (
692
+ obj: DeleteResourcePolicyRequest
693
+ ) => any;
694
+ export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (
695
+ obj: DeleteResourcePolicyResponse
696
+ ) => any;
697
+ export declare const DeleteRouteRequestFilterSensitiveLog: (
698
+ obj: DeleteRouteRequest
699
+ ) => any;
700
+ export declare const DeleteRouteResponseFilterSensitiveLog: (
701
+ obj: DeleteRouteResponse
702
+ ) => any;
703
+ export declare const DeleteServiceRequestFilterSensitiveLog: (
704
+ obj: DeleteServiceRequest
705
+ ) => any;
706
+ export declare const DeleteServiceResponseFilterSensitiveLog: (
707
+ obj: DeleteServiceResponse
708
+ ) => any;
709
+ export declare const EnvironmentSummaryFilterSensitiveLog: (
710
+ obj: EnvironmentSummary
711
+ ) => any;
712
+ export declare const EnvironmentVpcFilterSensitiveLog: (
713
+ obj: EnvironmentVpc
714
+ ) => any;
715
+ export declare const GetApplicationRequestFilterSensitiveLog: (
716
+ obj: GetApplicationRequest
717
+ ) => any;
718
+ export declare const GetApplicationResponseFilterSensitiveLog: (
719
+ obj: GetApplicationResponse
720
+ ) => any;
721
+ export declare const GetEnvironmentRequestFilterSensitiveLog: (
722
+ obj: GetEnvironmentRequest
723
+ ) => any;
724
+ export declare const GetEnvironmentResponseFilterSensitiveLog: (
725
+ obj: GetEnvironmentResponse
726
+ ) => any;
727
+ export declare const GetResourcePolicyRequestFilterSensitiveLog: (
728
+ obj: GetResourcePolicyRequest
729
+ ) => any;
730
+ export declare const GetResourcePolicyResponseFilterSensitiveLog: (
731
+ obj: GetResourcePolicyResponse
732
+ ) => any;
733
+ export declare const GetRouteRequestFilterSensitiveLog: (
734
+ obj: GetRouteRequest
735
+ ) => any;
736
+ export declare const GetRouteResponseFilterSensitiveLog: (
737
+ obj: GetRouteResponse
738
+ ) => any;
739
+ export declare const GetServiceRequestFilterSensitiveLog: (
740
+ obj: GetServiceRequest
741
+ ) => any;
742
+ export declare const LambdaEndpointConfigFilterSensitiveLog: (
743
+ obj: LambdaEndpointConfig
744
+ ) => any;
745
+ export declare const UrlEndpointConfigFilterSensitiveLog: (
746
+ obj: UrlEndpointConfig
747
+ ) => any;
748
+ export declare const GetServiceResponseFilterSensitiveLog: (
749
+ obj: GetServiceResponse
750
+ ) => any;
751
+ export declare const LambdaEndpointSummaryFilterSensitiveLog: (
752
+ obj: LambdaEndpointSummary
753
+ ) => any;
754
+ export declare const ListApplicationsRequestFilterSensitiveLog: (
755
+ obj: ListApplicationsRequest
756
+ ) => any;
757
+ export declare const ListApplicationsResponseFilterSensitiveLog: (
758
+ obj: ListApplicationsResponse
759
+ ) => any;
760
+ export declare const ListEnvironmentsRequestFilterSensitiveLog: (
761
+ obj: ListEnvironmentsRequest
762
+ ) => any;
763
+ export declare const ListEnvironmentsResponseFilterSensitiveLog: (
764
+ obj: ListEnvironmentsResponse
765
+ ) => any;
766
+ export declare const ListEnvironmentVpcsRequestFilterSensitiveLog: (
767
+ obj: ListEnvironmentVpcsRequest
768
+ ) => any;
769
+ export declare const ListEnvironmentVpcsResponseFilterSensitiveLog: (
770
+ obj: ListEnvironmentVpcsResponse
771
+ ) => any;
772
+ export declare const ListRoutesRequestFilterSensitiveLog: (
773
+ obj: ListRoutesRequest
774
+ ) => any;
775
+ export declare const RouteSummaryFilterSensitiveLog: (obj: RouteSummary) => any;
776
+ export declare const ListRoutesResponseFilterSensitiveLog: (
777
+ obj: ListRoutesResponse
778
+ ) => any;
779
+ export declare const ListServicesRequestFilterSensitiveLog: (
780
+ obj: ListServicesRequest
781
+ ) => any;
782
+ export declare const UrlEndpointSummaryFilterSensitiveLog: (
783
+ obj: UrlEndpointSummary
784
+ ) => any;
785
+ export declare const ServiceSummaryFilterSensitiveLog: (
786
+ obj: ServiceSummary
787
+ ) => any;
788
+ export declare const ListServicesResponseFilterSensitiveLog: (
789
+ obj: ListServicesResponse
790
+ ) => any;
791
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
792
+ obj: ListTagsForResourceRequest
793
+ ) => any;
794
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
795
+ obj: ListTagsForResourceResponse
796
+ ) => any;
797
+ export declare const PutResourcePolicyRequestFilterSensitiveLog: (
798
+ obj: PutResourcePolicyRequest
799
+ ) => any;
800
+ export declare const PutResourcePolicyResponseFilterSensitiveLog: (
801
+ obj: PutResourcePolicyResponse
802
+ ) => any;
803
+ export declare const TagResourceRequestFilterSensitiveLog: (
804
+ obj: TagResourceRequest
805
+ ) => any;
806
+ export declare const TagResourceResponseFilterSensitiveLog: (
807
+ obj: TagResourceResponse
808
+ ) => any;
809
+ export declare const UntagResourceRequestFilterSensitiveLog: (
810
+ obj: UntagResourceRequest
811
+ ) => any;
812
+ export declare const UntagResourceResponseFilterSensitiveLog: (
813
+ obj: UntagResourceResponse
814
+ ) => any;
815
+ export declare const UpdateRouteRequestFilterSensitiveLog: (
816
+ obj: UpdateRouteRequest
817
+ ) => any;
818
+ export declare const UpdateRouteResponseFilterSensitiveLog: (
819
+ obj: UpdateRouteResponse
820
+ ) => any;