@aws-sdk/client-kinesis-video 3.935.0 → 3.938.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/README.md +16 -0
- package/dist-cjs/index.js +82 -2
- package/dist-es/KinesisVideo.js +4 -0
- package/dist-es/commands/DescribeStreamStorageConfigurationCommand.js +16 -0
- package/dist-es/commands/UpdateStreamStorageConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +49 -2
- package/dist-types/KinesisVideo.d.ts +15 -0
- package/dist-types/KinesisVideoClient.d.ts +4 -2
- package/dist-types/commands/CreateStreamCommand.d.ts +3 -0
- package/dist-types/commands/DescribeStreamStorageConfigurationCommand.d.ts +94 -0
- package/dist-types/commands/GetSignalingChannelEndpointCommand.d.ts +3 -1
- package/dist-types/commands/UpdateStreamStorageConfigurationCommand.d.ts +119 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +116 -12
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/KinesisVideo.d.ts +41 -0
- package/dist-types/ts3.4/KinesisVideoClient.d.ts +14 -2
- package/dist-types/ts3.4/commands/DescribeStreamStorageConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateStreamStorageConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +21 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +12 -12
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
ChannelType,
|
|
6
6
|
ComparisonOperator,
|
|
7
7
|
ConfigurationStatus,
|
|
8
|
+
DefaultStorageTier,
|
|
8
9
|
Format,
|
|
9
10
|
FormatConfigKey,
|
|
10
11
|
ImageSelectorType,
|
|
@@ -46,6 +47,9 @@ export interface CreateSignalingChannelInput {
|
|
|
46
47
|
export interface CreateSignalingChannelOutput {
|
|
47
48
|
ChannelARN?: string | undefined;
|
|
48
49
|
}
|
|
50
|
+
export interface StreamStorageConfiguration {
|
|
51
|
+
DefaultStorageTier: DefaultStorageTier | undefined;
|
|
52
|
+
}
|
|
49
53
|
export interface CreateStreamInput {
|
|
50
54
|
DeviceName?: string | undefined;
|
|
51
55
|
StreamName: string | undefined;
|
|
@@ -53,6 +57,7 @@ export interface CreateStreamInput {
|
|
|
53
57
|
KmsKeyId?: string | undefined;
|
|
54
58
|
DataRetentionInHours?: number | undefined;
|
|
55
59
|
Tags?: Record<string, string> | undefined;
|
|
60
|
+
StreamStorageConfiguration?: StreamStorageConfiguration | undefined;
|
|
56
61
|
}
|
|
57
62
|
export interface CreateStreamOutput {
|
|
58
63
|
StreamARN?: string | undefined;
|
|
@@ -219,6 +224,15 @@ export interface StreamInfo {
|
|
|
219
224
|
export interface DescribeStreamOutput {
|
|
220
225
|
StreamInfo?: StreamInfo | undefined;
|
|
221
226
|
}
|
|
227
|
+
export interface DescribeStreamStorageConfigurationInput {
|
|
228
|
+
StreamName?: string | undefined;
|
|
229
|
+
StreamARN?: string | undefined;
|
|
230
|
+
}
|
|
231
|
+
export interface DescribeStreamStorageConfigurationOutput {
|
|
232
|
+
StreamName?: string | undefined;
|
|
233
|
+
StreamARN?: string | undefined;
|
|
234
|
+
StreamStorageConfiguration?: StreamStorageConfiguration | undefined;
|
|
235
|
+
}
|
|
222
236
|
export interface GetDataEndpointInput {
|
|
223
237
|
StreamName?: string | undefined;
|
|
224
238
|
StreamARN?: string | undefined;
|
|
@@ -376,3 +390,10 @@ export interface UpdateStreamInput {
|
|
|
376
390
|
MediaType?: string | undefined;
|
|
377
391
|
}
|
|
378
392
|
export interface UpdateStreamOutput {}
|
|
393
|
+
export interface UpdateStreamStorageConfigurationInput {
|
|
394
|
+
StreamName?: string | undefined;
|
|
395
|
+
StreamARN?: string | undefined;
|
|
396
|
+
CurrentVersion: string | undefined;
|
|
397
|
+
StreamStorageConfiguration: StreamStorageConfiguration | undefined;
|
|
398
|
+
}
|
|
399
|
+
export interface UpdateStreamStorageConfigurationOutput {}
|
|
@@ -37,6 +37,8 @@ export declare var DescribeSignalingChannelInput: StaticStructureSchema;
|
|
|
37
37
|
export declare var DescribeSignalingChannelOutput: StaticStructureSchema;
|
|
38
38
|
export declare var DescribeStreamInput: StaticStructureSchema;
|
|
39
39
|
export declare var DescribeStreamOutput: StaticStructureSchema;
|
|
40
|
+
export declare var DescribeStreamStorageConfigurationInput: StaticStructureSchema;
|
|
41
|
+
export declare var DescribeStreamStorageConfigurationOutput: StaticStructureSchema;
|
|
40
42
|
export declare var DeviceStreamLimitExceededException: StaticErrorSchema;
|
|
41
43
|
export declare var EdgeAgentStatus: StaticStructureSchema;
|
|
42
44
|
export declare var EdgeConfig: StaticStructureSchema;
|
|
@@ -82,6 +84,7 @@ export declare var StartEdgeConfigurationUpdateOutput: StaticStructureSchema;
|
|
|
82
84
|
export declare var StreamEdgeConfigurationNotFoundException: StaticErrorSchema;
|
|
83
85
|
export declare var StreamInfo: StaticStructureSchema;
|
|
84
86
|
export declare var StreamNameCondition: StaticStructureSchema;
|
|
87
|
+
export declare var StreamStorageConfiguration: StaticStructureSchema;
|
|
85
88
|
export declare var Tag: StaticStructureSchema;
|
|
86
89
|
export declare var TagResourceInput: StaticStructureSchema;
|
|
87
90
|
export declare var TagResourceOutput: StaticStructureSchema;
|
|
@@ -104,6 +107,8 @@ export declare var UpdateSignalingChannelInput: StaticStructureSchema;
|
|
|
104
107
|
export declare var UpdateSignalingChannelOutput: StaticStructureSchema;
|
|
105
108
|
export declare var UpdateStreamInput: StaticStructureSchema;
|
|
106
109
|
export declare var UpdateStreamOutput: StaticStructureSchema;
|
|
110
|
+
export declare var UpdateStreamStorageConfigurationInput: StaticStructureSchema;
|
|
111
|
+
export declare var UpdateStreamStorageConfigurationOutput: StaticStructureSchema;
|
|
107
112
|
export declare var UploaderConfig: StaticStructureSchema;
|
|
108
113
|
export declare var VersionMismatchException: StaticErrorSchema;
|
|
109
114
|
export declare var __Unit: "unit";
|
|
@@ -131,6 +136,7 @@ export declare var DescribeMediaStorageConfiguration: StaticOperationSchema;
|
|
|
131
136
|
export declare var DescribeNotificationConfiguration: StaticOperationSchema;
|
|
132
137
|
export declare var DescribeSignalingChannel: StaticOperationSchema;
|
|
133
138
|
export declare var DescribeStream: StaticOperationSchema;
|
|
139
|
+
export declare var DescribeStreamStorageConfiguration: StaticOperationSchema;
|
|
134
140
|
export declare var GetDataEndpoint: StaticOperationSchema;
|
|
135
141
|
export declare var GetSignalingChannelEndpoint: StaticOperationSchema;
|
|
136
142
|
export declare var ListEdgeAgentConfigurations: StaticOperationSchema;
|
|
@@ -149,3 +155,4 @@ export declare var UpdateMediaStorageConfiguration: StaticOperationSchema;
|
|
|
149
155
|
export declare var UpdateNotificationConfiguration: StaticOperationSchema;
|
|
150
156
|
export declare var UpdateSignalingChannel: StaticOperationSchema;
|
|
151
157
|
export declare var UpdateStream: StaticOperationSchema;
|
|
158
|
+
export declare var UpdateStreamStorageConfiguration: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-video",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Video Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.938.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",
|
|
@@ -20,17 +20,17 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|