@aws-sdk/client-migration-hub-refactor-spaces 3.109.0 → 3.117.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.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/MigrationHubRefactorSpaces.js +15 -0
- package/dist-cjs/commands/UpdateRouteCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +25 -6
- package/dist-cjs/protocols/Aws_restJson1.js +133 -1
- package/dist-es/MigrationHubRefactorSpaces.js +15 -0
- package/dist-es/commands/UpdateRouteCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +17 -4
- package/dist-es/protocols/Aws_restJson1.js +156 -1
- package/dist-types/MigrationHubRefactorSpaces.d.ts +25 -8
- package/dist-types/MigrationHubRefactorSpacesClient.d.ts +3 -2
- package/dist-types/commands/CreateRouteCommand.d.ts +16 -8
- package/dist-types/commands/UpdateRouteCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +116 -9
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/MigrationHubRefactorSpaces.d.ts +5 -0
- package/dist-types/ts3.4/MigrationHubRefactorSpacesClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/UpdateRouteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
- package/package.json +26 -26
|
@@ -22,6 +22,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
22
22
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
23
23
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
24
24
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
25
|
+
import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/UpdateRouteCommand";
|
|
25
26
|
import { MigrationHubRefactorSpacesClient } from "./MigrationHubRefactorSpacesClient";
|
|
26
27
|
/**
|
|
27
28
|
* <fullname>Amazon Web Services Migration Hub Refactor Spaces</fullname>
|
|
@@ -61,6 +62,10 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
61
62
|
* the application. If an application does not have any routes, then the first route must be
|
|
62
63
|
* created as a <code>DEFAULT</code>
|
|
63
64
|
* <code>RouteType</code>.</p>
|
|
65
|
+
* <p>When created, the default route defaults to an active state so state is not a required
|
|
66
|
+
* input. However, like all other state values the state of the default route can be updated
|
|
67
|
+
* after creation, but only when all other routes are also inactive. Conversely, no route can be
|
|
68
|
+
* active without the default route also being active.</p>
|
|
64
69
|
* <p>When you create a route, Refactor Spaces configures the Amazon API Gateway to send traffic
|
|
65
70
|
* to the target service as follows:</p>
|
|
66
71
|
* <ul>
|
|
@@ -78,24 +83,28 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
78
83
|
* API Gateway to invoke the function.</p>
|
|
79
84
|
* </li>
|
|
80
85
|
* </ul>
|
|
81
|
-
* <p>A one-time health check is performed on the service when the route is
|
|
82
|
-
*
|
|
86
|
+
* <p>A one-time health check is performed on the service when either the route is updated from
|
|
87
|
+
* inactive to active, or when it is created with an active state. If the health check fails, the
|
|
88
|
+
* route transitions the route state to <code>FAILED</code>, an error code of
|
|
89
|
+
* <code>SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE</code> is provided, and no traffic is sent to
|
|
83
90
|
* the service.</p>
|
|
84
91
|
* <p>For Lambda functions, the Lambda function state is checked. If the
|
|
85
92
|
* function is not active, the function configuration is updated so that Lambda
|
|
86
93
|
* resources are provisioned. If the Lambda state is <code>Failed</code>, then the
|
|
87
94
|
* route creation fails. For more information, see the <a href="https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunctionConfiguration.html#SSS-GetFunctionConfiguration-response-State">GetFunctionConfiguration's State response parameter</a> in the <i>Lambda Developer Guide</i>.</p>
|
|
88
|
-
* <p>For
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
*
|
|
95
|
+
* <p>For Lambda endpoints, a check is performed to determine that a Lambda function with the
|
|
96
|
+
* specified ARN exists. If it does not exist, the health check fails. For public URLs, a
|
|
97
|
+
* connection is opened to the public endpoint. If the URL is not reachable, the health check
|
|
98
|
+
* fails. </p>
|
|
99
|
+
* <p>For private URLS, a target group is created on the Elastic Load Balancing and the target
|
|
100
|
+
* group health check is run. The <code>HealthCheckProtocol</code>, <code>HealthCheckPort</code>,
|
|
101
|
+
* and <code>HealthCheckPath</code> are the same protocol, port, and path specified in the URL or
|
|
93
102
|
* health URL, if used. All other settings use the default values, as described in <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-health-checks.html">Health checks
|
|
94
103
|
* for your target groups</a>. The health check is considered successful if at least one
|
|
95
104
|
* target within the target group transitions to a healthy state.</p>
|
|
96
105
|
* <p>Services can have HTTP or HTTPS URL endpoints. For HTTPS URLs, publicly-signed
|
|
97
106
|
* certificates are supported. Private Certificate Authorities (CAs) are permitted only if the
|
|
98
|
-
* CA's domain is publicly resolvable.</p>
|
|
107
|
+
* CA's domain is also publicly resolvable.</p>
|
|
99
108
|
*/
|
|
100
109
|
createRoute(args: CreateRouteCommandInput, options?: __HttpHandlerOptions): Promise<CreateRouteCommandOutput>;
|
|
101
110
|
createRoute(args: CreateRouteCommandInput, cb: (err: any, data?: CreateRouteCommandOutput) => void): void;
|
|
@@ -246,4 +255,12 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
246
255
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
247
256
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
248
257
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
258
|
+
/**
|
|
259
|
+
* <p>
|
|
260
|
+
* Updates an Amazon Web Services Migration Hub Refactor Spaces route.
|
|
261
|
+
* </p>
|
|
262
|
+
*/
|
|
263
|
+
updateRoute(args: UpdateRouteCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRouteCommandOutput>;
|
|
264
|
+
updateRoute(args: UpdateRouteCommandInput, cb: (err: any, data?: UpdateRouteCommandOutput) => void): void;
|
|
265
|
+
updateRoute(args: UpdateRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRouteCommandOutput) => void): void;
|
|
249
266
|
}
|
|
@@ -29,8 +29,9 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
29
29
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
30
30
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
31
31
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
32
|
-
|
|
33
|
-
export declare type
|
|
32
|
+
import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/UpdateRouteCommand";
|
|
33
|
+
export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateEnvironmentCommandInput | CreateRouteCommandInput | CreateServiceCommandInput | DeleteApplicationCommandInput | DeleteEnvironmentCommandInput | DeleteResourcePolicyCommandInput | DeleteRouteCommandInput | DeleteServiceCommandInput | GetApplicationCommandInput | GetEnvironmentCommandInput | GetResourcePolicyCommandInput | GetRouteCommandInput | GetServiceCommandInput | ListApplicationsCommandInput | ListEnvironmentVpcsCommandInput | ListEnvironmentsCommandInput | ListRoutesCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | PutResourcePolicyCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateRouteCommandInput;
|
|
34
|
+
export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateEnvironmentCommandOutput | CreateRouteCommandOutput | CreateServiceCommandOutput | DeleteApplicationCommandOutput | DeleteEnvironmentCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRouteCommandOutput | DeleteServiceCommandOutput | GetApplicationCommandOutput | GetEnvironmentCommandOutput | GetResourcePolicyCommandOutput | GetRouteCommandOutput | GetServiceCommandOutput | ListApplicationsCommandOutput | ListEnvironmentVpcsCommandOutput | ListEnvironmentsCommandOutput | ListRoutesCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | PutResourcePolicyCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateRouteCommandOutput;
|
|
34
35
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
35
36
|
/**
|
|
36
37
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -12,6 +12,10 @@ export interface CreateRouteCommandOutput extends CreateRouteResponse, __Metadat
|
|
|
12
12
|
* the application. If an application does not have any routes, then the first route must be
|
|
13
13
|
* created as a <code>DEFAULT</code>
|
|
14
14
|
* <code>RouteType</code>.</p>
|
|
15
|
+
* <p>When created, the default route defaults to an active state so state is not a required
|
|
16
|
+
* input. However, like all other state values the state of the default route can be updated
|
|
17
|
+
* after creation, but only when all other routes are also inactive. Conversely, no route can be
|
|
18
|
+
* active without the default route also being active.</p>
|
|
15
19
|
* <p>When you create a route, Refactor Spaces configures the Amazon API Gateway to send traffic
|
|
16
20
|
* to the target service as follows:</p>
|
|
17
21
|
* <ul>
|
|
@@ -29,24 +33,28 @@ export interface CreateRouteCommandOutput extends CreateRouteResponse, __Metadat
|
|
|
29
33
|
* API Gateway to invoke the function.</p>
|
|
30
34
|
* </li>
|
|
31
35
|
* </ul>
|
|
32
|
-
* <p>A one-time health check is performed on the service when the route is
|
|
33
|
-
*
|
|
36
|
+
* <p>A one-time health check is performed on the service when either the route is updated from
|
|
37
|
+
* inactive to active, or when it is created with an active state. If the health check fails, the
|
|
38
|
+
* route transitions the route state to <code>FAILED</code>, an error code of
|
|
39
|
+
* <code>SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE</code> is provided, and no traffic is sent to
|
|
34
40
|
* the service.</p>
|
|
35
41
|
* <p>For Lambda functions, the Lambda function state is checked. If the
|
|
36
42
|
* function is not active, the function configuration is updated so that Lambda
|
|
37
43
|
* resources are provisioned. If the Lambda state is <code>Failed</code>, then the
|
|
38
44
|
* route creation fails. For more information, see the <a href="https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunctionConfiguration.html#SSS-GetFunctionConfiguration-response-State">GetFunctionConfiguration's State response parameter</a> in the <i>Lambda Developer Guide</i>.</p>
|
|
39
|
-
* <p>For
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
45
|
+
* <p>For Lambda endpoints, a check is performed to determine that a Lambda function with the
|
|
46
|
+
* specified ARN exists. If it does not exist, the health check fails. For public URLs, a
|
|
47
|
+
* connection is opened to the public endpoint. If the URL is not reachable, the health check
|
|
48
|
+
* fails. </p>
|
|
49
|
+
* <p>For private URLS, a target group is created on the Elastic Load Balancing and the target
|
|
50
|
+
* group health check is run. The <code>HealthCheckProtocol</code>, <code>HealthCheckPort</code>,
|
|
51
|
+
* and <code>HealthCheckPath</code> are the same protocol, port, and path specified in the URL or
|
|
44
52
|
* health URL, if used. All other settings use the default values, as described in <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-health-checks.html">Health checks
|
|
45
53
|
* for your target groups</a>. The health check is considered successful if at least one
|
|
46
54
|
* target within the target group transitions to a healthy state.</p>
|
|
47
55
|
* <p>Services can have HTTP or HTTPS URL endpoints. For HTTPS URLs, publicly-signed
|
|
48
56
|
* certificates are supported. Private Certificate Authorities (CAs) are permitted only if the
|
|
49
|
-
* CA's domain is publicly resolvable.</p>
|
|
57
|
+
* CA's domain is also publicly resolvable.</p>
|
|
50
58
|
* @example
|
|
51
59
|
* Use a bare-bones client and the command you need to make an API call.
|
|
52
60
|
* ```javascript
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
|
|
4
|
+
import { UpdateRouteRequest, UpdateRouteResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateRouteCommandInput extends UpdateRouteRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateRouteCommandOutput extends UpdateRouteResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>
|
|
11
|
+
* Updates an Amazon Web Services Migration Hub Refactor Spaces route.
|
|
12
|
+
* </p>
|
|
13
|
+
* @example
|
|
14
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
15
|
+
* ```javascript
|
|
16
|
+
* import { MigrationHubRefactorSpacesClient, UpdateRouteCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
17
|
+
* // const { MigrationHubRefactorSpacesClient, UpdateRouteCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
18
|
+
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
19
|
+
* const command = new UpdateRouteCommand(input);
|
|
20
|
+
* const response = await client.send(command);
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* @see {@link UpdateRouteCommandInput} for command's `input` shape.
|
|
24
|
+
* @see {@link UpdateRouteCommandOutput} for command's `response` shape.
|
|
25
|
+
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
export declare class UpdateRouteCommand extends $Command<UpdateRouteCommandInput, UpdateRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
29
|
+
readonly input: UpdateRouteCommandInput;
|
|
30
|
+
constructor(input: UpdateRouteCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRouteCommandInput, UpdateRouteCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -580,13 +580,32 @@ export declare namespace CreateEnvironmentResponse {
|
|
|
580
580
|
*/
|
|
581
581
|
const filterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
|
|
582
582
|
}
|
|
583
|
+
export declare enum RouteActivationState {
|
|
584
|
+
ACTIVE = "ACTIVE",
|
|
585
|
+
INACTIVE = "INACTIVE"
|
|
586
|
+
}
|
|
587
|
+
/**
|
|
588
|
+
* <p>
|
|
589
|
+
* The configuration for the default route type.
|
|
590
|
+
* </p>
|
|
591
|
+
*/
|
|
592
|
+
export interface DefaultRouteInput {
|
|
593
|
+
/**
|
|
594
|
+
* <p>If set to <code>ACTIVE</code>, traffic is forwarded to this route’s service after the
|
|
595
|
+
* route is created. </p>
|
|
596
|
+
*/
|
|
597
|
+
ActivationState?: RouteActivationState | string;
|
|
598
|
+
}
|
|
599
|
+
export declare namespace DefaultRouteInput {
|
|
600
|
+
/**
|
|
601
|
+
* @internal
|
|
602
|
+
*/
|
|
603
|
+
const filterSensitiveLog: (obj: DefaultRouteInput) => any;
|
|
604
|
+
}
|
|
583
605
|
export declare enum RouteType {
|
|
584
606
|
DEFAULT = "DEFAULT",
|
|
585
607
|
URI_PATH = "URI_PATH"
|
|
586
608
|
}
|
|
587
|
-
export declare enum RouteActivationState {
|
|
588
|
-
ACTIVE = "ACTIVE"
|
|
589
|
-
}
|
|
590
609
|
export declare enum HttpMethod {
|
|
591
610
|
DELETE = "DELETE",
|
|
592
611
|
GET = "GET",
|
|
@@ -606,8 +625,8 @@ export interface UriPathRouteInput {
|
|
|
606
625
|
*/
|
|
607
626
|
SourcePath: string | undefined;
|
|
608
627
|
/**
|
|
609
|
-
* <p>
|
|
610
|
-
*
|
|
628
|
+
* <p>If set to <code>ACTIVE</code>, traffic is forwarded to this route’s service after the
|
|
629
|
+
* route is created. </p>
|
|
611
630
|
*/
|
|
612
631
|
ActivationState: RouteActivationState | string | undefined;
|
|
613
632
|
/**
|
|
@@ -649,6 +668,12 @@ export interface CreateRouteRequest {
|
|
|
649
668
|
* on a URI path.</p>
|
|
650
669
|
*/
|
|
651
670
|
RouteType: RouteType | string | undefined;
|
|
671
|
+
/**
|
|
672
|
+
* <p>
|
|
673
|
+
* Configuration for the default route type.
|
|
674
|
+
* </p>
|
|
675
|
+
*/
|
|
676
|
+
DefaultRoute?: DefaultRouteInput;
|
|
652
677
|
/**
|
|
653
678
|
* <p>The configuration for the URI path route type. </p>
|
|
654
679
|
*/
|
|
@@ -713,11 +738,13 @@ export interface CreateRouteResponse {
|
|
|
713
738
|
*/
|
|
714
739
|
ApplicationId?: string;
|
|
715
740
|
/**
|
|
716
|
-
* <p>
|
|
741
|
+
* <p>Configuration for the URI path route type. </p>
|
|
717
742
|
*/
|
|
718
743
|
UriPathRoute?: UriPathRouteInput;
|
|
719
744
|
/**
|
|
720
|
-
* <p>The current state of the route. </
|
|
745
|
+
* <p>The current state of the route. Activation state only allows <code>ACTIVE</code> or
|
|
746
|
+
* <code>INACTIVE</code> as user inputs. <code>FAILED</code> is a route state that is system
|
|
747
|
+
* generated.</p>
|
|
721
748
|
*/
|
|
722
749
|
State?: RouteState | string;
|
|
723
750
|
/**
|
|
@@ -2096,11 +2123,11 @@ export declare namespace PutResourcePolicyResponse {
|
|
|
2096
2123
|
}
|
|
2097
2124
|
export interface TagResourceRequest {
|
|
2098
2125
|
/**
|
|
2099
|
-
* <p>The Amazon Resource Name (ARN) of the resource
|
|
2126
|
+
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
2100
2127
|
*/
|
|
2101
2128
|
ResourceArn: string | undefined;
|
|
2102
2129
|
/**
|
|
2103
|
-
* <p>The new or modified tags for the resource
|
|
2130
|
+
* <p>The new or modified tags for the resource.</p>
|
|
2104
2131
|
*/
|
|
2105
2132
|
Tags: Record<string, string> | undefined;
|
|
2106
2133
|
}
|
|
@@ -2142,3 +2169,83 @@ export declare namespace UntagResourceResponse {
|
|
|
2142
2169
|
*/
|
|
2143
2170
|
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2144
2171
|
}
|
|
2172
|
+
export interface UpdateRouteRequest {
|
|
2173
|
+
/**
|
|
2174
|
+
* <p>
|
|
2175
|
+
* The ID of the environment in which the route is being updated.
|
|
2176
|
+
* </p>
|
|
2177
|
+
*/
|
|
2178
|
+
EnvironmentIdentifier: string | undefined;
|
|
2179
|
+
/**
|
|
2180
|
+
* <p>
|
|
2181
|
+
* The ID of the application within which the route is being updated.
|
|
2182
|
+
* </p>
|
|
2183
|
+
*/
|
|
2184
|
+
ApplicationIdentifier: string | undefined;
|
|
2185
|
+
/**
|
|
2186
|
+
* <p>
|
|
2187
|
+
* The unique identifier of the route to update.
|
|
2188
|
+
* </p>
|
|
2189
|
+
*/
|
|
2190
|
+
RouteIdentifier: string | undefined;
|
|
2191
|
+
/**
|
|
2192
|
+
* <p> If set to <code>ACTIVE</code>, traffic is forwarded to this route’s service after the
|
|
2193
|
+
* route is updated. </p>
|
|
2194
|
+
*/
|
|
2195
|
+
ActivationState: RouteActivationState | string | undefined;
|
|
2196
|
+
}
|
|
2197
|
+
export declare namespace UpdateRouteRequest {
|
|
2198
|
+
/**
|
|
2199
|
+
* @internal
|
|
2200
|
+
*/
|
|
2201
|
+
const filterSensitiveLog: (obj: UpdateRouteRequest) => any;
|
|
2202
|
+
}
|
|
2203
|
+
export interface UpdateRouteResponse {
|
|
2204
|
+
/**
|
|
2205
|
+
* <p>
|
|
2206
|
+
* The unique identifier of the route.
|
|
2207
|
+
* </p>
|
|
2208
|
+
*/
|
|
2209
|
+
RouteId?: string;
|
|
2210
|
+
/**
|
|
2211
|
+
* <p>
|
|
2212
|
+
* The Amazon Resource Name (ARN) of the route. The format for this ARN is
|
|
2213
|
+
* <code>arn:aws:refactor-spaces:<i>region</i>:<i>account-id</i>:<i>resource-type/resource-id</i>
|
|
2214
|
+
* </code>. For more information about ARNs,
|
|
2215
|
+
* see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">
|
|
2216
|
+
* Amazon Resource Names (ARNs)</a> in the
|
|
2217
|
+
* <i>Amazon Web Services General Reference</i>.
|
|
2218
|
+
* </p>
|
|
2219
|
+
*/
|
|
2220
|
+
Arn?: string;
|
|
2221
|
+
/**
|
|
2222
|
+
* <p>
|
|
2223
|
+
* The ID of service in which the route was created. Traffic that matches this route is forwarded to this service.
|
|
2224
|
+
* </p>
|
|
2225
|
+
*/
|
|
2226
|
+
ServiceId?: string;
|
|
2227
|
+
/**
|
|
2228
|
+
* <p>
|
|
2229
|
+
* The ID of the application in which the route is being updated.
|
|
2230
|
+
* </p>
|
|
2231
|
+
*/
|
|
2232
|
+
ApplicationId?: string;
|
|
2233
|
+
/**
|
|
2234
|
+
* <p>
|
|
2235
|
+
* The current state of the route.
|
|
2236
|
+
* </p>
|
|
2237
|
+
*/
|
|
2238
|
+
State?: RouteState | string;
|
|
2239
|
+
/**
|
|
2240
|
+
* <p>
|
|
2241
|
+
* A timestamp that indicates when the route was last updated.
|
|
2242
|
+
* </p>
|
|
2243
|
+
*/
|
|
2244
|
+
LastUpdatedTime?: Date;
|
|
2245
|
+
}
|
|
2246
|
+
export declare namespace UpdateRouteResponse {
|
|
2247
|
+
/**
|
|
2248
|
+
* @internal
|
|
2249
|
+
*/
|
|
2250
|
+
const filterSensitiveLog: (obj: UpdateRouteResponse) => any;
|
|
2251
|
+
}
|
|
@@ -23,6 +23,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
23
23
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
|
|
24
24
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
25
25
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
26
|
+
import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "../commands/UpdateRouteCommand";
|
|
26
27
|
export declare const serializeAws_restJson1CreateApplicationCommand: (input: CreateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
28
|
export declare const serializeAws_restJson1CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
29
|
export declare const serializeAws_restJson1CreateRouteCommand: (input: CreateRouteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -46,6 +47,7 @@ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: L
|
|
|
46
47
|
export declare const serializeAws_restJson1PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
48
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
49
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
export declare const serializeAws_restJson1UpdateRouteCommand: (input: UpdateRouteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
51
|
export declare const deserializeAws_restJson1CreateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApplicationCommandOutput>;
|
|
50
52
|
export declare const deserializeAws_restJson1CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
|
|
51
53
|
export declare const deserializeAws_restJson1CreateRouteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRouteCommandOutput>;
|
|
@@ -69,3 +71,4 @@ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output
|
|
|
69
71
|
export declare const deserializeAws_restJson1PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
|
|
70
72
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
71
73
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
74
|
+
export declare const deserializeAws_restJson1UpdateRouteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRouteCommandOutput>;
|
|
@@ -22,6 +22,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
22
22
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
23
23
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
24
24
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
25
|
+
import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/UpdateRouteCommand";
|
|
25
26
|
import { MigrationHubRefactorSpacesClient } from "./MigrationHubRefactorSpacesClient";
|
|
26
27
|
|
|
27
28
|
export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpacesClient {
|
|
@@ -117,4 +118,8 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
117
118
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
118
119
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
119
120
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
121
|
+
|
|
122
|
+
updateRoute(args: UpdateRouteCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRouteCommandOutput>;
|
|
123
|
+
updateRoute(args: UpdateRouteCommandInput, cb: (err: any, data?: UpdateRouteCommandOutput) => void): void;
|
|
124
|
+
updateRoute(args: UpdateRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRouteCommandOutput) => void): void;
|
|
120
125
|
}
|
|
@@ -29,8 +29,9 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
29
29
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
30
30
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
31
31
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
32
|
-
|
|
33
|
-
export declare type
|
|
32
|
+
import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/UpdateRouteCommand";
|
|
33
|
+
export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateEnvironmentCommandInput | CreateRouteCommandInput | CreateServiceCommandInput | DeleteApplicationCommandInput | DeleteEnvironmentCommandInput | DeleteResourcePolicyCommandInput | DeleteRouteCommandInput | DeleteServiceCommandInput | GetApplicationCommandInput | GetEnvironmentCommandInput | GetResourcePolicyCommandInput | GetRouteCommandInput | GetServiceCommandInput | ListApplicationsCommandInput | ListEnvironmentVpcsCommandInput | ListEnvironmentsCommandInput | ListRoutesCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | PutResourcePolicyCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateRouteCommandInput;
|
|
34
|
+
export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateEnvironmentCommandOutput | CreateRouteCommandOutput | CreateServiceCommandOutput | DeleteApplicationCommandOutput | DeleteEnvironmentCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRouteCommandOutput | DeleteServiceCommandOutput | GetApplicationCommandOutput | GetEnvironmentCommandOutput | GetResourcePolicyCommandOutput | GetRouteCommandOutput | GetServiceCommandOutput | ListApplicationsCommandOutput | ListEnvironmentVpcsCommandOutput | ListEnvironmentsCommandOutput | ListRoutesCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | PutResourcePolicyCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateRouteCommandOutput;
|
|
34
35
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
35
36
|
|
|
36
37
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
|
|
4
|
+
import { UpdateRouteRequest, UpdateRouteResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateRouteCommandInput extends UpdateRouteRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateRouteCommandOutput extends UpdateRouteResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateRouteCommand extends $Command<UpdateRouteCommandInput, UpdateRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateRouteCommandInput;
|
|
12
|
+
constructor(input: UpdateRouteCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRouteCommandInput, UpdateRouteCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -337,13 +337,23 @@ export declare namespace CreateEnvironmentResponse {
|
|
|
337
337
|
|
|
338
338
|
const filterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
|
|
339
339
|
}
|
|
340
|
+
export declare enum RouteActivationState {
|
|
341
|
+
ACTIVE = "ACTIVE",
|
|
342
|
+
INACTIVE = "INACTIVE"
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
export interface DefaultRouteInput {
|
|
346
|
+
|
|
347
|
+
ActivationState?: RouteActivationState | string;
|
|
348
|
+
}
|
|
349
|
+
export declare namespace DefaultRouteInput {
|
|
350
|
+
|
|
351
|
+
const filterSensitiveLog: (obj: DefaultRouteInput) => any;
|
|
352
|
+
}
|
|
340
353
|
export declare enum RouteType {
|
|
341
354
|
DEFAULT = "DEFAULT",
|
|
342
355
|
URI_PATH = "URI_PATH"
|
|
343
356
|
}
|
|
344
|
-
export declare enum RouteActivationState {
|
|
345
|
-
ACTIVE = "ACTIVE"
|
|
346
|
-
}
|
|
347
357
|
export declare enum HttpMethod {
|
|
348
358
|
DELETE = "DELETE",
|
|
349
359
|
GET = "GET",
|
|
@@ -378,6 +388,8 @@ export interface CreateRouteRequest {
|
|
|
378
388
|
|
|
379
389
|
RouteType: RouteType | string | undefined;
|
|
380
390
|
|
|
391
|
+
DefaultRoute?: DefaultRouteInput;
|
|
392
|
+
|
|
381
393
|
UriPathRoute?: UriPathRouteInput;
|
|
382
394
|
|
|
383
395
|
Tags?: Record<string, string>;
|
|
@@ -1208,3 +1220,35 @@ export declare namespace UntagResourceResponse {
|
|
|
1208
1220
|
|
|
1209
1221
|
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1210
1222
|
}
|
|
1223
|
+
export interface UpdateRouteRequest {
|
|
1224
|
+
|
|
1225
|
+
EnvironmentIdentifier: string | undefined;
|
|
1226
|
+
|
|
1227
|
+
ApplicationIdentifier: string | undefined;
|
|
1228
|
+
|
|
1229
|
+
RouteIdentifier: string | undefined;
|
|
1230
|
+
|
|
1231
|
+
ActivationState: RouteActivationState | string | undefined;
|
|
1232
|
+
}
|
|
1233
|
+
export declare namespace UpdateRouteRequest {
|
|
1234
|
+
|
|
1235
|
+
const filterSensitiveLog: (obj: UpdateRouteRequest) => any;
|
|
1236
|
+
}
|
|
1237
|
+
export interface UpdateRouteResponse {
|
|
1238
|
+
|
|
1239
|
+
RouteId?: string;
|
|
1240
|
+
|
|
1241
|
+
Arn?: string;
|
|
1242
|
+
|
|
1243
|
+
ServiceId?: string;
|
|
1244
|
+
|
|
1245
|
+
ApplicationId?: string;
|
|
1246
|
+
|
|
1247
|
+
State?: RouteState | string;
|
|
1248
|
+
|
|
1249
|
+
LastUpdatedTime?: Date;
|
|
1250
|
+
}
|
|
1251
|
+
export declare namespace UpdateRouteResponse {
|
|
1252
|
+
|
|
1253
|
+
const filterSensitiveLog: (obj: UpdateRouteResponse) => any;
|
|
1254
|
+
}
|
|
@@ -23,6 +23,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
23
23
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
|
|
24
24
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
25
25
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
26
|
+
import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "../commands/UpdateRouteCommand";
|
|
26
27
|
export declare const serializeAws_restJson1CreateApplicationCommand: (input: CreateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
28
|
export declare const serializeAws_restJson1CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
29
|
export declare const serializeAws_restJson1CreateRouteCommand: (input: CreateRouteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -46,6 +47,7 @@ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: L
|
|
|
46
47
|
export declare const serializeAws_restJson1PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
48
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
49
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
export declare const serializeAws_restJson1UpdateRouteCommand: (input: UpdateRouteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
51
|
export declare const deserializeAws_restJson1CreateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApplicationCommandOutput>;
|
|
50
52
|
export declare const deserializeAws_restJson1CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
|
|
51
53
|
export declare const deserializeAws_restJson1CreateRouteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRouteCommandOutput>;
|
|
@@ -69,3 +71,4 @@ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output
|
|
|
69
71
|
export declare const deserializeAws_restJson1PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
|
|
70
72
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
71
73
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
74
|
+
export declare const deserializeAws_restJson1UpdateRouteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRouteCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migration-hub-refactor-spaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migration Hub Refactor Spaces Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.117.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.112.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.112.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.110.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.110.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.110.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.110.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.110.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.110.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.110.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.110.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.110.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.110.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.110.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.110.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.110.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.110.0",
|
|
40
|
+
"@aws-sdk/types": "3.110.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.110.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.110.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.110.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.110.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.110.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1",
|