@aws-sdk/client-ssm-guiconnect 3.928.0 → 3.930.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.
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateConnectionRecordingPreferencesCommand, se_UpdateConnectionRecordingPreferencesCommand, } from "../protocols/Aws_restJson1";
4
+ import { UpdateConnectionRecordingPreferences } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateConnectionRecordingPreferencesCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SSMGuiConnect", "UpdateConnectionRecordingPreferences", {})
17
13
  .n("SSMGuiConnectClient", "UpdateConnectionRecordingPreferencesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateConnectionRecordingPreferencesCommand)
20
- .de(de_UpdateConnectionRecordingPreferencesCommand)
14
+ .sc(UpdateConnectionRecordingPreferences)
21
15
  .build() {
22
16
  }
@@ -1,4 +1,5 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core";
2
+ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
2
3
  import { NoOpLogger } from "@smithy/smithy-client";
3
4
  import { parseUrl } from "@smithy/url-parser";
4
5
  import { fromBase64, toBase64 } from "@smithy/util-base64";
@@ -22,6 +23,7 @@ export const getRuntimeConfig = (config) => {
22
23
  },
23
24
  ],
24
25
  logger: config?.logger ?? new NoOpLogger(),
26
+ protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.ssmguiconnect" }),
25
27
  serviceId: config?.serviceId ?? "SSM GuiConnect",
26
28
  urlParser: config?.urlParser ?? parseUrl,
27
29
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
@@ -0,0 +1,188 @@
1
+ const _ADE = "AccessDeniedException";
2
+ const _BN = "BucketName";
3
+ const _BO = "BucketOwner";
4
+ const _CE = "ConflictException";
5
+ const _CRP = "ConnectionRecordingPreferences";
6
+ const _CT = "ClientToken";
7
+ const _DCRP = "DeleteConnectionRecordingPreferences";
8
+ const _DCRPR = "DeleteConnectionRecordingPreferencesRequest";
9
+ const _DCRPRe = "DeleteConnectionRecordingPreferencesResponse";
10
+ const _GCRP = "GetConnectionRecordingPreferences";
11
+ const _GCRPR = "GetConnectionRecordingPreferencesResponse";
12
+ const _ISE = "InternalServerException";
13
+ const _KMSKA = "KMSKeyArn";
14
+ const _RD = "RecordingDestinations";
15
+ const _RNFE = "ResourceNotFoundException";
16
+ const _SB = "S3Buckets";
17
+ const _SBu = "S3Bucket";
18
+ const _SQEE = "ServiceQuotaExceededException";
19
+ const _TE = "ThrottlingException";
20
+ const _UCRP = "UpdateConnectionRecordingPreferences";
21
+ const _UCRPR = "UpdateConnectionRecordingPreferencesRequest";
22
+ const _UCRPRp = "UpdateConnectionRecordingPreferencesResponse";
23
+ const _VE = "ValidationException";
24
+ const _c = "client";
25
+ const _e = "error";
26
+ const _h = "http";
27
+ const _hE = "httpError";
28
+ const _m = "message";
29
+ const _s = "server";
30
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ssmguiconnect";
31
+ const n0 = "com.amazonaws.ssmguiconnect";
32
+ import { TypeRegistry } from "@smithy/core/schema";
33
+ import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/index";
34
+ import { SSMGuiConnectServiceException as __SSMGuiConnectServiceException } from "../models/SSMGuiConnectServiceException";
35
+ export var AccessDeniedException = [
36
+ -3,
37
+ n0,
38
+ _ADE,
39
+ {
40
+ [_e]: _c,
41
+ [_hE]: 403,
42
+ },
43
+ [_m],
44
+ [0],
45
+ ];
46
+ TypeRegistry.for(n0).registerError(AccessDeniedException, __AccessDeniedException);
47
+ export var ConflictException = [
48
+ -3,
49
+ n0,
50
+ _CE,
51
+ {
52
+ [_e]: _c,
53
+ [_hE]: 409,
54
+ },
55
+ [_m],
56
+ [0],
57
+ ];
58
+ TypeRegistry.for(n0).registerError(ConflictException, __ConflictException);
59
+ export var ConnectionRecordingPreferences = [
60
+ 3,
61
+ n0,
62
+ _CRP,
63
+ 0,
64
+ [_RD, _KMSKA],
65
+ [() => RecordingDestinations, 0],
66
+ ];
67
+ export var DeleteConnectionRecordingPreferencesRequest = [3, n0, _DCRPR, 0, [_CT], [[0, 4]]];
68
+ export var DeleteConnectionRecordingPreferencesResponse = [3, n0, _DCRPRe, 0, [_CT], [0]];
69
+ export var GetConnectionRecordingPreferencesResponse = [
70
+ 3,
71
+ n0,
72
+ _GCRPR,
73
+ 0,
74
+ [_CT, _CRP],
75
+ [0, () => ConnectionRecordingPreferences],
76
+ ];
77
+ export var InternalServerException = [
78
+ -3,
79
+ n0,
80
+ _ISE,
81
+ {
82
+ [_e]: _s,
83
+ [_hE]: 500,
84
+ },
85
+ [_m],
86
+ [0],
87
+ ];
88
+ TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
89
+ export var RecordingDestinations = [3, n0, _RD, 0, [_SB], [() => S3Buckets]];
90
+ export var ResourceNotFoundException = [
91
+ -3,
92
+ n0,
93
+ _RNFE,
94
+ {
95
+ [_e]: _c,
96
+ [_hE]: 404,
97
+ },
98
+ [_m],
99
+ [0],
100
+ ];
101
+ TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
102
+ export var S3Bucket = [3, n0, _SBu, 0, [_BO, _BN], [0, 0]];
103
+ export var ServiceQuotaExceededException = [
104
+ -3,
105
+ n0,
106
+ _SQEE,
107
+ {
108
+ [_e]: _c,
109
+ [_hE]: 402,
110
+ },
111
+ [_m],
112
+ [0],
113
+ ];
114
+ TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, __ServiceQuotaExceededException);
115
+ export var ThrottlingException = [
116
+ -3,
117
+ n0,
118
+ _TE,
119
+ {
120
+ [_e]: _c,
121
+ [_hE]: 429,
122
+ },
123
+ [_m],
124
+ [0],
125
+ ];
126
+ TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
127
+ export var UpdateConnectionRecordingPreferencesRequest = [
128
+ 3,
129
+ n0,
130
+ _UCRPR,
131
+ 0,
132
+ [_CRP, _CT],
133
+ [() => ConnectionRecordingPreferences, [0, 4]],
134
+ ];
135
+ export var UpdateConnectionRecordingPreferencesResponse = [
136
+ 3,
137
+ n0,
138
+ _UCRPRp,
139
+ 0,
140
+ [_CT, _CRP],
141
+ [0, () => ConnectionRecordingPreferences],
142
+ ];
143
+ export var ValidationException = [
144
+ -3,
145
+ n0,
146
+ _VE,
147
+ {
148
+ [_e]: _c,
149
+ [_hE]: 400,
150
+ },
151
+ [_m],
152
+ [0],
153
+ ];
154
+ TypeRegistry.for(n0).registerError(ValidationException, __ValidationException);
155
+ export var __Unit = "unit";
156
+ export var SSMGuiConnectServiceException = [-3, _sm, "SSMGuiConnectServiceException", 0, [], []];
157
+ TypeRegistry.for(_sm).registerError(SSMGuiConnectServiceException, __SSMGuiConnectServiceException);
158
+ export var S3Buckets = [1, n0, _SB, 0, () => S3Bucket];
159
+ export var DeleteConnectionRecordingPreferences = [
160
+ 9,
161
+ n0,
162
+ _DCRP,
163
+ {
164
+ [_h]: ["POST", "/DeleteConnectionRecordingPreferences", 200],
165
+ },
166
+ () => DeleteConnectionRecordingPreferencesRequest,
167
+ () => DeleteConnectionRecordingPreferencesResponse,
168
+ ];
169
+ export var GetConnectionRecordingPreferences = [
170
+ 9,
171
+ n0,
172
+ _GCRP,
173
+ {
174
+ [_h]: ["POST", "/GetConnectionRecordingPreferences", 200],
175
+ },
176
+ () => __Unit,
177
+ () => GetConnectionRecordingPreferencesResponse,
178
+ ];
179
+ export var UpdateConnectionRecordingPreferences = [
180
+ 9,
181
+ n0,
182
+ _UCRP,
183
+ {
184
+ [_h]: ["POST", "/UpdateConnectionRecordingPreferences", 200],
185
+ },
186
+ () => UpdateConnectionRecordingPreferencesRequest,
187
+ () => UpdateConnectionRecordingPreferencesResponse,
188
+ ];
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { DeleteConnectionRecordingPreferencesCommandInput, DeleteConnectionRecordingPreferencesCommandOutput } from "./commands/DeleteConnectionRecordingPreferencesCommand";
11
11
  import { GetConnectionRecordingPreferencesCommandInput, GetConnectionRecordingPreferencesCommandOutput } from "./commands/GetConnectionRecordingPreferencesCommand";
@@ -144,6 +144,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
144
144
  * Optional extensions
145
145
  */
146
146
  extensions?: RuntimeExtension[];
147
+ /**
148
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
149
+ * may be overridden. A default will always be set by the client.
150
+ * Available options depend on the service's supported protocols and will not be validated by
151
+ * the client.
152
+ * @alpha
153
+ *
154
+ */
155
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
147
156
  /**
148
157
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
149
158
  */
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMGuiConnectHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,22 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var AccessDeniedException: StaticErrorSchema;
3
+ export declare var ConflictException: StaticErrorSchema;
4
+ export declare var ConnectionRecordingPreferences: StaticStructureSchema;
5
+ export declare var DeleteConnectionRecordingPreferencesRequest: StaticStructureSchema;
6
+ export declare var DeleteConnectionRecordingPreferencesResponse: StaticStructureSchema;
7
+ export declare var GetConnectionRecordingPreferencesResponse: StaticStructureSchema;
8
+ export declare var InternalServerException: StaticErrorSchema;
9
+ export declare var RecordingDestinations: StaticStructureSchema;
10
+ export declare var ResourceNotFoundException: StaticErrorSchema;
11
+ export declare var S3Bucket: StaticStructureSchema;
12
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
13
+ export declare var ThrottlingException: StaticErrorSchema;
14
+ export declare var UpdateConnectionRecordingPreferencesRequest: StaticStructureSchema;
15
+ export declare var UpdateConnectionRecordingPreferencesResponse: StaticStructureSchema;
16
+ export declare var ValidationException: StaticErrorSchema;
17
+ export declare var __Unit: "unit";
18
+ export declare var SSMGuiConnectServiceException: StaticErrorSchema;
19
+ export declare var S3Buckets: StaticListSchema;
20
+ export declare var DeleteConnectionRecordingPreferences: StaticOperationSchema;
21
+ export declare var GetConnectionRecordingPreferences: StaticOperationSchema;
22
+ export declare var UpdateConnectionRecordingPreferences: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -96,6 +99,7 @@ export interface ClientDefaults
96
99
  retryMode?: string | __Provider<string>;
97
100
  logger?: __Logger;
98
101
  extensions?: RuntimeExtension[];
102
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
99
103
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
100
104
  }
101
105
  export type SSMGuiConnectClientConfigType = Partial<
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
38
38
  profile?: string;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  customUserAgent?: string | import("@smithy/types").UserAgent;
42
46
  userAgentAppId?:
43
47
  | string
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
38
38
  profile?: string;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  customUserAgent?: string | import("@smithy/types").UserAgent;
42
46
  retryStrategy?:
43
47
  | import("@smithy/types").RetryStrategy
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
37
37
  retryMode: string | import("@smithy/types").Provider<string>;
38
38
  logger: import("@smithy/types").Logger;
39
39
  extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ protocol: import("@smithy/types").ClientProtocol<
41
+ import("@smithy/types").HttpRequest,
42
+ import("@smithy/types").HttpResponse
43
+ >;
40
44
  defaultsMode:
41
45
  | import("@smithy/smithy-client").DefaultsMode
42
46
  | import("@smithy/types").Provider<
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMGuiConnectHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<
18
+ import("@smithy/types").HttpRequest,
19
+ import("@smithy/types").HttpResponse
20
+ >;
17
21
  serviceId: string;
18
22
  urlParser: import("@smithy/types").UrlParser;
19
23
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,27 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticStructureSchema,
6
+ } from "@smithy/types";
7
+ export declare var AccessDeniedException: StaticErrorSchema;
8
+ export declare var ConflictException: StaticErrorSchema;
9
+ export declare var ConnectionRecordingPreferences: StaticStructureSchema;
10
+ export declare var DeleteConnectionRecordingPreferencesRequest: StaticStructureSchema;
11
+ export declare var DeleteConnectionRecordingPreferencesResponse: StaticStructureSchema;
12
+ export declare var GetConnectionRecordingPreferencesResponse: StaticStructureSchema;
13
+ export declare var InternalServerException: StaticErrorSchema;
14
+ export declare var RecordingDestinations: StaticStructureSchema;
15
+ export declare var ResourceNotFoundException: StaticErrorSchema;
16
+ export declare var S3Bucket: StaticStructureSchema;
17
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
18
+ export declare var ThrottlingException: StaticErrorSchema;
19
+ export declare var UpdateConnectionRecordingPreferencesRequest: StaticStructureSchema;
20
+ export declare var UpdateConnectionRecordingPreferencesResponse: StaticStructureSchema;
21
+ export declare var ValidationException: StaticErrorSchema;
22
+ export declare var __Unit: "unit";
23
+ export declare var SSMGuiConnectServiceException: StaticErrorSchema;
24
+ export declare var S3Buckets: StaticListSchema;
25
+ export declare var DeleteConnectionRecordingPreferences: StaticOperationSchema;
26
+ export declare var GetConnectionRecordingPreferences: StaticOperationSchema;
27
+ export declare var UpdateConnectionRecordingPreferences: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ssm-guiconnect",
3
3
  "description": "AWS SDK for JavaScript Ssm Guiconnect Client for Node.js, Browser and React Native",
4
- "version": "3.928.0",
4
+ "version": "3.930.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-ssm-guiconnect",
@@ -20,43 +20,42 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.928.0",
24
- "@aws-sdk/credential-provider-node": "3.928.0",
25
- "@aws-sdk/middleware-host-header": "3.922.0",
26
- "@aws-sdk/middleware-logger": "3.922.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.928.0",
29
- "@aws-sdk/region-config-resolver": "3.925.0",
30
- "@aws-sdk/types": "3.922.0",
31
- "@aws-sdk/util-endpoints": "3.922.0",
32
- "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.928.0",
34
- "@smithy/config-resolver": "^4.4.2",
35
- "@smithy/core": "^3.17.2",
36
- "@smithy/fetch-http-handler": "^5.3.5",
37
- "@smithy/hash-node": "^4.2.4",
38
- "@smithy/invalid-dependency": "^4.2.4",
39
- "@smithy/middleware-content-length": "^4.2.4",
40
- "@smithy/middleware-endpoint": "^4.3.6",
41
- "@smithy/middleware-retry": "^4.4.6",
42
- "@smithy/middleware-serde": "^4.2.4",
43
- "@smithy/middleware-stack": "^4.2.4",
44
- "@smithy/node-config-provider": "^4.3.4",
45
- "@smithy/node-http-handler": "^4.4.4",
46
- "@smithy/protocol-http": "^5.3.4",
47
- "@smithy/smithy-client": "^4.9.2",
48
- "@smithy/types": "^4.8.1",
49
- "@smithy/url-parser": "^4.2.4",
23
+ "@aws-sdk/core": "3.930.0",
24
+ "@aws-sdk/credential-provider-node": "3.930.0",
25
+ "@aws-sdk/middleware-host-header": "3.930.0",
26
+ "@aws-sdk/middleware-logger": "3.930.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.930.0",
28
+ "@aws-sdk/middleware-user-agent": "3.930.0",
29
+ "@aws-sdk/region-config-resolver": "3.930.0",
30
+ "@aws-sdk/types": "3.930.0",
31
+ "@aws-sdk/util-endpoints": "3.930.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.930.0",
33
+ "@aws-sdk/util-user-agent-node": "3.930.0",
34
+ "@smithy/config-resolver": "^4.4.3",
35
+ "@smithy/core": "^3.18.2",
36
+ "@smithy/fetch-http-handler": "^5.3.6",
37
+ "@smithy/hash-node": "^4.2.5",
38
+ "@smithy/invalid-dependency": "^4.2.5",
39
+ "@smithy/middleware-content-length": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.9",
41
+ "@smithy/middleware-retry": "^4.4.9",
42
+ "@smithy/middleware-serde": "^4.2.5",
43
+ "@smithy/middleware-stack": "^4.2.5",
44
+ "@smithy/node-config-provider": "^4.3.5",
45
+ "@smithy/node-http-handler": "^4.4.5",
46
+ "@smithy/protocol-http": "^5.3.5",
47
+ "@smithy/smithy-client": "^4.9.5",
48
+ "@smithy/types": "^4.9.0",
49
+ "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.5",
54
- "@smithy/util-defaults-mode-node": "^4.2.8",
55
- "@smithy/util-endpoints": "^3.2.4",
56
- "@smithy/util-middleware": "^4.2.4",
57
- "@smithy/util-retry": "^4.2.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.8",
54
+ "@smithy/util-defaults-mode-node": "^4.2.11",
55
+ "@smithy/util-endpoints": "^3.2.5",
56
+ "@smithy/util-middleware": "^4.2.5",
57
+ "@smithy/util-retry": "^4.2.5",
58
58
  "@smithy/util-utf8": "^4.2.0",
59
- "@smithy/uuid": "^1.1.0",
60
59
  "tslib": "^2.6.2"
61
60
  },
62
61
  "devDependencies": {