Skip to content

Commit 02e73bb

Browse files
committed
chore(codegen): update STS client
1 parent 80c7187 commit 02e73bb

23 files changed

+128
-125
lines changed

clients/client-sts/package.json

+23-22
Original file line numberDiff line numberDiff line change
@@ -23,44 +23,45 @@
2323
"dependencies": {
2424
"@aws-crypto/sha256-browser": "3.0.0",
2525
"@aws-crypto/sha256-js": "3.0.0",
26-
"@aws-sdk/config-resolver": "*",
2726
"@aws-sdk/credential-provider-node": "*",
28-
"@aws-sdk/fetch-http-handler": "*",
29-
"@aws-sdk/hash-node": "*",
30-
"@aws-sdk/invalid-dependency": "*",
31-
"@aws-sdk/middleware-content-length": "*",
32-
"@aws-sdk/middleware-endpoint": "*",
3327
"@aws-sdk/middleware-host-header": "*",
3428
"@aws-sdk/middleware-logger": "*",
3529
"@aws-sdk/middleware-recursion-detection": "*",
36-
"@aws-sdk/middleware-retry": "*",
3730
"@aws-sdk/middleware-sdk-sts": "*",
38-
"@aws-sdk/middleware-serde": "*",
3931
"@aws-sdk/middleware-signing": "*",
40-
"@aws-sdk/middleware-stack": "*",
4132
"@aws-sdk/middleware-user-agent": "*",
42-
"@aws-sdk/node-config-provider": "*",
43-
"@aws-sdk/node-http-handler": "*",
44-
"@aws-sdk/smithy-client": "*",
4533
"@aws-sdk/types": "*",
46-
"@aws-sdk/url-parser": "*",
47-
"@aws-sdk/util-base64": "*",
48-
"@aws-sdk/util-body-length-browser": "*",
49-
"@aws-sdk/util-body-length-node": "*",
50-
"@aws-sdk/util-defaults-mode-browser": "*",
51-
"@aws-sdk/util-defaults-mode-node": "*",
5234
"@aws-sdk/util-endpoints": "*",
53-
"@aws-sdk/util-retry": "*",
5435
"@aws-sdk/util-user-agent-browser": "*",
5536
"@aws-sdk/util-user-agent-node": "*",
56-
"@aws-sdk/util-utf8": "*",
57-
"@smithy/protocol-http": "^1.0.1",
58-
"@smithy/types": "^1.0.0",
37+
"@smithy/config-resolver": "^1.0.1",
38+
"@smithy/fetch-http-handler": "^1.0.1",
39+
"@smithy/hash-node": "^1.0.1",
40+
"@smithy/invalid-dependency": "^1.0.1",
41+
"@smithy/middleware-content-length": "^1.0.1",
42+
"@smithy/middleware-endpoint": "^1.0.1",
43+
"@smithy/middleware-retry": "^1.0.1",
44+
"@smithy/middleware-serde": "^1.0.1",
45+
"@smithy/middleware-stack": "^1.0.1",
46+
"@smithy/node-config-provider": "^1.0.1",
47+
"@smithy/node-http-handler": "^1.0.1",
48+
"@smithy/protocol-http": "^1.1.0",
49+
"@smithy/smithy-client": "^1.0.2",
50+
"@smithy/types": "^1.1.0",
51+
"@smithy/url-parser": "^1.0.1",
52+
"@smithy/util-base64": "^1.0.1",
53+
"@smithy/util-body-length-browser": "^1.0.1",
54+
"@smithy/util-body-length-node": "^1.0.1",
55+
"@smithy/util-defaults-mode-browser": "^1.0.1",
56+
"@smithy/util-defaults-mode-node": "^1.0.1",
57+
"@smithy/util-retry": "^1.0.1",
58+
"@smithy/util-utf8": "^1.0.1",
5959
"fast-xml-parser": "4.2.5",
6060
"tslib": "^2.5.0"
6161
},
6262
"devDependencies": {
6363
"@aws-sdk/service-client-documentation-generator": "*",
64+
"@smithy/service-client-documentation-generator": "^1.0.1",
6465
"@tsconfig/node14": "1.0.3",
6566
"@types/node": "^14.14.31",
6667
"concurrently": "7.0.0",

clients/client-sts/src/STS.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// smithy-typescript generated code
2-
import { createAggregatedClient } from "@aws-sdk/smithy-client";
3-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2+
import { createAggregatedClient } from "@smithy/smithy-client";
3+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
44

55
import { AssumeRoleCommand, AssumeRoleCommandInput, AssumeRoleCommandOutput } from "./commands/AssumeRoleCommand";
66
import {

clients/client-sts/src/STSClient.ts

+13-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
// smithy-typescript generated code
2-
import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@aws-sdk/config-resolver";
3-
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4-
import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@aws-sdk/middleware-endpoint";
52
import {
63
getHostHeaderPlugin,
74
HostHeaderInputConfig,
@@ -10,40 +7,41 @@ import {
107
} from "@aws-sdk/middleware-host-header";
118
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
129
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
13-
import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
1410
import { resolveStsAuthConfig, StsAuthInputConfig, StsAuthResolvedConfig } from "@aws-sdk/middleware-sdk-sts";
1511
import {
1612
getUserAgentPlugin,
1713
resolveUserAgentConfig,
1814
UserAgentInputConfig,
1915
UserAgentResolvedConfig,
2016
} from "@aws-sdk/middleware-user-agent";
17+
import { Credentials as __Credentials } from "@aws-sdk/types";
18+
import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver";
19+
import { getContentLengthPlugin } from "@smithy/middleware-content-length";
20+
import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint";
21+
import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
22+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
2123
import {
2224
Client as __Client,
2325
DefaultsMode as __DefaultsMode,
2426
SmithyConfiguration as __SmithyConfiguration,
2527
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
26-
} from "@aws-sdk/smithy-client";
28+
} from "@smithy/smithy-client";
2729
import {
2830
BodyLengthCalculator as __BodyLengthCalculator,
2931
Checksum as __Checksum,
3032
ChecksumConstructor as __ChecksumConstructor,
31-
Credentials as __Credentials,
33+
Decoder as __Decoder,
34+
Encoder as __Encoder,
3235
EndpointV2 as __EndpointV2,
3336
Hash as __Hash,
3437
HashConstructor as __HashConstructor,
3538
HttpHandlerOptions as __HttpHandlerOptions,
3639
Logger as __Logger,
40+
Provider as __Provider,
3741
Provider,
42+
StreamCollector as __StreamCollector,
3843
UrlParser as __UrlParser,
3944
UserAgent as __UserAgent,
40-
} from "@aws-sdk/types";
41-
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
42-
import {
43-
Decoder as __Decoder,
44-
Encoder as __Encoder,
45-
Provider as __Provider,
46-
StreamCollector as __StreamCollector,
4745
} from "@smithy/types";
4846

4947
import { AssumeRoleCommandInput, AssumeRoleCommandOutput } from "./commands/AssumeRoleCommand";
@@ -106,7 +104,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
106104
requestHandler?: __HttpHandler;
107105

108106
/**
109-
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
107+
* A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
110108
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
111109
* @internal
112110
*/
@@ -215,7 +213,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
215213
logger?: __Logger;
216214

217215
/**
218-
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
216+
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
219217
*/
220218
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
221219
}

clients/client-sts/src/commands/AssumeRoleCommand.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// smithy-typescript generated code
2-
import { EndpointParameterInstructions, getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
3-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
42
import { getAwsAuthPlugin } from "@aws-sdk/middleware-signing";
5-
import { Command as $Command } from "@aws-sdk/smithy-client";
3+
import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
4+
import { getSerdePlugin } from "@smithy/middleware-serde";
5+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
6+
import { Command as $Command } from "@smithy/smithy-client";
67
import {
78
FinalizeHandlerArguments,
89
Handler,
910
HandlerExecutionContext,
1011
HttpHandlerOptions as __HttpHandlerOptions,
1112
MetadataBearer as __MetadataBearer,
1213
MiddlewareStack,
13-
} from "@aws-sdk/types";
14-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
15-
import { SerdeContext as __SerdeContext } from "@smithy/types";
14+
SerdeContext as __SerdeContext,
15+
} from "@smithy/types";
1616

1717
import { AssumeRoleRequest, AssumeRoleResponse, AssumeRoleResponseFilterSensitiveLog } from "../models/models_0";
1818
import { de_AssumeRoleCommand, se_AssumeRoleCommand } from "../protocols/Aws_query";

clients/client-sts/src/commands/AssumeRoleWithSAMLCommand.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
// smithy-typescript generated code
2-
import { EndpointParameterInstructions, getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
3-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
4-
import { Command as $Command } from "@aws-sdk/smithy-client";
2+
import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
3+
import { getSerdePlugin } from "@smithy/middleware-serde";
4+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
5+
import { Command as $Command } from "@smithy/smithy-client";
56
import {
67
FinalizeHandlerArguments,
78
Handler,
89
HandlerExecutionContext,
910
HttpHandlerOptions as __HttpHandlerOptions,
1011
MetadataBearer as __MetadataBearer,
1112
MiddlewareStack,
12-
} from "@aws-sdk/types";
13-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
14-
import { SerdeContext as __SerdeContext } from "@smithy/types";
13+
SerdeContext as __SerdeContext,
14+
} from "@smithy/types";
1515

1616
import {
1717
AssumeRoleWithSAMLRequest,

clients/client-sts/src/commands/AssumeRoleWithWebIdentityCommand.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
// smithy-typescript generated code
2-
import { EndpointParameterInstructions, getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
3-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
4-
import { Command as $Command } from "@aws-sdk/smithy-client";
2+
import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
3+
import { getSerdePlugin } from "@smithy/middleware-serde";
4+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
5+
import { Command as $Command } from "@smithy/smithy-client";
56
import {
67
FinalizeHandlerArguments,
78
Handler,
89
HandlerExecutionContext,
910
HttpHandlerOptions as __HttpHandlerOptions,
1011
MetadataBearer as __MetadataBearer,
1112
MiddlewareStack,
12-
} from "@aws-sdk/types";
13-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
14-
import { SerdeContext as __SerdeContext } from "@smithy/types";
13+
SerdeContext as __SerdeContext,
14+
} from "@smithy/types";
1515

1616
import {
1717
AssumeRoleWithWebIdentityRequest,

clients/client-sts/src/commands/DecodeAuthorizationMessageCommand.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// smithy-typescript generated code
2-
import { EndpointParameterInstructions, getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
3-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
42
import { getAwsAuthPlugin } from "@aws-sdk/middleware-signing";
5-
import { Command as $Command } from "@aws-sdk/smithy-client";
3+
import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
4+
import { getSerdePlugin } from "@smithy/middleware-serde";
5+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
6+
import { Command as $Command } from "@smithy/smithy-client";
67
import {
78
FinalizeHandlerArguments,
89
Handler,
910
HandlerExecutionContext,
1011
HttpHandlerOptions as __HttpHandlerOptions,
1112
MetadataBearer as __MetadataBearer,
1213
MiddlewareStack,
13-
} from "@aws-sdk/types";
14-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
15-
import { SerdeContext as __SerdeContext } from "@smithy/types";
14+
SerdeContext as __SerdeContext,
15+
} from "@smithy/types";
1616

1717
import { DecodeAuthorizationMessageRequest, DecodeAuthorizationMessageResponse } from "../models/models_0";
1818
import { de_DecodeAuthorizationMessageCommand, se_DecodeAuthorizationMessageCommand } from "../protocols/Aws_query";

clients/client-sts/src/commands/GetAccessKeyInfoCommand.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// smithy-typescript generated code
2-
import { EndpointParameterInstructions, getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
3-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
42
import { getAwsAuthPlugin } from "@aws-sdk/middleware-signing";
5-
import { Command as $Command } from "@aws-sdk/smithy-client";
3+
import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
4+
import { getSerdePlugin } from "@smithy/middleware-serde";
5+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
6+
import { Command as $Command } from "@smithy/smithy-client";
67
import {
78
FinalizeHandlerArguments,
89
Handler,
910
HandlerExecutionContext,
1011
HttpHandlerOptions as __HttpHandlerOptions,
1112
MetadataBearer as __MetadataBearer,
1213
MiddlewareStack,
13-
} from "@aws-sdk/types";
14-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
15-
import { SerdeContext as __SerdeContext } from "@smithy/types";
14+
SerdeContext as __SerdeContext,
15+
} from "@smithy/types";
1616

1717
import { GetAccessKeyInfoRequest, GetAccessKeyInfoResponse } from "../models/models_0";
1818
import { de_GetAccessKeyInfoCommand, se_GetAccessKeyInfoCommand } from "../protocols/Aws_query";

clients/client-sts/src/commands/GetCallerIdentityCommand.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// smithy-typescript generated code
2-
import { EndpointParameterInstructions, getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
3-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
42
import { getAwsAuthPlugin } from "@aws-sdk/middleware-signing";
5-
import { Command as $Command } from "@aws-sdk/smithy-client";
3+
import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
4+
import { getSerdePlugin } from "@smithy/middleware-serde";
5+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
6+
import { Command as $Command } from "@smithy/smithy-client";
67
import {
78
FinalizeHandlerArguments,
89
Handler,
910
HandlerExecutionContext,
1011
HttpHandlerOptions as __HttpHandlerOptions,
1112
MetadataBearer as __MetadataBearer,
1213
MiddlewareStack,
13-
} from "@aws-sdk/types";
14-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
15-
import { SerdeContext as __SerdeContext } from "@smithy/types";
14+
SerdeContext as __SerdeContext,
15+
} from "@smithy/types";
1616

1717
import { GetCallerIdentityRequest, GetCallerIdentityResponse } from "../models/models_0";
1818
import { de_GetCallerIdentityCommand, se_GetCallerIdentityCommand } from "../protocols/Aws_query";

clients/client-sts/src/commands/GetFederationTokenCommand.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// smithy-typescript generated code
2-
import { EndpointParameterInstructions, getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
3-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
42
import { getAwsAuthPlugin } from "@aws-sdk/middleware-signing";
5-
import { Command as $Command } from "@aws-sdk/smithy-client";
3+
import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
4+
import { getSerdePlugin } from "@smithy/middleware-serde";
5+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
6+
import { Command as $Command } from "@smithy/smithy-client";
67
import {
78
FinalizeHandlerArguments,
89
Handler,
910
HandlerExecutionContext,
1011
HttpHandlerOptions as __HttpHandlerOptions,
1112
MetadataBearer as __MetadataBearer,
1213
MiddlewareStack,
13-
} from "@aws-sdk/types";
14-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
15-
import { SerdeContext as __SerdeContext } from "@smithy/types";
14+
SerdeContext as __SerdeContext,
15+
} from "@smithy/types";
1616

1717
import {
1818
GetFederationTokenRequest,

clients/client-sts/src/commands/GetSessionTokenCommand.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// smithy-typescript generated code
2-
import { EndpointParameterInstructions, getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
3-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
42
import { getAwsAuthPlugin } from "@aws-sdk/middleware-signing";
5-
import { Command as $Command } from "@aws-sdk/smithy-client";
3+
import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
4+
import { getSerdePlugin } from "@smithy/middleware-serde";
5+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
6+
import { Command as $Command } from "@smithy/smithy-client";
67
import {
78
FinalizeHandlerArguments,
89
Handler,
910
HandlerExecutionContext,
1011
HttpHandlerOptions as __HttpHandlerOptions,
1112
MetadataBearer as __MetadataBearer,
1213
MiddlewareStack,
13-
} from "@aws-sdk/types";
14-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
15-
import { SerdeContext as __SerdeContext } from "@smithy/types";
14+
SerdeContext as __SerdeContext,
15+
} from "@smithy/types";
1616

1717
import {
1818
GetSessionTokenRequest,

clients/client-sts/src/defaultRoleAssumers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// smithy-typescript generated code
22
// Please do not touch this file. It's generated from template in:
33
// https://github.com/aws/aws-sdk-js-v3/blob/main/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultRoleAssumers.ts
4-
import { Pluggable } from "@aws-sdk/types";
4+
import { Pluggable } from "@smithy/types";
55

66
import {
77
DefaultCredentialProvider,

clients/client-sts/src/defaultStsRoleAssumers.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// smithy-typescript generated code
22
// Please do not touch this file. It's generated from template in:
33
// https://github.com/aws/aws-sdk-js-v3/blob/main/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultStsRoleAssumers.ts
4-
import { Credentials, Provider } from "@aws-sdk/types";
4+
import { Credentials } from "@aws-sdk/types";
5+
import { Provider } from "@smithy/types";
56

67
import { AssumeRoleCommand, AssumeRoleCommandInput } from "./commands/AssumeRoleCommand";
78
import {

clients/client-sts/src/endpoint/EndpointParameters.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// smithy-typescript generated code
2-
import { EndpointParameters as __EndpointParameters, EndpointV2 } from "@aws-sdk/types";
3-
import { Endpoint, Provider } from "@smithy/types";
2+
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
43

54
export interface ClientInputEndpointParameters {
65
region?: string | Provider<string>;

clients/client-sts/src/endpoint/endpointResolver.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// smithy-typescript generated code
2-
import { EndpointV2, Logger } from "@aws-sdk/types";
32
import { EndpointParams, resolveEndpoint } from "@aws-sdk/util-endpoints";
3+
import { EndpointV2, Logger } from "@smithy/types";
44

55
import { EndpointParameters } from "./EndpointParameters";
66
import { ruleSet } from "./ruleset";

clients/client-sts/src/endpoint/ruleset.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @ts-nocheck
22
// generated code, do not edit
3-
import { RuleSetObject } from "@aws-sdk/util-endpoints";
3+
import { RuleSetObject } from "@smithy/types";
44

55
/* This file is compressed. Log this object
66
or see "smithy.rules#endpointRuleSet"

0 commit comments

Comments
 (0)