@aws-sdk/client-kinesis-video 3.934.0 → 3.935.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 +83 -82
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +82 -0
- package/dist-es/models/errors.js +211 -0
- package/dist-es/models/models_0.js +1 -293
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +218 -0
- package/dist-types/models/errors.d.ts +221 -0
- package/dist-types/models/models_0.d.ts +1 -439
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +109 -0
- package/dist-types/ts3.4/models/errors.d.ts +137 -0
- package/dist-types/ts3.4/models/models_0.d.ts +19 -246
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { KinesisVideoServiceException as __BaseException } from "./KinesisVideoServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class AccountChannelLimitExceededException extends __BaseException {
|
|
12
|
+
readonly name: "AccountChannelLimitExceededException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<
|
|
17
|
+
AccountChannelLimitExceededException,
|
|
18
|
+
__BaseException
|
|
19
|
+
>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export declare class AccountStreamLimitExceededException extends __BaseException {
|
|
23
|
+
readonly name: "AccountStreamLimitExceededException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
Message?: string | undefined;
|
|
26
|
+
constructor(
|
|
27
|
+
opts: __ExceptionOptionType<
|
|
28
|
+
AccountStreamLimitExceededException,
|
|
29
|
+
__BaseException
|
|
30
|
+
>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
export declare class ClientLimitExceededException extends __BaseException {
|
|
34
|
+
readonly name: "ClientLimitExceededException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export declare class InvalidArgumentException extends __BaseException {
|
|
42
|
+
readonly name: "InvalidArgumentException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
Message?: string | undefined;
|
|
45
|
+
constructor(
|
|
46
|
+
opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
50
|
+
readonly name: "ResourceInUseException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
Message?: string | undefined;
|
|
53
|
+
constructor(
|
|
54
|
+
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
export declare class TagsPerResourceExceededLimitException extends __BaseException {
|
|
58
|
+
readonly name: "TagsPerResourceExceededLimitException";
|
|
59
|
+
readonly $fault: "client";
|
|
60
|
+
Message?: string | undefined;
|
|
61
|
+
constructor(
|
|
62
|
+
opts: __ExceptionOptionType<
|
|
63
|
+
TagsPerResourceExceededLimitException,
|
|
64
|
+
__BaseException
|
|
65
|
+
>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
export declare class DeviceStreamLimitExceededException extends __BaseException {
|
|
69
|
+
readonly name: "DeviceStreamLimitExceededException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
Message?: string | undefined;
|
|
72
|
+
constructor(
|
|
73
|
+
opts: __ExceptionOptionType<
|
|
74
|
+
DeviceStreamLimitExceededException,
|
|
75
|
+
__BaseException
|
|
76
|
+
>
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
export declare class InvalidDeviceException extends __BaseException {
|
|
80
|
+
readonly name: "InvalidDeviceException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
Message?: string | undefined;
|
|
83
|
+
constructor(
|
|
84
|
+
opts: __ExceptionOptionType<InvalidDeviceException, __BaseException>
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
88
|
+
readonly name: "ResourceNotFoundException";
|
|
89
|
+
readonly $fault: "client";
|
|
90
|
+
Message?: string | undefined;
|
|
91
|
+
constructor(
|
|
92
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
export declare class StreamEdgeConfigurationNotFoundException extends __BaseException {
|
|
96
|
+
readonly name: "StreamEdgeConfigurationNotFoundException";
|
|
97
|
+
readonly $fault: "client";
|
|
98
|
+
Message?: string | undefined;
|
|
99
|
+
constructor(
|
|
100
|
+
opts: __ExceptionOptionType<
|
|
101
|
+
StreamEdgeConfigurationNotFoundException,
|
|
102
|
+
__BaseException
|
|
103
|
+
>
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
export declare class VersionMismatchException extends __BaseException {
|
|
107
|
+
readonly name: "VersionMismatchException";
|
|
108
|
+
readonly $fault: "client";
|
|
109
|
+
Message?: string | undefined;
|
|
110
|
+
constructor(
|
|
111
|
+
opts: __ExceptionOptionType<VersionMismatchException, __BaseException>
|
|
112
|
+
);
|
|
113
|
+
}
|
|
114
|
+
export declare class NotAuthorizedException extends __BaseException {
|
|
115
|
+
readonly name: "NotAuthorizedException";
|
|
116
|
+
readonly $fault: "client";
|
|
117
|
+
Message?: string | undefined;
|
|
118
|
+
constructor(
|
|
119
|
+
opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
export declare class InvalidResourceFormatException extends __BaseException {
|
|
123
|
+
readonly name: "InvalidResourceFormatException";
|
|
124
|
+
readonly $fault: "client";
|
|
125
|
+
Message?: string | undefined;
|
|
126
|
+
constructor(
|
|
127
|
+
opts: __ExceptionOptionType<InvalidResourceFormatException, __BaseException>
|
|
128
|
+
);
|
|
129
|
+
}
|
|
130
|
+
export declare class NoDataRetentionException extends __BaseException {
|
|
131
|
+
readonly name: "NoDataRetentionException";
|
|
132
|
+
readonly $fault: "client";
|
|
133
|
+
Message?: string | undefined;
|
|
134
|
+
constructor(
|
|
135
|
+
opts: __ExceptionOptionType<NoDataRetentionException, __BaseException>
|
|
136
|
+
);
|
|
137
|
+
}
|
|
@@ -1,58 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
);
|
|
21
|
-
}
|
|
22
|
-
export declare class AccountStreamLimitExceededException extends __BaseException {
|
|
23
|
-
readonly name: "AccountStreamLimitExceededException";
|
|
24
|
-
readonly $fault: "client";
|
|
25
|
-
Message?: string | undefined;
|
|
26
|
-
constructor(
|
|
27
|
-
opts: __ExceptionOptionType<
|
|
28
|
-
AccountStreamLimitExceededException,
|
|
29
|
-
__BaseException
|
|
30
|
-
>
|
|
31
|
-
);
|
|
32
|
-
}
|
|
33
|
-
export declare const APIName: {
|
|
34
|
-
readonly GET_CLIP: "GET_CLIP";
|
|
35
|
-
readonly GET_DASH_STREAMING_SESSION_URL: "GET_DASH_STREAMING_SESSION_URL";
|
|
36
|
-
readonly GET_HLS_STREAMING_SESSION_URL: "GET_HLS_STREAMING_SESSION_URL";
|
|
37
|
-
readonly GET_IMAGES: "GET_IMAGES";
|
|
38
|
-
readonly GET_MEDIA: "GET_MEDIA";
|
|
39
|
-
readonly GET_MEDIA_FOR_FRAGMENT_LIST: "GET_MEDIA_FOR_FRAGMENT_LIST";
|
|
40
|
-
readonly LIST_FRAGMENTS: "LIST_FRAGMENTS";
|
|
41
|
-
readonly PUT_MEDIA: "PUT_MEDIA";
|
|
42
|
-
};
|
|
43
|
-
export type APIName = (typeof APIName)[keyof typeof APIName];
|
|
44
|
-
export declare const Status: {
|
|
45
|
-
readonly ACTIVE: "ACTIVE";
|
|
46
|
-
readonly CREATING: "CREATING";
|
|
47
|
-
readonly DELETING: "DELETING";
|
|
48
|
-
readonly UPDATING: "UPDATING";
|
|
49
|
-
};
|
|
50
|
-
export type Status = (typeof Status)[keyof typeof Status];
|
|
51
|
-
export declare const ChannelType: {
|
|
52
|
-
readonly FULL_MESH: "FULL_MESH";
|
|
53
|
-
readonly SINGLE_MASTER: "SINGLE_MASTER";
|
|
54
|
-
};
|
|
55
|
-
export type ChannelType = (typeof ChannelType)[keyof typeof ChannelType];
|
|
1
|
+
import {
|
|
2
|
+
APIName,
|
|
3
|
+
ChannelProtocol,
|
|
4
|
+
ChannelRole,
|
|
5
|
+
ChannelType,
|
|
6
|
+
ComparisonOperator,
|
|
7
|
+
ConfigurationStatus,
|
|
8
|
+
Format,
|
|
9
|
+
FormatConfigKey,
|
|
10
|
+
ImageSelectorType,
|
|
11
|
+
MediaStorageConfigurationStatus,
|
|
12
|
+
MediaUriType,
|
|
13
|
+
RecorderStatus,
|
|
14
|
+
Status,
|
|
15
|
+
StrategyOnFullSize,
|
|
16
|
+
SyncStatus,
|
|
17
|
+
UpdateDataRetentionOperation,
|
|
18
|
+
UploaderStatus,
|
|
19
|
+
} from "./enums";
|
|
56
20
|
export interface SingleMasterConfiguration {
|
|
57
21
|
MessageTtlSeconds?: number | undefined;
|
|
58
22
|
}
|
|
@@ -65,41 +29,10 @@ export interface ChannelInfo {
|
|
|
65
29
|
SingleMasterConfiguration?: SingleMasterConfiguration | undefined;
|
|
66
30
|
Version?: string | undefined;
|
|
67
31
|
}
|
|
68
|
-
export declare const ComparisonOperator: {
|
|
69
|
-
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
70
|
-
};
|
|
71
|
-
export type ComparisonOperator =
|
|
72
|
-
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
73
32
|
export interface ChannelNameCondition {
|
|
74
33
|
ComparisonOperator?: ComparisonOperator | undefined;
|
|
75
34
|
ComparisonValue?: string | undefined;
|
|
76
35
|
}
|
|
77
|
-
export declare const ChannelProtocol: {
|
|
78
|
-
readonly HTTPS: "HTTPS";
|
|
79
|
-
readonly WEBRTC: "WEBRTC";
|
|
80
|
-
readonly WSS: "WSS";
|
|
81
|
-
};
|
|
82
|
-
export type ChannelProtocol =
|
|
83
|
-
(typeof ChannelProtocol)[keyof typeof ChannelProtocol];
|
|
84
|
-
export declare const ChannelRole: {
|
|
85
|
-
readonly MASTER: "MASTER";
|
|
86
|
-
readonly VIEWER: "VIEWER";
|
|
87
|
-
};
|
|
88
|
-
export type ChannelRole = (typeof ChannelRole)[keyof typeof ChannelRole];
|
|
89
|
-
export declare class ClientLimitExceededException extends __BaseException {
|
|
90
|
-
readonly name: "ClientLimitExceededException";
|
|
91
|
-
readonly $fault: "client";
|
|
92
|
-
Message?: string | undefined;
|
|
93
|
-
constructor(
|
|
94
|
-
opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>
|
|
95
|
-
);
|
|
96
|
-
}
|
|
97
|
-
export declare const ConfigurationStatus: {
|
|
98
|
-
readonly DISABLED: "DISABLED";
|
|
99
|
-
readonly ENABLED: "ENABLED";
|
|
100
|
-
};
|
|
101
|
-
export type ConfigurationStatus =
|
|
102
|
-
(typeof ConfigurationStatus)[keyof typeof ConfigurationStatus];
|
|
103
36
|
export interface Tag {
|
|
104
37
|
Key: string | undefined;
|
|
105
38
|
Value: string | undefined;
|
|
@@ -113,33 +46,6 @@ export interface CreateSignalingChannelInput {
|
|
|
113
46
|
export interface CreateSignalingChannelOutput {
|
|
114
47
|
ChannelARN?: string | undefined;
|
|
115
48
|
}
|
|
116
|
-
export declare class InvalidArgumentException extends __BaseException {
|
|
117
|
-
readonly name: "InvalidArgumentException";
|
|
118
|
-
readonly $fault: "client";
|
|
119
|
-
Message?: string | undefined;
|
|
120
|
-
constructor(
|
|
121
|
-
opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
|
|
122
|
-
);
|
|
123
|
-
}
|
|
124
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
125
|
-
readonly name: "ResourceInUseException";
|
|
126
|
-
readonly $fault: "client";
|
|
127
|
-
Message?: string | undefined;
|
|
128
|
-
constructor(
|
|
129
|
-
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
130
|
-
);
|
|
131
|
-
}
|
|
132
|
-
export declare class TagsPerResourceExceededLimitException extends __BaseException {
|
|
133
|
-
readonly name: "TagsPerResourceExceededLimitException";
|
|
134
|
-
readonly $fault: "client";
|
|
135
|
-
Message?: string | undefined;
|
|
136
|
-
constructor(
|
|
137
|
-
opts: __ExceptionOptionType<
|
|
138
|
-
TagsPerResourceExceededLimitException,
|
|
139
|
-
__BaseException
|
|
140
|
-
>
|
|
141
|
-
);
|
|
142
|
-
}
|
|
143
49
|
export interface CreateStreamInput {
|
|
144
50
|
DeviceName?: string | undefined;
|
|
145
51
|
StreamName: string | undefined;
|
|
@@ -151,81 +57,21 @@ export interface CreateStreamInput {
|
|
|
151
57
|
export interface CreateStreamOutput {
|
|
152
58
|
StreamARN?: string | undefined;
|
|
153
59
|
}
|
|
154
|
-
export declare class DeviceStreamLimitExceededException extends __BaseException {
|
|
155
|
-
readonly name: "DeviceStreamLimitExceededException";
|
|
156
|
-
readonly $fault: "client";
|
|
157
|
-
Message?: string | undefined;
|
|
158
|
-
constructor(
|
|
159
|
-
opts: __ExceptionOptionType<
|
|
160
|
-
DeviceStreamLimitExceededException,
|
|
161
|
-
__BaseException
|
|
162
|
-
>
|
|
163
|
-
);
|
|
164
|
-
}
|
|
165
|
-
export declare class InvalidDeviceException extends __BaseException {
|
|
166
|
-
readonly name: "InvalidDeviceException";
|
|
167
|
-
readonly $fault: "client";
|
|
168
|
-
Message?: string | undefined;
|
|
169
|
-
constructor(
|
|
170
|
-
opts: __ExceptionOptionType<InvalidDeviceException, __BaseException>
|
|
171
|
-
);
|
|
172
|
-
}
|
|
173
60
|
export interface DeleteEdgeConfigurationInput {
|
|
174
61
|
StreamName?: string | undefined;
|
|
175
62
|
StreamARN?: string | undefined;
|
|
176
63
|
}
|
|
177
64
|
export interface DeleteEdgeConfigurationOutput {}
|
|
178
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
179
|
-
readonly name: "ResourceNotFoundException";
|
|
180
|
-
readonly $fault: "client";
|
|
181
|
-
Message?: string | undefined;
|
|
182
|
-
constructor(
|
|
183
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
184
|
-
);
|
|
185
|
-
}
|
|
186
|
-
export declare class StreamEdgeConfigurationNotFoundException extends __BaseException {
|
|
187
|
-
readonly name: "StreamEdgeConfigurationNotFoundException";
|
|
188
|
-
readonly $fault: "client";
|
|
189
|
-
Message?: string | undefined;
|
|
190
|
-
constructor(
|
|
191
|
-
opts: __ExceptionOptionType<
|
|
192
|
-
StreamEdgeConfigurationNotFoundException,
|
|
193
|
-
__BaseException
|
|
194
|
-
>
|
|
195
|
-
);
|
|
196
|
-
}
|
|
197
65
|
export interface DeleteSignalingChannelInput {
|
|
198
66
|
ChannelARN: string | undefined;
|
|
199
67
|
CurrentVersion?: string | undefined;
|
|
200
68
|
}
|
|
201
69
|
export interface DeleteSignalingChannelOutput {}
|
|
202
|
-
export declare class VersionMismatchException extends __BaseException {
|
|
203
|
-
readonly name: "VersionMismatchException";
|
|
204
|
-
readonly $fault: "client";
|
|
205
|
-
Message?: string | undefined;
|
|
206
|
-
constructor(
|
|
207
|
-
opts: __ExceptionOptionType<VersionMismatchException, __BaseException>
|
|
208
|
-
);
|
|
209
|
-
}
|
|
210
70
|
export interface DeleteStreamInput {
|
|
211
71
|
StreamARN: string | undefined;
|
|
212
72
|
CurrentVersion?: string | undefined;
|
|
213
73
|
}
|
|
214
74
|
export interface DeleteStreamOutput {}
|
|
215
|
-
export declare class NotAuthorizedException extends __BaseException {
|
|
216
|
-
readonly name: "NotAuthorizedException";
|
|
217
|
-
readonly $fault: "client";
|
|
218
|
-
Message?: string | undefined;
|
|
219
|
-
constructor(
|
|
220
|
-
opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>
|
|
221
|
-
);
|
|
222
|
-
}
|
|
223
|
-
export declare const StrategyOnFullSize: {
|
|
224
|
-
readonly DELETE_OLDEST_MEDIA: "DELETE_OLDEST_MEDIA";
|
|
225
|
-
readonly DENY_NEW_MEDIA: "DENY_NEW_MEDIA";
|
|
226
|
-
};
|
|
227
|
-
export type StrategyOnFullSize =
|
|
228
|
-
(typeof StrategyOnFullSize)[keyof typeof StrategyOnFullSize];
|
|
229
75
|
export interface LocalSizeConfig {
|
|
230
76
|
MaxLocalMediaSizeInMB?: number | undefined;
|
|
231
77
|
StrategyOnFullSize?: StrategyOnFullSize | undefined;
|
|
@@ -239,26 +85,12 @@ export interface DescribeEdgeConfigurationInput {
|
|
|
239
85
|
StreamName?: string | undefined;
|
|
240
86
|
StreamARN?: string | undefined;
|
|
241
87
|
}
|
|
242
|
-
export declare const RecorderStatus: {
|
|
243
|
-
readonly SUCCESS: "SUCCESS";
|
|
244
|
-
readonly SYSTEM_ERROR: "SYSTEM_ERROR";
|
|
245
|
-
readonly USER_ERROR: "USER_ERROR";
|
|
246
|
-
};
|
|
247
|
-
export type RecorderStatus =
|
|
248
|
-
(typeof RecorderStatus)[keyof typeof RecorderStatus];
|
|
249
88
|
export interface LastRecorderStatus {
|
|
250
89
|
JobStatusDetails?: string | undefined;
|
|
251
90
|
LastCollectedTime?: Date | undefined;
|
|
252
91
|
LastUpdatedTime?: Date | undefined;
|
|
253
92
|
RecorderStatus?: RecorderStatus | undefined;
|
|
254
93
|
}
|
|
255
|
-
export declare const UploaderStatus: {
|
|
256
|
-
readonly SUCCESS: "SUCCESS";
|
|
257
|
-
readonly SYSTEM_ERROR: "SYSTEM_ERROR";
|
|
258
|
-
readonly USER_ERROR: "USER_ERROR";
|
|
259
|
-
};
|
|
260
|
-
export type UploaderStatus =
|
|
261
|
-
(typeof UploaderStatus)[keyof typeof UploaderStatus];
|
|
262
94
|
export interface LastUploaderStatus {
|
|
263
95
|
JobStatusDetails?: string | undefined;
|
|
264
96
|
LastCollectedTime?: Date | undefined;
|
|
@@ -269,11 +101,6 @@ export interface EdgeAgentStatus {
|
|
|
269
101
|
LastRecorderStatus?: LastRecorderStatus | undefined;
|
|
270
102
|
LastUploaderStatus?: LastUploaderStatus | undefined;
|
|
271
103
|
}
|
|
272
|
-
export declare const MediaUriType: {
|
|
273
|
-
readonly FILE_URI: "FILE_URI";
|
|
274
|
-
readonly RTSP_URI: "RTSP_URI";
|
|
275
|
-
};
|
|
276
|
-
export type MediaUriType = (typeof MediaUriType)[keyof typeof MediaUriType];
|
|
277
104
|
export interface MediaSourceConfig {
|
|
278
105
|
MediaUriSecretArn: string | undefined;
|
|
279
106
|
MediaUriType: MediaUriType | undefined;
|
|
@@ -295,16 +122,6 @@ export interface EdgeConfig {
|
|
|
295
122
|
UploaderConfig?: UploaderConfig | undefined;
|
|
296
123
|
DeletionConfig?: DeletionConfig | undefined;
|
|
297
124
|
}
|
|
298
|
-
export declare const SyncStatus: {
|
|
299
|
-
readonly ACKNOWLEDGED: "ACKNOWLEDGED";
|
|
300
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
301
|
-
readonly DELETING: "DELETING";
|
|
302
|
-
readonly DELETING_ACKNOWLEDGED: "DELETING_ACKNOWLEDGED";
|
|
303
|
-
readonly IN_SYNC: "IN_SYNC";
|
|
304
|
-
readonly SYNCING: "SYNCING";
|
|
305
|
-
readonly SYNC_FAILED: "SYNC_FAILED";
|
|
306
|
-
};
|
|
307
|
-
export type SyncStatus = (typeof SyncStatus)[keyof typeof SyncStatus];
|
|
308
125
|
export interface DescribeEdgeConfigurationOutput {
|
|
309
126
|
StreamName?: string | undefined;
|
|
310
127
|
StreamARN?: string | undefined;
|
|
@@ -323,22 +140,6 @@ export interface ImageGenerationDestinationConfig {
|
|
|
323
140
|
Uri: string | undefined;
|
|
324
141
|
DestinationRegion: string | undefined;
|
|
325
142
|
}
|
|
326
|
-
export declare const Format: {
|
|
327
|
-
readonly JPEG: "JPEG";
|
|
328
|
-
readonly PNG: "PNG";
|
|
329
|
-
};
|
|
330
|
-
export type Format = (typeof Format)[keyof typeof Format];
|
|
331
|
-
export declare const FormatConfigKey: {
|
|
332
|
-
readonly JPEGQuality: "JPEGQuality";
|
|
333
|
-
};
|
|
334
|
-
export type FormatConfigKey =
|
|
335
|
-
(typeof FormatConfigKey)[keyof typeof FormatConfigKey];
|
|
336
|
-
export declare const ImageSelectorType: {
|
|
337
|
-
readonly PRODUCER_TIMESTAMP: "PRODUCER_TIMESTAMP";
|
|
338
|
-
readonly SERVER_TIMESTAMP: "SERVER_TIMESTAMP";
|
|
339
|
-
};
|
|
340
|
-
export type ImageSelectorType =
|
|
341
|
-
(typeof ImageSelectorType)[keyof typeof ImageSelectorType];
|
|
342
143
|
export interface ImageGenerationConfiguration {
|
|
343
144
|
Status: ConfigurationStatus | undefined;
|
|
344
145
|
ImageSelectorType: ImageSelectorType | undefined;
|
|
@@ -372,12 +173,6 @@ export interface DescribeMediaStorageConfigurationInput {
|
|
|
372
173
|
ChannelName?: string | undefined;
|
|
373
174
|
ChannelARN?: string | undefined;
|
|
374
175
|
}
|
|
375
|
-
export declare const MediaStorageConfigurationStatus: {
|
|
376
|
-
readonly DISABLED: "DISABLED";
|
|
377
|
-
readonly ENABLED: "ENABLED";
|
|
378
|
-
};
|
|
379
|
-
export type MediaStorageConfigurationStatus =
|
|
380
|
-
(typeof MediaStorageConfigurationStatus)[keyof typeof MediaStorageConfigurationStatus];
|
|
381
176
|
export interface MediaStorageConfiguration {
|
|
382
177
|
StreamARN?: string | undefined;
|
|
383
178
|
Status: MediaStorageConfigurationStatus | undefined;
|
|
@@ -449,14 +244,6 @@ export interface ResourceEndpointListItem {
|
|
|
449
244
|
export interface GetSignalingChannelEndpointOutput {
|
|
450
245
|
ResourceEndpointList?: ResourceEndpointListItem[] | undefined;
|
|
451
246
|
}
|
|
452
|
-
export declare class InvalidResourceFormatException extends __BaseException {
|
|
453
|
-
readonly name: "InvalidResourceFormatException";
|
|
454
|
-
readonly $fault: "client";
|
|
455
|
-
Message?: string | undefined;
|
|
456
|
-
constructor(
|
|
457
|
-
opts: __ExceptionOptionType<InvalidResourceFormatException, __BaseException>
|
|
458
|
-
);
|
|
459
|
-
}
|
|
460
247
|
export interface ListEdgeAgentConfigurationsInput {
|
|
461
248
|
HubDeviceArn: string | undefined;
|
|
462
249
|
MaxResults?: number | undefined;
|
|
@@ -514,14 +301,6 @@ export interface ListTagsForStreamOutput {
|
|
|
514
301
|
NextToken?: string | undefined;
|
|
515
302
|
Tags?: Record<string, string> | undefined;
|
|
516
303
|
}
|
|
517
|
-
export declare class NoDataRetentionException extends __BaseException {
|
|
518
|
-
readonly name: "NoDataRetentionException";
|
|
519
|
-
readonly $fault: "client";
|
|
520
|
-
Message?: string | undefined;
|
|
521
|
-
constructor(
|
|
522
|
-
opts: __ExceptionOptionType<NoDataRetentionException, __BaseException>
|
|
523
|
-
);
|
|
524
|
-
}
|
|
525
304
|
export interface StartEdgeConfigurationUpdateInput {
|
|
526
305
|
StreamName?: string | undefined;
|
|
527
306
|
StreamARN?: string | undefined;
|
|
@@ -558,12 +337,6 @@ export interface UntagStreamInput {
|
|
|
558
337
|
TagKeyList: string[] | undefined;
|
|
559
338
|
}
|
|
560
339
|
export interface UntagStreamOutput {}
|
|
561
|
-
export declare const UpdateDataRetentionOperation: {
|
|
562
|
-
readonly DECREASE_DATA_RETENTION: "DECREASE_DATA_RETENTION";
|
|
563
|
-
readonly INCREASE_DATA_RETENTION: "INCREASE_DATA_RETENTION";
|
|
564
|
-
};
|
|
565
|
-
export type UpdateDataRetentionOperation =
|
|
566
|
-
(typeof UpdateDataRetentionOperation)[keyof typeof UpdateDataRetentionOperation];
|
|
567
340
|
export interface UpdateDataRetentionInput {
|
|
568
341
|
StreamName?: string | undefined;
|
|
569
342
|
StreamARN?: string | undefined;
|
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.935.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,38 +20,38 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
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.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|