Skip to content

Commit d036e2e

Browse files
authored
feat(clients): use migrated @smithy packages (#4873)
1 parent 4b3856a commit d036e2e

File tree

21,669 files changed

+115068
-113865
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

21,669 files changed

+115068
-113865
lines changed

clients/client-accessanalyzer/package.json

+21-20
Original file line numberDiff line numberDiff line change
@@ -22,43 +22,44 @@
2222
"@aws-crypto/sha256-browser": "3.0.0",
2323
"@aws-crypto/sha256-js": "3.0.0",
2424
"@aws-sdk/client-sts": "*",
25-
"@aws-sdk/config-resolver": "*",
2625
"@aws-sdk/credential-provider-node": "*",
27-
"@aws-sdk/fetch-http-handler": "*",
28-
"@aws-sdk/hash-node": "*",
29-
"@aws-sdk/invalid-dependency": "*",
30-
"@aws-sdk/middleware-content-length": "*",
31-
"@aws-sdk/middleware-endpoint": "*",
3226
"@aws-sdk/middleware-host-header": "*",
3327
"@aws-sdk/middleware-logger": "*",
3428
"@aws-sdk/middleware-recursion-detection": "*",
35-
"@aws-sdk/middleware-retry": "*",
36-
"@aws-sdk/middleware-serde": "*",
3729
"@aws-sdk/middleware-signing": "*",
38-
"@aws-sdk/middleware-stack": "*",
3930
"@aws-sdk/middleware-user-agent": "*",
40-
"@aws-sdk/node-config-provider": "*",
41-
"@aws-sdk/node-http-handler": "*",
42-
"@aws-sdk/smithy-client": "*",
4331
"@aws-sdk/types": "*",
44-
"@aws-sdk/url-parser": "*",
45-
"@aws-sdk/util-base64": "*",
46-
"@aws-sdk/util-body-length-browser": "*",
47-
"@aws-sdk/util-body-length-node": "*",
48-
"@aws-sdk/util-defaults-mode-browser": "*",
49-
"@aws-sdk/util-defaults-mode-node": "*",
5032
"@aws-sdk/util-endpoints": "*",
51-
"@aws-sdk/util-retry": "*",
5233
"@aws-sdk/util-user-agent-browser": "*",
5334
"@aws-sdk/util-user-agent-node": "*",
54-
"@aws-sdk/util-utf8": "*",
35+
"@smithy/config-resolver": "^1.0.1",
36+
"@smithy/fetch-http-handler": "^1.0.1",
37+
"@smithy/hash-node": "^1.0.1",
38+
"@smithy/invalid-dependency": "^1.0.1",
39+
"@smithy/middleware-content-length": "^1.0.1",
40+
"@smithy/middleware-endpoint": "^1.0.1",
41+
"@smithy/middleware-retry": "^1.0.2",
42+
"@smithy/middleware-serde": "^1.0.1",
43+
"@smithy/middleware-stack": "^1.0.1",
44+
"@smithy/node-config-provider": "^1.0.1",
45+
"@smithy/node-http-handler": "^1.0.2",
5546
"@smithy/protocol-http": "^1.0.1",
47+
"@smithy/smithy-client": "^1.0.3",
5648
"@smithy/types": "^1.0.0",
49+
"@smithy/url-parser": "^1.0.1",
50+
"@smithy/util-base64": "^1.0.1",
51+
"@smithy/util-body-length-browser": "^1.0.1",
52+
"@smithy/util-body-length-node": "^1.0.1",
53+
"@smithy/util-defaults-mode-browser": "^1.0.1",
54+
"@smithy/util-defaults-mode-node": "^1.0.1",
55+
"@smithy/util-retry": "^1.0.2",
56+
"@smithy/util-utf8": "^1.0.1",
5757
"tslib": "^2.5.0",
5858
"uuid": "^8.3.2"
5959
},
6060
"devDependencies": {
6161
"@aws-sdk/service-client-documentation-generator": "*",
62+
"@smithy/service-client-documentation-generator": "^1.0.1",
6263
"@tsconfig/node14": "1.0.3",
6364
"@types/node": "^14.14.31",
6465
"@types/uuid": "^8.3.0",

clients/client-accessanalyzer/src/AccessAnalyzer.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 { AccessAnalyzerClient, AccessAnalyzerClientConfig } from "./AccessAnalyzerClient";
66
import {

clients/client-accessanalyzer/src/AccessAnalyzerClient.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,7 +7,6 @@ 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 {
1511
AwsAuthInputConfig,
1612
AwsAuthResolvedConfig,
@@ -23,32 +19,34 @@ import {
2319
UserAgentInputConfig,
2420
UserAgentResolvedConfig,
2521
} from "@aws-sdk/middleware-user-agent";
22+
import { Credentials as __Credentials } from "@aws-sdk/types";
23+
import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver";
24+
import { getContentLengthPlugin } from "@smithy/middleware-content-length";
25+
import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint";
26+
import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
27+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
2628
import {
2729
Client as __Client,
2830
DefaultsMode as __DefaultsMode,
2931
SmithyConfiguration as __SmithyConfiguration,
3032
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
31-
} from "@aws-sdk/smithy-client";
33+
} from "@smithy/smithy-client";
3234
import {
3335
BodyLengthCalculator as __BodyLengthCalculator,
3436
Checksum as __Checksum,
3537
ChecksumConstructor as __ChecksumConstructor,
36-
Credentials as __Credentials,
38+
Decoder as __Decoder,
39+
Encoder as __Encoder,
3740
EndpointV2 as __EndpointV2,
3841
Hash as __Hash,
3942
HashConstructor as __HashConstructor,
4043
HttpHandlerOptions as __HttpHandlerOptions,
4144
Logger as __Logger,
45+
Provider as __Provider,
4246
Provider,
47+
StreamCollector as __StreamCollector,
4348
UrlParser as __UrlParser,
4449
UserAgent as __UserAgent,
45-
} from "@aws-sdk/types";
46-
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
47-
import {
48-
Decoder as __Decoder,
49-
Encoder as __Encoder,
50-
Provider as __Provider,
51-
StreamCollector as __StreamCollector,
5250
} from "@smithy/types";
5351

5452
import { ApplyArchiveRuleCommandInput, ApplyArchiveRuleCommandOutput } from "./commands/ApplyArchiveRuleCommand";
@@ -189,7 +187,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
189187
requestHandler?: __HttpHandler;
190188

191189
/**
192-
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
190+
* A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
193191
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
194192
* @internal
195193
*/
@@ -298,7 +296,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
298296
logger?: __Logger;
299297

300298
/**
301-
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
299+
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
302300
*/
303301
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
304302
}

clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.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 { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { ApplyArchiveRuleRequest } from "../models/models_0";

clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.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 { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { CancelPolicyGenerationRequest, CancelPolicyGenerationResponse } from "../models/models_0";

clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.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 { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { CreateAccessPreviewRequest, CreateAccessPreviewResponse } from "../models/models_0";

clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.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 { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { CreateAnalyzerRequest, CreateAnalyzerResponse } from "../models/models_0";

clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.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 { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { CreateArchiveRuleRequest } from "../models/models_0";

clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.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 { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { DeleteAnalyzerRequest } from "../models/models_0";

clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.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 { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { DeleteArchiveRuleRequest } from "../models/models_0";

clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.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 { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { GetAccessPreviewRequest, GetAccessPreviewResponse } from "../models/models_0";

clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.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 { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { GetAnalyzedResourceRequest, GetAnalyzedResourceResponse } from "../models/models_0";

clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.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 { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { GetAnalyzerRequest, GetAnalyzerResponse } from "../models/models_0";

0 commit comments

Comments
 (0)