@aws-sdk/client-kinesis-video-media 3.721.0 → 3.723.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/dist-cjs/index.js +63 -43
- package/dist-es/KinesisVideoMediaClient.js +1 -0
- package/dist-es/models/models_0.js +18 -12
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -134,7 +134,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
134
134
|
}, "resolveRuntimeExtensions");
|
|
135
135
|
|
|
136
136
|
// src/KinesisVideoMediaClient.ts
|
|
137
|
-
var
|
|
137
|
+
var KinesisVideoMediaClient = class extends import_smithy_client.Client {
|
|
138
|
+
static {
|
|
139
|
+
__name(this, "KinesisVideoMediaClient");
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* The resolved configuration of KinesisVideoMediaClient class. This is resolved and normalized from the {@link KinesisVideoMediaClientConfig | constructor configuration interface}.
|
|
143
|
+
*/
|
|
144
|
+
config;
|
|
138
145
|
constructor(...[configuration]) {
|
|
139
146
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
140
147
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -144,7 +151,7 @@ var _KinesisVideoMediaClient = class _KinesisVideoMediaClient extends import_smi
|
|
|
144
151
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
145
152
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
146
153
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
147
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
154
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
148
155
|
super(_config_8);
|
|
149
156
|
this.config = _config_8;
|
|
150
157
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -172,8 +179,6 @@ var _KinesisVideoMediaClient = class _KinesisVideoMediaClient extends import_smi
|
|
|
172
179
|
super.destroy();
|
|
173
180
|
}
|
|
174
181
|
};
|
|
175
|
-
__name(_KinesisVideoMediaClient, "KinesisVideoMediaClient");
|
|
176
|
-
var KinesisVideoMediaClient = _KinesisVideoMediaClient;
|
|
177
182
|
|
|
178
183
|
// src/KinesisVideoMedia.ts
|
|
179
184
|
|
|
@@ -185,7 +190,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
185
190
|
|
|
186
191
|
// src/models/KinesisVideoMediaServiceException.ts
|
|
187
192
|
|
|
188
|
-
var
|
|
193
|
+
var KinesisVideoMediaServiceException = class _KinesisVideoMediaServiceException extends import_smithy_client.ServiceException {
|
|
194
|
+
static {
|
|
195
|
+
__name(this, "KinesisVideoMediaServiceException");
|
|
196
|
+
}
|
|
189
197
|
/**
|
|
190
198
|
* @internal
|
|
191
199
|
*/
|
|
@@ -194,11 +202,15 @@ var _KinesisVideoMediaServiceException = class _KinesisVideoMediaServiceExceptio
|
|
|
194
202
|
Object.setPrototypeOf(this, _KinesisVideoMediaServiceException.prototype);
|
|
195
203
|
}
|
|
196
204
|
};
|
|
197
|
-
__name(_KinesisVideoMediaServiceException, "KinesisVideoMediaServiceException");
|
|
198
|
-
var KinesisVideoMediaServiceException = _KinesisVideoMediaServiceException;
|
|
199
205
|
|
|
200
206
|
// src/models/models_0.ts
|
|
201
|
-
var
|
|
207
|
+
var ClientLimitExceededException = class _ClientLimitExceededException extends KinesisVideoMediaServiceException {
|
|
208
|
+
static {
|
|
209
|
+
__name(this, "ClientLimitExceededException");
|
|
210
|
+
}
|
|
211
|
+
name = "ClientLimitExceededException";
|
|
212
|
+
$fault = "client";
|
|
213
|
+
Message;
|
|
202
214
|
/**
|
|
203
215
|
* @internal
|
|
204
216
|
*/
|
|
@@ -208,15 +220,17 @@ var _ClientLimitExceededException = class _ClientLimitExceededException extends
|
|
|
208
220
|
$fault: "client",
|
|
209
221
|
...opts
|
|
210
222
|
});
|
|
211
|
-
this.name = "ClientLimitExceededException";
|
|
212
|
-
this.$fault = "client";
|
|
213
223
|
Object.setPrototypeOf(this, _ClientLimitExceededException.prototype);
|
|
214
224
|
this.Message = opts.Message;
|
|
215
225
|
}
|
|
216
226
|
};
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
227
|
+
var ConnectionLimitExceededException = class _ConnectionLimitExceededException extends KinesisVideoMediaServiceException {
|
|
228
|
+
static {
|
|
229
|
+
__name(this, "ConnectionLimitExceededException");
|
|
230
|
+
}
|
|
231
|
+
name = "ConnectionLimitExceededException";
|
|
232
|
+
$fault = "client";
|
|
233
|
+
Message;
|
|
220
234
|
/**
|
|
221
235
|
* @internal
|
|
222
236
|
*/
|
|
@@ -226,14 +240,10 @@ var _ConnectionLimitExceededException = class _ConnectionLimitExceededException
|
|
|
226
240
|
$fault: "client",
|
|
227
241
|
...opts
|
|
228
242
|
});
|
|
229
|
-
this.name = "ConnectionLimitExceededException";
|
|
230
|
-
this.$fault = "client";
|
|
231
243
|
Object.setPrototypeOf(this, _ConnectionLimitExceededException.prototype);
|
|
232
244
|
this.Message = opts.Message;
|
|
233
245
|
}
|
|
234
246
|
};
|
|
235
|
-
__name(_ConnectionLimitExceededException, "ConnectionLimitExceededException");
|
|
236
|
-
var ConnectionLimitExceededException = _ConnectionLimitExceededException;
|
|
237
247
|
var StartSelectorType = {
|
|
238
248
|
CONTINUATION_TOKEN: "CONTINUATION_TOKEN",
|
|
239
249
|
EARLIEST: "EARLIEST",
|
|
@@ -242,7 +252,13 @@ var StartSelectorType = {
|
|
|
242
252
|
PRODUCER_TIMESTAMP: "PRODUCER_TIMESTAMP",
|
|
243
253
|
SERVER_TIMESTAMP: "SERVER_TIMESTAMP"
|
|
244
254
|
};
|
|
245
|
-
var
|
|
255
|
+
var InvalidArgumentException = class _InvalidArgumentException extends KinesisVideoMediaServiceException {
|
|
256
|
+
static {
|
|
257
|
+
__name(this, "InvalidArgumentException");
|
|
258
|
+
}
|
|
259
|
+
name = "InvalidArgumentException";
|
|
260
|
+
$fault = "client";
|
|
261
|
+
Message;
|
|
246
262
|
/**
|
|
247
263
|
* @internal
|
|
248
264
|
*/
|
|
@@ -252,15 +268,17 @@ var _InvalidArgumentException = class _InvalidArgumentException extends KinesisV
|
|
|
252
268
|
$fault: "client",
|
|
253
269
|
...opts
|
|
254
270
|
});
|
|
255
|
-
this.name = "InvalidArgumentException";
|
|
256
|
-
this.$fault = "client";
|
|
257
271
|
Object.setPrototypeOf(this, _InvalidArgumentException.prototype);
|
|
258
272
|
this.Message = opts.Message;
|
|
259
273
|
}
|
|
260
274
|
};
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
275
|
+
var InvalidEndpointException = class _InvalidEndpointException extends KinesisVideoMediaServiceException {
|
|
276
|
+
static {
|
|
277
|
+
__name(this, "InvalidEndpointException");
|
|
278
|
+
}
|
|
279
|
+
name = "InvalidEndpointException";
|
|
280
|
+
$fault = "client";
|
|
281
|
+
Message;
|
|
264
282
|
/**
|
|
265
283
|
* @internal
|
|
266
284
|
*/
|
|
@@ -270,15 +288,17 @@ var _InvalidEndpointException = class _InvalidEndpointException extends KinesisV
|
|
|
270
288
|
$fault: "client",
|
|
271
289
|
...opts
|
|
272
290
|
});
|
|
273
|
-
this.name = "InvalidEndpointException";
|
|
274
|
-
this.$fault = "client";
|
|
275
291
|
Object.setPrototypeOf(this, _InvalidEndpointException.prototype);
|
|
276
292
|
this.Message = opts.Message;
|
|
277
293
|
}
|
|
278
294
|
};
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
295
|
+
var NotAuthorizedException = class _NotAuthorizedException extends KinesisVideoMediaServiceException {
|
|
296
|
+
static {
|
|
297
|
+
__name(this, "NotAuthorizedException");
|
|
298
|
+
}
|
|
299
|
+
name = "NotAuthorizedException";
|
|
300
|
+
$fault = "client";
|
|
301
|
+
Message;
|
|
282
302
|
/**
|
|
283
303
|
* @internal
|
|
284
304
|
*/
|
|
@@ -288,15 +308,17 @@ var _NotAuthorizedException = class _NotAuthorizedException extends KinesisVideo
|
|
|
288
308
|
$fault: "client",
|
|
289
309
|
...opts
|
|
290
310
|
});
|
|
291
|
-
this.name = "NotAuthorizedException";
|
|
292
|
-
this.$fault = "client";
|
|
293
311
|
Object.setPrototypeOf(this, _NotAuthorizedException.prototype);
|
|
294
312
|
this.Message = opts.Message;
|
|
295
313
|
}
|
|
296
314
|
};
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
315
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends KinesisVideoMediaServiceException {
|
|
316
|
+
static {
|
|
317
|
+
__name(this, "ResourceNotFoundException");
|
|
318
|
+
}
|
|
319
|
+
name = "ResourceNotFoundException";
|
|
320
|
+
$fault = "client";
|
|
321
|
+
Message;
|
|
300
322
|
/**
|
|
301
323
|
* @internal
|
|
302
324
|
*/
|
|
@@ -306,14 +328,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Kinesi
|
|
|
306
328
|
$fault: "client",
|
|
307
329
|
...opts
|
|
308
330
|
});
|
|
309
|
-
this.name = "ResourceNotFoundException";
|
|
310
|
-
this.$fault = "client";
|
|
311
331
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
312
332
|
this.Message = opts.Message;
|
|
313
333
|
}
|
|
314
334
|
};
|
|
315
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
316
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
317
335
|
var GetMediaOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
318
336
|
...obj
|
|
319
337
|
}), "GetMediaOutputFilterSensitiveLog");
|
|
@@ -483,24 +501,26 @@ var _CT = "ContentType";
|
|
|
483
501
|
var _ct = "content-type";
|
|
484
502
|
|
|
485
503
|
// src/commands/GetMediaCommand.ts
|
|
486
|
-
var
|
|
504
|
+
var GetMediaCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
487
505
|
return [
|
|
488
506
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
489
507
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
490
508
|
];
|
|
491
509
|
}).s("AWSAcuityInletService", "GetMedia", {}).n("KinesisVideoMediaClient", "GetMediaCommand").f(void 0, GetMediaOutputFilterSensitiveLog).ser(se_GetMediaCommand).de(de_GetMediaCommand).build() {
|
|
510
|
+
static {
|
|
511
|
+
__name(this, "GetMediaCommand");
|
|
512
|
+
}
|
|
492
513
|
};
|
|
493
|
-
__name(_GetMediaCommand, "GetMediaCommand");
|
|
494
|
-
var GetMediaCommand = _GetMediaCommand;
|
|
495
514
|
|
|
496
515
|
// src/KinesisVideoMedia.ts
|
|
497
516
|
var commands = {
|
|
498
517
|
GetMediaCommand
|
|
499
518
|
};
|
|
500
|
-
var
|
|
519
|
+
var KinesisVideoMedia = class extends KinesisVideoMediaClient {
|
|
520
|
+
static {
|
|
521
|
+
__name(this, "KinesisVideoMedia");
|
|
522
|
+
}
|
|
501
523
|
};
|
|
502
|
-
__name(_KinesisVideoMedia, "KinesisVideoMedia");
|
|
503
|
-
var KinesisVideoMedia = _KinesisVideoMedia;
|
|
504
524
|
(0, import_smithy_client.createAggregatedClient)(commands, KinesisVideoMedia);
|
|
505
525
|
// Annotate the CommonJS export names for ESM import in node:
|
|
506
526
|
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class KinesisVideoMediaClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,26 +1,28 @@
|
|
|
1
1
|
import { KinesisVideoMediaServiceException as __BaseException } from "./KinesisVideoMediaServiceException";
|
|
2
2
|
export class ClientLimitExceededException extends __BaseException {
|
|
3
|
+
name = "ClientLimitExceededException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
3
6
|
constructor(opts) {
|
|
4
7
|
super({
|
|
5
8
|
name: "ClientLimitExceededException",
|
|
6
9
|
$fault: "client",
|
|
7
10
|
...opts,
|
|
8
11
|
});
|
|
9
|
-
this.name = "ClientLimitExceededException";
|
|
10
|
-
this.$fault = "client";
|
|
11
12
|
Object.setPrototypeOf(this, ClientLimitExceededException.prototype);
|
|
12
13
|
this.Message = opts.Message;
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
export class ConnectionLimitExceededException extends __BaseException {
|
|
17
|
+
name = "ConnectionLimitExceededException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
Message;
|
|
16
20
|
constructor(opts) {
|
|
17
21
|
super({
|
|
18
22
|
name: "ConnectionLimitExceededException",
|
|
19
23
|
$fault: "client",
|
|
20
24
|
...opts,
|
|
21
25
|
});
|
|
22
|
-
this.name = "ConnectionLimitExceededException";
|
|
23
|
-
this.$fault = "client";
|
|
24
26
|
Object.setPrototypeOf(this, ConnectionLimitExceededException.prototype);
|
|
25
27
|
this.Message = opts.Message;
|
|
26
28
|
}
|
|
@@ -34,53 +36,57 @@ export const StartSelectorType = {
|
|
|
34
36
|
SERVER_TIMESTAMP: "SERVER_TIMESTAMP",
|
|
35
37
|
};
|
|
36
38
|
export class InvalidArgumentException extends __BaseException {
|
|
39
|
+
name = "InvalidArgumentException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
Message;
|
|
37
42
|
constructor(opts) {
|
|
38
43
|
super({
|
|
39
44
|
name: "InvalidArgumentException",
|
|
40
45
|
$fault: "client",
|
|
41
46
|
...opts,
|
|
42
47
|
});
|
|
43
|
-
this.name = "InvalidArgumentException";
|
|
44
|
-
this.$fault = "client";
|
|
45
48
|
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
46
49
|
this.Message = opts.Message;
|
|
47
50
|
}
|
|
48
51
|
}
|
|
49
52
|
export class InvalidEndpointException extends __BaseException {
|
|
53
|
+
name = "InvalidEndpointException";
|
|
54
|
+
$fault = "client";
|
|
55
|
+
Message;
|
|
50
56
|
constructor(opts) {
|
|
51
57
|
super({
|
|
52
58
|
name: "InvalidEndpointException",
|
|
53
59
|
$fault: "client",
|
|
54
60
|
...opts,
|
|
55
61
|
});
|
|
56
|
-
this.name = "InvalidEndpointException";
|
|
57
|
-
this.$fault = "client";
|
|
58
62
|
Object.setPrototypeOf(this, InvalidEndpointException.prototype);
|
|
59
63
|
this.Message = opts.Message;
|
|
60
64
|
}
|
|
61
65
|
}
|
|
62
66
|
export class NotAuthorizedException extends __BaseException {
|
|
67
|
+
name = "NotAuthorizedException";
|
|
68
|
+
$fault = "client";
|
|
69
|
+
Message;
|
|
63
70
|
constructor(opts) {
|
|
64
71
|
super({
|
|
65
72
|
name: "NotAuthorizedException",
|
|
66
73
|
$fault: "client",
|
|
67
74
|
...opts,
|
|
68
75
|
});
|
|
69
|
-
this.name = "NotAuthorizedException";
|
|
70
|
-
this.$fault = "client";
|
|
71
76
|
Object.setPrototypeOf(this, NotAuthorizedException.prototype);
|
|
72
77
|
this.Message = opts.Message;
|
|
73
78
|
}
|
|
74
79
|
}
|
|
75
80
|
export class ResourceNotFoundException extends __BaseException {
|
|
81
|
+
name = "ResourceNotFoundException";
|
|
82
|
+
$fault = "client";
|
|
83
|
+
Message;
|
|
76
84
|
constructor(opts) {
|
|
77
85
|
super({
|
|
78
86
|
name: "ResourceNotFoundException",
|
|
79
87
|
$fault: "client",
|
|
80
88
|
...opts,
|
|
81
89
|
});
|
|
82
|
-
this.name = "ResourceNotFoundException";
|
|
83
|
-
this.$fault = "client";
|
|
84
90
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
85
91
|
this.Message = opts.Message;
|
|
86
92
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: KinesisVideoMediaClientConfig) =
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: KinesisVideoMediaClientConfig) =
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: KinesisVideoMediaClientConfig) =
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: KinesisVideoMediaClientConfig) =
|
|
|
32
32
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
33
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
34
34
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
|
-
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> | undefined;
|
|
35
|
+
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;
|
|
36
36
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
38
38
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -53,11 +55,21 @@ export declare const getRuntimeConfig: (
|
|
|
53
55
|
| import("@smithy/types").RetryStrategyV2
|
|
54
56
|
| undefined;
|
|
55
57
|
endpoint?:
|
|
56
|
-
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
58
|
+
| ((
|
|
59
|
+
| string
|
|
60
|
+
| import("@smithy/types").Endpoint
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
+
| import("@smithy/types").EndpointV2
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
+
) &
|
|
65
|
+
(
|
|
66
|
+
| string
|
|
67
|
+
| import("@smithy/types").Provider<string>
|
|
68
|
+
| import("@smithy/types").Endpoint
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
70
|
+
| import("@smithy/types").EndpointV2
|
|
71
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
72
|
+
))
|
|
61
73
|
| undefined;
|
|
62
74
|
endpointProvider: (
|
|
63
75
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-video-media",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Video Media Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.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-kinesis-video-media",
|
|
@@ -20,57 +20,57 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-stream": "^
|
|
61
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-stream": "^4.0.0",
|
|
61
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@tsconfig/
|
|
66
|
-
"@types/node": "^
|
|
65
|
+
"@tsconfig/node18": "18.2.4",
|
|
66
|
+
"@types/node": "^18.19.69",
|
|
67
67
|
"concurrently": "7.0.0",
|
|
68
68
|
"downlevel-dts": "0.10.1",
|
|
69
69
|
"rimraf": "3.0.2",
|
|
70
|
-
"typescript": "~
|
|
70
|
+
"typescript": "~5.2.2"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
|
-
"node": ">=
|
|
73
|
+
"node": ">=18.0.0"
|
|
74
74
|
},
|
|
75
75
|
"typesVersions": {
|
|
76
76
|
"<4.0": {
|