@aws-sdk/client-migration-hub-refactor-spaces 3.295.0 → 3.297.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 (35) hide show
  1. package/dist-types/MigrationHubRefactorSpaces.d.ts +25 -0
  2. package/dist-types/MigrationHubRefactorSpacesClient.d.ts +24 -4
  3. package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateRouteCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteRouteCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
  12. package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
  13. package/dist-types/commands/GetEnvironmentCommand.d.ts +16 -0
  14. package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
  15. package/dist-types/commands/GetRouteCommand.d.ts +16 -0
  16. package/dist-types/commands/GetServiceCommand.d.ts +16 -0
  17. package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListEnvironmentVpcsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListEnvironmentsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListRoutesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListServicesCommand.d.ts +16 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
  24. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  26. package/dist-types/commands/UpdateRouteCommand.d.ts +16 -0
  27. package/dist-types/models/MigrationHubRefactorSpacesServiceException.d.ts +2 -0
  28. package/dist-types/models/models_0.d.ts +208 -0
  29. package/dist-types/pagination/Interfaces.d.ts +3 -0
  30. package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
  31. package/dist-types/pagination/ListEnvironmentVpcsPaginator.d.ts +3 -0
  32. package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +3 -0
  33. package/dist-types/pagination/ListRoutesPaginator.d.ts +3 -0
  34. package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
  35. package/package.json +29 -29
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { MigrationHubRefactorSpacesServiceException as __BaseException } from "./MigrationHubRefactorSpacesServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>The user does not have sufficient access to perform this action. </p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -12,11 +13,15 @@ export declare class AccessDeniedException extends __BaseException {
12
13
  */
13
14
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
15
  }
16
+ /**
17
+ * @public
18
+ */
15
19
  export declare enum ApiGatewayEndpointType {
16
20
  PRIVATE = "PRIVATE",
17
21
  REGIONAL = "REGIONAL"
18
22
  }
19
23
  /**
24
+ * @public
20
25
  * <p>A wrapper object holding the Amazon API Gateway proxy configuration. </p>
21
26
  */
22
27
  export interface ApiGatewayProxyConfig {
@@ -51,6 +56,7 @@ export interface ApiGatewayProxyConfig {
51
56
  StageName?: string;
52
57
  }
53
58
  /**
59
+ * @public
54
60
  * <p>A wrapper object holding the Amazon API Gateway endpoint input. </p>
55
61
  */
56
62
  export interface ApiGatewayProxyInput {
@@ -69,6 +75,7 @@ export interface ApiGatewayProxyInput {
69
75
  StageName?: string;
70
76
  }
71
77
  /**
78
+ * @public
72
79
  * <p>A wrapper object holding the Amazon API Gateway proxy summary. </p>
73
80
  */
74
81
  export interface ApiGatewayProxySummary {
@@ -102,6 +109,9 @@ export interface ApiGatewayProxySummary {
102
109
  */
103
110
  StageName?: string;
104
111
  }
112
+ /**
113
+ * @public
114
+ */
105
115
  export declare enum ApplicationState {
106
116
  ACTIVE = "ACTIVE",
107
117
  CREATING = "CREATING",
@@ -109,6 +119,9 @@ export declare enum ApplicationState {
109
119
  FAILED = "FAILED",
110
120
  UPDATING = "UPDATING"
111
121
  }
122
+ /**
123
+ * @public
124
+ */
112
125
  export declare enum ErrorCode {
113
126
  INVALID_RESOURCE_STATE = "INVALID_RESOURCE_STATE",
114
127
  NOT_AUTHORIZED = "NOT_AUTHORIZED",
@@ -123,6 +136,9 @@ export declare enum ErrorCode {
123
136
  SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE = "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE",
124
137
  STATE_TRANSITION_FAILURE = "STATE_TRANSITION_FAILURE"
125
138
  }
139
+ /**
140
+ * @public
141
+ */
126
142
  export declare enum ErrorResourceType {
127
143
  API_GATEWAY = "API_GATEWAY",
128
144
  APPLICATION = "APPLICATION",
@@ -145,6 +161,7 @@ export declare enum ErrorResourceType {
145
161
  VPC_LINK = "VPC_LINK"
146
162
  }
147
163
  /**
164
+ * @public
148
165
  * <p>Error associated with a resource returned for a Get or List resource response. </p>
149
166
  */
150
167
  export interface ErrorResponse {
@@ -173,10 +190,14 @@ export interface ErrorResponse {
173
190
  */
174
191
  AdditionalDetails?: Record<string, string>;
175
192
  }
193
+ /**
194
+ * @public
195
+ */
176
196
  export declare enum ProxyType {
177
197
  API_GATEWAY = "API_GATEWAY"
178
198
  }
179
199
  /**
200
+ * @public
180
201
  * <p>The list of <code>ApplicationSummary</code> objects. </p>
181
202
  */
182
203
  export interface ApplicationSummary {
@@ -239,6 +260,7 @@ export interface ApplicationSummary {
239
260
  CreatedTime?: Date;
240
261
  }
241
262
  /**
263
+ * @public
242
264
  * <p>Updating or deleting a resource can cause an inconsistent state.</p>
243
265
  */
244
266
  export declare class ConflictException extends __BaseException {
@@ -258,6 +280,9 @@ export declare class ConflictException extends __BaseException {
258
280
  */
259
281
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
260
282
  }
283
+ /**
284
+ * @public
285
+ */
261
286
  export interface CreateApplicationRequest {
262
287
  /**
263
288
  * <p>The name to use for the application. </p>
@@ -290,6 +315,9 @@ export interface CreateApplicationRequest {
290
315
  */
291
316
  ClientToken?: string;
292
317
  }
318
+ /**
319
+ * @public
320
+ */
293
321
  export interface CreateApplicationResponse {
294
322
  /**
295
323
  * <p>The name of the application.</p>
@@ -352,6 +380,7 @@ export interface CreateApplicationResponse {
352
380
  CreatedTime?: Date;
353
381
  }
354
382
  /**
383
+ * @public
355
384
  * <p>An unexpected error occurred while processing the request.</p>
356
385
  */
357
386
  export declare class InternalServerException extends __BaseException {
@@ -364,6 +393,7 @@ export declare class InternalServerException extends __BaseException {
364
393
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
365
394
  }
366
395
  /**
396
+ * @public
367
397
  * <p>The request references a resource that does not exist. </p>
368
398
  */
369
399
  export declare class ResourceNotFoundException extends __BaseException {
@@ -384,6 +414,7 @@ export declare class ResourceNotFoundException extends __BaseException {
384
414
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
385
415
  }
386
416
  /**
417
+ * @public
387
418
  * <p>The request would cause a service quota to be exceeded. </p>
388
419
  */
389
420
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -414,6 +445,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
414
445
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
415
446
  }
416
447
  /**
448
+ * @public
417
449
  * <p>Request was denied because the request was throttled. </p>
418
450
  */
419
451
  export declare class ThrottlingException extends __BaseException {
@@ -440,6 +472,7 @@ export declare class ThrottlingException extends __BaseException {
440
472
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
441
473
  }
442
474
  /**
475
+ * @public
443
476
  * <p>The input does not satisfy the constraints specified by an Amazon Web Service.
444
477
  * </p>
445
478
  */
@@ -452,10 +485,16 @@ export declare class ValidationException extends __BaseException {
452
485
  */
453
486
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
454
487
  }
488
+ /**
489
+ * @public
490
+ */
455
491
  export declare enum NetworkFabricType {
456
492
  NONE = "NONE",
457
493
  TRANSIT_GATEWAY = "TRANSIT_GATEWAY"
458
494
  }
495
+ /**
496
+ * @public
497
+ */
459
498
  export interface CreateEnvironmentRequest {
460
499
  /**
461
500
  * <p>The name of the environment.</p>
@@ -479,12 +518,18 @@ export interface CreateEnvironmentRequest {
479
518
  */
480
519
  ClientToken?: string;
481
520
  }
521
+ /**
522
+ * @public
523
+ */
482
524
  export declare enum EnvironmentState {
483
525
  ACTIVE = "ACTIVE",
484
526
  CREATING = "CREATING",
485
527
  DELETING = "DELETING",
486
528
  FAILED = "FAILED"
487
529
  }
530
+ /**
531
+ * @public
532
+ */
488
533
  export interface CreateEnvironmentResponse {
489
534
  /**
490
535
  * <p>The name of the environment.</p>
@@ -527,11 +572,15 @@ export interface CreateEnvironmentResponse {
527
572
  */
528
573
  CreatedTime?: Date;
529
574
  }
575
+ /**
576
+ * @public
577
+ */
530
578
  export declare enum RouteActivationState {
531
579
  ACTIVE = "ACTIVE",
532
580
  INACTIVE = "INACTIVE"
533
581
  }
534
582
  /**
583
+ * @public
535
584
  * <p> The configuration for the default route type. </p>
536
585
  */
537
586
  export interface DefaultRouteInput {
@@ -541,10 +590,16 @@ export interface DefaultRouteInput {
541
590
  */
542
591
  ActivationState?: RouteActivationState | string;
543
592
  }
593
+ /**
594
+ * @public
595
+ */
544
596
  export declare enum RouteType {
545
597
  DEFAULT = "DEFAULT",
546
598
  URI_PATH = "URI_PATH"
547
599
  }
600
+ /**
601
+ * @public
602
+ */
548
603
  export declare enum HttpMethod {
549
604
  DELETE = "DELETE",
550
605
  GET = "GET",
@@ -555,6 +610,7 @@ export declare enum HttpMethod {
555
610
  PUT = "PUT"
556
611
  }
557
612
  /**
613
+ * @public
558
614
  * <p>The configuration for the URI path route type. </p>
559
615
  */
560
616
  export interface UriPathRouteInput {
@@ -580,6 +636,9 @@ export interface UriPathRouteInput {
580
636
  */
581
637
  IncludeChildPaths?: boolean;
582
638
  }
639
+ /**
640
+ * @public
641
+ */
583
642
  export interface CreateRouteRequest {
584
643
  /**
585
644
  * <p>The ID of the environment in which the route is created.</p>
@@ -619,6 +678,9 @@ export interface CreateRouteRequest {
619
678
  */
620
679
  ClientToken?: string;
621
680
  }
681
+ /**
682
+ * @public
683
+ */
622
684
  export declare enum RouteState {
623
685
  ACTIVE = "ACTIVE",
624
686
  CREATING = "CREATING",
@@ -627,6 +689,9 @@ export declare enum RouteState {
627
689
  INACTIVE = "INACTIVE",
628
690
  UPDATING = "UPDATING"
629
691
  }
692
+ /**
693
+ * @public
694
+ */
630
695
  export interface CreateRouteResponse {
631
696
  /**
632
697
  * <p>The unique identifier of the route.</p>
@@ -685,11 +750,15 @@ export interface CreateRouteResponse {
685
750
  */
686
751
  CreatedTime?: Date;
687
752
  }
753
+ /**
754
+ * @public
755
+ */
688
756
  export declare enum ServiceEndpointType {
689
757
  LAMBDA = "LAMBDA",
690
758
  URL = "URL"
691
759
  }
692
760
  /**
761
+ * @public
693
762
  * <p>The input for the Lambda endpoint type. </p>
694
763
  */
695
764
  export interface LambdaEndpointInput {
@@ -699,6 +768,7 @@ export interface LambdaEndpointInput {
699
768
  Arn: string | undefined;
700
769
  }
701
770
  /**
771
+ * @public
702
772
  * <p>The configuration for the URL endpoint type. </p>
703
773
  */
704
774
  export interface UrlEndpointInput {
@@ -716,6 +786,9 @@ export interface UrlEndpointInput {
716
786
  */
717
787
  HealthUrl?: string;
718
788
  }
789
+ /**
790
+ * @public
791
+ */
719
792
  export interface CreateServiceRequest {
720
793
  /**
721
794
  * <p>The name of the service.</p>
@@ -762,12 +835,18 @@ export interface CreateServiceRequest {
762
835
  */
763
836
  ClientToken?: string;
764
837
  }
838
+ /**
839
+ * @public
840
+ */
765
841
  export declare enum ServiceState {
766
842
  ACTIVE = "ACTIVE",
767
843
  CREATING = "CREATING",
768
844
  DELETING = "DELETING",
769
845
  FAILED = "FAILED"
770
846
  }
847
+ /**
848
+ * @public
849
+ */
771
850
  export interface CreateServiceResponse {
772
851
  /**
773
852
  * <p>The unique identifier of the service.</p>
@@ -834,6 +913,9 @@ export interface CreateServiceResponse {
834
913
  */
835
914
  CreatedTime?: Date;
836
915
  }
916
+ /**
917
+ * @public
918
+ */
837
919
  export interface DeleteApplicationRequest {
838
920
  /**
839
921
  * <p>The ID of the environment. </p>
@@ -844,6 +926,9 @@ export interface DeleteApplicationRequest {
844
926
  */
845
927
  ApplicationIdentifier: string | undefined;
846
928
  }
929
+ /**
930
+ * @public
931
+ */
847
932
  export interface DeleteApplicationResponse {
848
933
  /**
849
934
  * <p>The name of the application.</p>
@@ -870,12 +955,18 @@ export interface DeleteApplicationResponse {
870
955
  */
871
956
  LastUpdatedTime?: Date;
872
957
  }
958
+ /**
959
+ * @public
960
+ */
873
961
  export interface DeleteEnvironmentRequest {
874
962
  /**
875
963
  * <p>The ID of the environment. </p>
876
964
  */
877
965
  EnvironmentIdentifier: string | undefined;
878
966
  }
967
+ /**
968
+ * @public
969
+ */
879
970
  export interface DeleteEnvironmentResponse {
880
971
  /**
881
972
  * <p>The name of the environment.</p>
@@ -898,14 +989,23 @@ export interface DeleteEnvironmentResponse {
898
989
  */
899
990
  LastUpdatedTime?: Date;
900
991
  }
992
+ /**
993
+ * @public
994
+ */
901
995
  export interface DeleteResourcePolicyRequest {
902
996
  /**
903
997
  * <p>Amazon Resource Name (ARN) of the resource associated with the policy. </p>
904
998
  */
905
999
  Identifier: string | undefined;
906
1000
  }
1001
+ /**
1002
+ * @public
1003
+ */
907
1004
  export interface DeleteResourcePolicyResponse {
908
1005
  }
1006
+ /**
1007
+ * @public
1008
+ */
909
1009
  export interface DeleteRouteRequest {
910
1010
  /**
911
1011
  * <p>The ID of the environment to delete the route from.</p>
@@ -920,6 +1020,9 @@ export interface DeleteRouteRequest {
920
1020
  */
921
1021
  RouteIdentifier: string | undefined;
922
1022
  }
1023
+ /**
1024
+ * @public
1025
+ */
923
1026
  export interface DeleteRouteResponse {
924
1027
  /**
925
1028
  * <p>The ID of the route to delete.</p>
@@ -946,6 +1049,9 @@ export interface DeleteRouteResponse {
946
1049
  */
947
1050
  LastUpdatedTime?: Date;
948
1051
  }
1052
+ /**
1053
+ * @public
1054
+ */
949
1055
  export interface DeleteServiceRequest {
950
1056
  /**
951
1057
  * <p>The ID of the environment that the service is in.</p>
@@ -965,6 +1071,9 @@ export interface DeleteServiceRequest {
965
1071
  */
966
1072
  ServiceIdentifier: string | undefined;
967
1073
  }
1074
+ /**
1075
+ * @public
1076
+ */
968
1077
  export interface DeleteServiceResponse {
969
1078
  /**
970
1079
  * <p>The unique identifier of the service.</p>
@@ -996,6 +1105,7 @@ export interface DeleteServiceResponse {
996
1105
  LastUpdatedTime?: Date;
997
1106
  }
998
1107
  /**
1108
+ * @public
999
1109
  * <p>The summary information for environments as a response to <code>ListEnvironments</code>.
1000
1110
  * </p>
1001
1111
  */
@@ -1050,6 +1160,7 @@ export interface EnvironmentSummary {
1050
1160
  CreatedTime?: Date;
1051
1161
  }
1052
1162
  /**
1163
+ * @public
1053
1164
  * <p>Provides summary information for the <code>EnvironmentVpc</code> resource as a response to
1054
1165
  * <code>ListEnvironmentVpc</code>.</p>
1055
1166
  */
@@ -1083,6 +1194,9 @@ export interface EnvironmentVpc {
1083
1194
  */
1084
1195
  CreatedTime?: Date;
1085
1196
  }
1197
+ /**
1198
+ * @public
1199
+ */
1086
1200
  export interface GetApplicationRequest {
1087
1201
  /**
1088
1202
  * <p>The ID of the environment. </p>
@@ -1093,6 +1207,9 @@ export interface GetApplicationRequest {
1093
1207
  */
1094
1208
  ApplicationIdentifier: string | undefined;
1095
1209
  }
1210
+ /**
1211
+ * @public
1212
+ */
1096
1213
  export interface GetApplicationResponse {
1097
1214
  /**
1098
1215
  * <p>The name of the application.</p>
@@ -1152,12 +1269,18 @@ export interface GetApplicationResponse {
1152
1269
  */
1153
1270
  CreatedTime?: Date;
1154
1271
  }
1272
+ /**
1273
+ * @public
1274
+ */
1155
1275
  export interface GetEnvironmentRequest {
1156
1276
  /**
1157
1277
  * <p>The ID of the environment.</p>
1158
1278
  */
1159
1279
  EnvironmentIdentifier: string | undefined;
1160
1280
  }
1281
+ /**
1282
+ * @public
1283
+ */
1161
1284
  export interface GetEnvironmentResponse {
1162
1285
  /**
1163
1286
  * <p>The name of the environment.</p>
@@ -1208,18 +1331,27 @@ export interface GetEnvironmentResponse {
1208
1331
  */
1209
1332
  CreatedTime?: Date;
1210
1333
  }
1334
+ /**
1335
+ * @public
1336
+ */
1211
1337
  export interface GetResourcePolicyRequest {
1212
1338
  /**
1213
1339
  * <p>The Amazon Resource Name (ARN) of the resource associated with the policy. </p>
1214
1340
  */
1215
1341
  Identifier: string | undefined;
1216
1342
  }
1343
+ /**
1344
+ * @public
1345
+ */
1217
1346
  export interface GetResourcePolicyResponse {
1218
1347
  /**
1219
1348
  * <p>A JSON-formatted string for an Amazon Web Services resource-based policy. </p>
1220
1349
  */
1221
1350
  Policy?: string;
1222
1351
  }
1352
+ /**
1353
+ * @public
1354
+ */
1223
1355
  export interface GetRouteRequest {
1224
1356
  /**
1225
1357
  * <p>The ID of the environment.</p>
@@ -1234,6 +1366,9 @@ export interface GetRouteRequest {
1234
1366
  */
1235
1367
  RouteIdentifier: string | undefined;
1236
1368
  }
1369
+ /**
1370
+ * @public
1371
+ */
1237
1372
  export interface GetRouteResponse {
1238
1373
  /**
1239
1374
  * <p>The unique identifier of the route.</p>
@@ -1314,6 +1449,9 @@ export interface GetRouteResponse {
1314
1449
  */
1315
1450
  CreatedTime?: Date;
1316
1451
  }
1452
+ /**
1453
+ * @public
1454
+ */
1317
1455
  export interface GetServiceRequest {
1318
1456
  /**
1319
1457
  * <p>The ID of the environment.</p>
@@ -1329,6 +1467,7 @@ export interface GetServiceRequest {
1329
1467
  ServiceIdentifier: string | undefined;
1330
1468
  }
1331
1469
  /**
1470
+ * @public
1332
1471
  * <p>The configuration for the Lambda endpoint type. </p>
1333
1472
  */
1334
1473
  export interface LambdaEndpointConfig {
@@ -1338,6 +1477,7 @@ export interface LambdaEndpointConfig {
1338
1477
  Arn?: string;
1339
1478
  }
1340
1479
  /**
1480
+ * @public
1341
1481
  * <p>The configuration for the URL endpoint type. </p>
1342
1482
  */
1343
1483
  export interface UrlEndpointConfig {
@@ -1350,6 +1490,9 @@ export interface UrlEndpointConfig {
1350
1490
  */
1351
1491
  HealthUrl?: string;
1352
1492
  }
1493
+ /**
1494
+ * @public
1495
+ */
1353
1496
  export interface GetServiceResponse {
1354
1497
  /**
1355
1498
  * <p>The unique identifier of the service.</p>
@@ -1425,6 +1568,7 @@ export interface GetServiceResponse {
1425
1568
  CreatedTime?: Date;
1426
1569
  }
1427
1570
  /**
1571
+ * @public
1428
1572
  * <p>The resource policy is not valid.</p>
1429
1573
  */
1430
1574
  export declare class InvalidResourcePolicyException extends __BaseException {
@@ -1437,6 +1581,7 @@ export declare class InvalidResourcePolicyException extends __BaseException {
1437
1581
  constructor(opts: __ExceptionOptionType<InvalidResourcePolicyException, __BaseException>);
1438
1582
  }
1439
1583
  /**
1584
+ * @public
1440
1585
  * <p>The summary for the Lambda endpoint type. </p>
1441
1586
  */
1442
1587
  export interface LambdaEndpointSummary {
@@ -1445,6 +1590,9 @@ export interface LambdaEndpointSummary {
1445
1590
  */
1446
1591
  Arn?: string;
1447
1592
  }
1593
+ /**
1594
+ * @public
1595
+ */
1448
1596
  export interface ListApplicationsRequest {
1449
1597
  /**
1450
1598
  * <p>The ID of the environment. </p>
@@ -1460,6 +1608,9 @@ export interface ListApplicationsRequest {
1460
1608
  */
1461
1609
  MaxResults?: number;
1462
1610
  }
1611
+ /**
1612
+ * @public
1613
+ */
1463
1614
  export interface ListApplicationsResponse {
1464
1615
  /**
1465
1616
  * <p>The list of <code>ApplicationSummary</code> objects. </p>
@@ -1470,6 +1621,9 @@ export interface ListApplicationsResponse {
1470
1621
  */
1471
1622
  NextToken?: string;
1472
1623
  }
1624
+ /**
1625
+ * @public
1626
+ */
1473
1627
  export interface ListEnvironmentsRequest {
1474
1628
  /**
1475
1629
  * <p>The token for the next page of results.</p>
@@ -1481,6 +1635,9 @@ export interface ListEnvironmentsRequest {
1481
1635
  */
1482
1636
  MaxResults?: number;
1483
1637
  }
1638
+ /**
1639
+ * @public
1640
+ */
1484
1641
  export interface ListEnvironmentsResponse {
1485
1642
  /**
1486
1643
  * <p>The list of <code>EnvironmentSummary</code> objects. </p>
@@ -1491,6 +1648,9 @@ export interface ListEnvironmentsResponse {
1491
1648
  */
1492
1649
  NextToken?: string;
1493
1650
  }
1651
+ /**
1652
+ * @public
1653
+ */
1494
1654
  export interface ListEnvironmentVpcsRequest {
1495
1655
  /**
1496
1656
  * <p>The ID of the environment. </p>
@@ -1506,6 +1666,9 @@ export interface ListEnvironmentVpcsRequest {
1506
1666
  */
1507
1667
  MaxResults?: number;
1508
1668
  }
1669
+ /**
1670
+ * @public
1671
+ */
1509
1672
  export interface ListEnvironmentVpcsResponse {
1510
1673
  /**
1511
1674
  * <p>The list of <code>EnvironmentVpc</code> objects. </p>
@@ -1516,6 +1679,9 @@ export interface ListEnvironmentVpcsResponse {
1516
1679
  */
1517
1680
  NextToken?: string;
1518
1681
  }
1682
+ /**
1683
+ * @public
1684
+ */
1519
1685
  export interface ListRoutesRequest {
1520
1686
  /**
1521
1687
  * <p>The ID of the environment. </p>
@@ -1536,6 +1702,7 @@ export interface ListRoutesRequest {
1536
1702
  MaxResults?: number;
1537
1703
  }
1538
1704
  /**
1705
+ * @public
1539
1706
  * <p>The summary information for the routes as a response to <code>ListRoutes</code>. </p>
1540
1707
  */
1541
1708
  export interface RouteSummary {
@@ -1612,6 +1779,9 @@ export interface RouteSummary {
1612
1779
  */
1613
1780
  CreatedTime?: Date;
1614
1781
  }
1782
+ /**
1783
+ * @public
1784
+ */
1615
1785
  export interface ListRoutesResponse {
1616
1786
  /**
1617
1787
  * <p>The list of <code>RouteSummary</code> objects. </p>
@@ -1622,6 +1792,9 @@ export interface ListRoutesResponse {
1622
1792
  */
1623
1793
  NextToken?: string;
1624
1794
  }
1795
+ /**
1796
+ * @public
1797
+ */
1625
1798
  export interface ListServicesRequest {
1626
1799
  /**
1627
1800
  * <p>The ID of the environment. </p>
@@ -1642,6 +1815,7 @@ export interface ListServicesRequest {
1642
1815
  MaxResults?: number;
1643
1816
  }
1644
1817
  /**
1818
+ * @public
1645
1819
  * <p>The summary of the configuration for the URL endpoint type. </p>
1646
1820
  */
1647
1821
  export interface UrlEndpointSummary {
@@ -1660,6 +1834,7 @@ export interface UrlEndpointSummary {
1660
1834
  HealthUrl?: string;
1661
1835
  }
1662
1836
  /**
1837
+ * @public
1663
1838
  * <p>A summary for the service as a response to <code>ListServices</code>. </p>
1664
1839
  */
1665
1840
  export interface ServiceSummary {
@@ -1732,6 +1907,9 @@ export interface ServiceSummary {
1732
1907
  */
1733
1908
  CreatedTime?: Date;
1734
1909
  }
1910
+ /**
1911
+ * @public
1912
+ */
1735
1913
  export interface ListServicesResponse {
1736
1914
  /**
1737
1915
  * <p> The list of <code>ServiceSummary</code> objects. </p>
@@ -1742,18 +1920,27 @@ export interface ListServicesResponse {
1742
1920
  */
1743
1921
  NextToken?: string;
1744
1922
  }
1923
+ /**
1924
+ * @public
1925
+ */
1745
1926
  export interface ListTagsForResourceRequest {
1746
1927
  /**
1747
1928
  * <p>The Amazon Resource Name (ARN) of the resource. </p>
1748
1929
  */
1749
1930
  ResourceArn: string | undefined;
1750
1931
  }
1932
+ /**
1933
+ * @public
1934
+ */
1751
1935
  export interface ListTagsForResourceResponse {
1752
1936
  /**
1753
1937
  * <p>The list of tags assigned to the resource. </p>
1754
1938
  */
1755
1939
  Tags?: Record<string, string>;
1756
1940
  }
1941
+ /**
1942
+ * @public
1943
+ */
1757
1944
  export interface PutResourcePolicyRequest {
1758
1945
  /**
1759
1946
  * <p>The Amazon Resource Name (ARN) of the resource to which the policy is being attached.
@@ -1765,8 +1952,14 @@ export interface PutResourcePolicyRequest {
1765
1952
  */
1766
1953
  Policy: string | undefined;
1767
1954
  }
1955
+ /**
1956
+ * @public
1957
+ */
1768
1958
  export interface PutResourcePolicyResponse {
1769
1959
  }
1960
+ /**
1961
+ * @public
1962
+ */
1770
1963
  export interface TagResourceRequest {
1771
1964
  /**
1772
1965
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -1777,8 +1970,14 @@ export interface TagResourceRequest {
1777
1970
  */
1778
1971
  Tags: Record<string, string> | undefined;
1779
1972
  }
1973
+ /**
1974
+ * @public
1975
+ */
1780
1976
  export interface TagResourceResponse {
1781
1977
  }
1978
+ /**
1979
+ * @public
1980
+ */
1782
1981
  export interface UntagResourceRequest {
1783
1982
  /**
1784
1983
  * <p>The Amazon Resource Name (ARN) of the resource. </p>
@@ -1789,8 +1988,14 @@ export interface UntagResourceRequest {
1789
1988
  */
1790
1989
  TagKeys: string[] | undefined;
1791
1990
  }
1991
+ /**
1992
+ * @public
1993
+ */
1792
1994
  export interface UntagResourceResponse {
1793
1995
  }
1996
+ /**
1997
+ * @public
1998
+ */
1794
1999
  export interface UpdateRouteRequest {
1795
2000
  /**
1796
2001
  * <p> The ID of the environment in which the route is being updated. </p>
@@ -1810,6 +2015,9 @@ export interface UpdateRouteRequest {
1810
2015
  */
1811
2016
  ActivationState: RouteActivationState | string | undefined;
1812
2017
  }
2018
+ /**
2019
+ * @public
2020
+ */
1813
2021
  export interface UpdateRouteResponse {
1814
2022
  /**
1815
2023
  * <p> The unique identifier of the route. </p>