@aws-sdk/client-ivs 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/IvsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +143 -2
- package/dist-cjs/protocols/Aws_restJson1.js +293 -954
- package/dist-es/index.js +1 -0
- package/dist-es/models/IvsServiceException.js +12 -0
- package/dist-es/models/models_0.js +132 -1
- package/dist-es/protocols/Aws_restJson1.js +589 -1063
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IvsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +72 -31
- package/dist-types/ts3.4/Ivs.d.ts +145 -0
- package/dist-types/ts3.4/IvsClient.d.ts +101 -0
- package/dist-types/ts3.4/commands/BatchGetChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/BatchGetStreamKeyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateRecordingConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateStreamKeyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePlaybackKeyPairCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteRecordingConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteStreamKeyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPlaybackKeyPairCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetRecordingConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetStreamCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetStreamKeyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetStreamSessionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ImportPlaybackKeyPairCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPlaybackKeyPairsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListRecordingConfigurationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListStreamKeysCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListStreamSessionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutMetadataCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopStreamCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +28 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/IvsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +959 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPlaybackKeyPairsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListRecordingConfigurationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStreamKeysPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStreamSessionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStreamsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +86 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
|
@@ -0,0 +1,959 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IvsServiceException as __BaseException } from "./IvsServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
exceptionMessage?: string;
|
|
9
|
+
|
|
10
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
11
|
+
}
|
|
12
|
+
export interface BatchGetChannelRequest {
|
|
13
|
+
|
|
14
|
+
arns: string[] | undefined;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace BatchGetChannelRequest {
|
|
17
|
+
|
|
18
|
+
const filterSensitiveLog: (obj: BatchGetChannelRequest) => any;
|
|
19
|
+
}
|
|
20
|
+
export declare enum ChannelLatencyMode {
|
|
21
|
+
LowLatency = "LOW",
|
|
22
|
+
NormalLatency = "NORMAL"
|
|
23
|
+
}
|
|
24
|
+
export declare enum ChannelType {
|
|
25
|
+
BasicChannelType = "BASIC",
|
|
26
|
+
StandardChannelType = "STANDARD"
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export interface Channel {
|
|
30
|
+
|
|
31
|
+
arn?: string;
|
|
32
|
+
|
|
33
|
+
name?: string;
|
|
34
|
+
|
|
35
|
+
latencyMode?: ChannelLatencyMode | string;
|
|
36
|
+
|
|
37
|
+
type?: ChannelType | string;
|
|
38
|
+
|
|
39
|
+
recordingConfigurationArn?: string;
|
|
40
|
+
|
|
41
|
+
ingestEndpoint?: string;
|
|
42
|
+
|
|
43
|
+
playbackUrl?: string;
|
|
44
|
+
|
|
45
|
+
authorized?: boolean;
|
|
46
|
+
|
|
47
|
+
tags?: {
|
|
48
|
+
[key: string]: string;
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
export declare namespace Channel {
|
|
52
|
+
|
|
53
|
+
const filterSensitiveLog: (obj: Channel) => any;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export interface BatchError {
|
|
57
|
+
|
|
58
|
+
arn?: string;
|
|
59
|
+
|
|
60
|
+
code?: string;
|
|
61
|
+
|
|
62
|
+
message?: string;
|
|
63
|
+
}
|
|
64
|
+
export declare namespace BatchError {
|
|
65
|
+
|
|
66
|
+
const filterSensitiveLog: (obj: BatchError) => any;
|
|
67
|
+
}
|
|
68
|
+
export interface BatchGetChannelResponse {
|
|
69
|
+
|
|
70
|
+
channels?: Channel[];
|
|
71
|
+
|
|
72
|
+
errors?: BatchError[];
|
|
73
|
+
}
|
|
74
|
+
export declare namespace BatchGetChannelResponse {
|
|
75
|
+
|
|
76
|
+
const filterSensitiveLog: (obj: BatchGetChannelResponse) => any;
|
|
77
|
+
}
|
|
78
|
+
export interface BatchGetStreamKeyRequest {
|
|
79
|
+
|
|
80
|
+
arns: string[] | undefined;
|
|
81
|
+
}
|
|
82
|
+
export declare namespace BatchGetStreamKeyRequest {
|
|
83
|
+
|
|
84
|
+
const filterSensitiveLog: (obj: BatchGetStreamKeyRequest) => any;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export interface StreamKey {
|
|
88
|
+
|
|
89
|
+
arn?: string;
|
|
90
|
+
|
|
91
|
+
value?: string;
|
|
92
|
+
|
|
93
|
+
channelArn?: string;
|
|
94
|
+
|
|
95
|
+
tags?: {
|
|
96
|
+
[key: string]: string;
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
export declare namespace StreamKey {
|
|
100
|
+
|
|
101
|
+
const filterSensitiveLog: (obj: StreamKey) => any;
|
|
102
|
+
}
|
|
103
|
+
export interface BatchGetStreamKeyResponse {
|
|
104
|
+
|
|
105
|
+
streamKeys?: StreamKey[];
|
|
106
|
+
|
|
107
|
+
errors?: BatchError[];
|
|
108
|
+
}
|
|
109
|
+
export declare namespace BatchGetStreamKeyResponse {
|
|
110
|
+
|
|
111
|
+
const filterSensitiveLog: (obj: BatchGetStreamKeyResponse) => any;
|
|
112
|
+
}
|
|
113
|
+
export interface CreateChannelRequest {
|
|
114
|
+
|
|
115
|
+
name?: string;
|
|
116
|
+
|
|
117
|
+
latencyMode?: ChannelLatencyMode | string;
|
|
118
|
+
|
|
119
|
+
type?: ChannelType | string;
|
|
120
|
+
|
|
121
|
+
authorized?: boolean;
|
|
122
|
+
|
|
123
|
+
recordingConfigurationArn?: string;
|
|
124
|
+
|
|
125
|
+
tags?: {
|
|
126
|
+
[key: string]: string;
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
export declare namespace CreateChannelRequest {
|
|
130
|
+
|
|
131
|
+
const filterSensitiveLog: (obj: CreateChannelRequest) => any;
|
|
132
|
+
}
|
|
133
|
+
export interface CreateChannelResponse {
|
|
134
|
+
|
|
135
|
+
channel?: Channel;
|
|
136
|
+
|
|
137
|
+
streamKey?: StreamKey;
|
|
138
|
+
}
|
|
139
|
+
export declare namespace CreateChannelResponse {
|
|
140
|
+
|
|
141
|
+
const filterSensitiveLog: (obj: CreateChannelResponse) => any;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export declare class PendingVerification extends __BaseException {
|
|
145
|
+
readonly name: "PendingVerification";
|
|
146
|
+
readonly $fault: "client";
|
|
147
|
+
|
|
148
|
+
exceptionMessage?: string;
|
|
149
|
+
|
|
150
|
+
constructor(opts: __ExceptionOptionType<PendingVerification, __BaseException>);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
154
|
+
readonly name: "ResourceNotFoundException";
|
|
155
|
+
readonly $fault: "client";
|
|
156
|
+
|
|
157
|
+
exceptionMessage?: string;
|
|
158
|
+
|
|
159
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
163
|
+
readonly name: "ServiceQuotaExceededException";
|
|
164
|
+
readonly $fault: "client";
|
|
165
|
+
|
|
166
|
+
exceptionMessage?: string;
|
|
167
|
+
|
|
168
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
export declare class ValidationException extends __BaseException {
|
|
172
|
+
readonly name: "ValidationException";
|
|
173
|
+
readonly $fault: "client";
|
|
174
|
+
|
|
175
|
+
exceptionMessage?: string;
|
|
176
|
+
|
|
177
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
export declare class ConflictException extends __BaseException {
|
|
181
|
+
readonly name: "ConflictException";
|
|
182
|
+
readonly $fault: "client";
|
|
183
|
+
|
|
184
|
+
exceptionMessage?: string;
|
|
185
|
+
|
|
186
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export interface S3DestinationConfiguration {
|
|
190
|
+
|
|
191
|
+
bucketName: string | undefined;
|
|
192
|
+
}
|
|
193
|
+
export declare namespace S3DestinationConfiguration {
|
|
194
|
+
|
|
195
|
+
const filterSensitiveLog: (obj: S3DestinationConfiguration) => any;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export interface DestinationConfiguration {
|
|
199
|
+
|
|
200
|
+
s3?: S3DestinationConfiguration;
|
|
201
|
+
}
|
|
202
|
+
export declare namespace DestinationConfiguration {
|
|
203
|
+
|
|
204
|
+
const filterSensitiveLog: (obj: DestinationConfiguration) => any;
|
|
205
|
+
}
|
|
206
|
+
export declare enum RecordingMode {
|
|
207
|
+
Disabled = "DISABLED",
|
|
208
|
+
Interval = "INTERVAL"
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
export interface ThumbnailConfiguration {
|
|
212
|
+
|
|
213
|
+
recordingMode?: RecordingMode | string;
|
|
214
|
+
|
|
215
|
+
targetIntervalSeconds?: number;
|
|
216
|
+
}
|
|
217
|
+
export declare namespace ThumbnailConfiguration {
|
|
218
|
+
|
|
219
|
+
const filterSensitiveLog: (obj: ThumbnailConfiguration) => any;
|
|
220
|
+
}
|
|
221
|
+
export interface CreateRecordingConfigurationRequest {
|
|
222
|
+
|
|
223
|
+
name?: string;
|
|
224
|
+
|
|
225
|
+
destinationConfiguration: DestinationConfiguration | undefined;
|
|
226
|
+
|
|
227
|
+
tags?: {
|
|
228
|
+
[key: string]: string;
|
|
229
|
+
};
|
|
230
|
+
|
|
231
|
+
thumbnailConfiguration?: ThumbnailConfiguration;
|
|
232
|
+
}
|
|
233
|
+
export declare namespace CreateRecordingConfigurationRequest {
|
|
234
|
+
|
|
235
|
+
const filterSensitiveLog: (obj: CreateRecordingConfigurationRequest) => any;
|
|
236
|
+
}
|
|
237
|
+
export declare enum RecordingConfigurationState {
|
|
238
|
+
Active = "ACTIVE",
|
|
239
|
+
CreateFailed = "CREATE_FAILED",
|
|
240
|
+
Creating = "CREATING"
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export interface RecordingConfiguration {
|
|
244
|
+
|
|
245
|
+
arn: string | undefined;
|
|
246
|
+
|
|
247
|
+
name?: string;
|
|
248
|
+
|
|
249
|
+
destinationConfiguration: DestinationConfiguration | undefined;
|
|
250
|
+
|
|
251
|
+
state: RecordingConfigurationState | string | undefined;
|
|
252
|
+
|
|
253
|
+
tags?: {
|
|
254
|
+
[key: string]: string;
|
|
255
|
+
};
|
|
256
|
+
|
|
257
|
+
thumbnailConfiguration?: ThumbnailConfiguration;
|
|
258
|
+
}
|
|
259
|
+
export declare namespace RecordingConfiguration {
|
|
260
|
+
|
|
261
|
+
const filterSensitiveLog: (obj: RecordingConfiguration) => any;
|
|
262
|
+
}
|
|
263
|
+
export interface CreateRecordingConfigurationResponse {
|
|
264
|
+
|
|
265
|
+
recordingConfiguration?: RecordingConfiguration;
|
|
266
|
+
}
|
|
267
|
+
export declare namespace CreateRecordingConfigurationResponse {
|
|
268
|
+
|
|
269
|
+
const filterSensitiveLog: (obj: CreateRecordingConfigurationResponse) => any;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
export declare class InternalServerException extends __BaseException {
|
|
273
|
+
readonly name: "InternalServerException";
|
|
274
|
+
readonly $fault: "server";
|
|
275
|
+
|
|
276
|
+
exceptionMessage?: string;
|
|
277
|
+
|
|
278
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
279
|
+
}
|
|
280
|
+
export interface CreateStreamKeyRequest {
|
|
281
|
+
|
|
282
|
+
channelArn: string | undefined;
|
|
283
|
+
|
|
284
|
+
tags?: {
|
|
285
|
+
[key: string]: string;
|
|
286
|
+
};
|
|
287
|
+
}
|
|
288
|
+
export declare namespace CreateStreamKeyRequest {
|
|
289
|
+
|
|
290
|
+
const filterSensitiveLog: (obj: CreateStreamKeyRequest) => any;
|
|
291
|
+
}
|
|
292
|
+
export interface CreateStreamKeyResponse {
|
|
293
|
+
|
|
294
|
+
streamKey?: StreamKey;
|
|
295
|
+
}
|
|
296
|
+
export declare namespace CreateStreamKeyResponse {
|
|
297
|
+
|
|
298
|
+
const filterSensitiveLog: (obj: CreateStreamKeyResponse) => any;
|
|
299
|
+
}
|
|
300
|
+
export interface DeleteChannelRequest {
|
|
301
|
+
|
|
302
|
+
arn: string | undefined;
|
|
303
|
+
}
|
|
304
|
+
export declare namespace DeleteChannelRequest {
|
|
305
|
+
|
|
306
|
+
const filterSensitiveLog: (obj: DeleteChannelRequest) => any;
|
|
307
|
+
}
|
|
308
|
+
export interface DeletePlaybackKeyPairRequest {
|
|
309
|
+
|
|
310
|
+
arn: string | undefined;
|
|
311
|
+
}
|
|
312
|
+
export declare namespace DeletePlaybackKeyPairRequest {
|
|
313
|
+
|
|
314
|
+
const filterSensitiveLog: (obj: DeletePlaybackKeyPairRequest) => any;
|
|
315
|
+
}
|
|
316
|
+
export interface DeletePlaybackKeyPairResponse {
|
|
317
|
+
}
|
|
318
|
+
export declare namespace DeletePlaybackKeyPairResponse {
|
|
319
|
+
|
|
320
|
+
const filterSensitiveLog: (obj: DeletePlaybackKeyPairResponse) => any;
|
|
321
|
+
}
|
|
322
|
+
export interface DeleteRecordingConfigurationRequest {
|
|
323
|
+
|
|
324
|
+
arn: string | undefined;
|
|
325
|
+
}
|
|
326
|
+
export declare namespace DeleteRecordingConfigurationRequest {
|
|
327
|
+
|
|
328
|
+
const filterSensitiveLog: (obj: DeleteRecordingConfigurationRequest) => any;
|
|
329
|
+
}
|
|
330
|
+
export interface DeleteStreamKeyRequest {
|
|
331
|
+
|
|
332
|
+
arn: string | undefined;
|
|
333
|
+
}
|
|
334
|
+
export declare namespace DeleteStreamKeyRequest {
|
|
335
|
+
|
|
336
|
+
const filterSensitiveLog: (obj: DeleteStreamKeyRequest) => any;
|
|
337
|
+
}
|
|
338
|
+
export interface GetChannelRequest {
|
|
339
|
+
|
|
340
|
+
arn: string | undefined;
|
|
341
|
+
}
|
|
342
|
+
export declare namespace GetChannelRequest {
|
|
343
|
+
|
|
344
|
+
const filterSensitiveLog: (obj: GetChannelRequest) => any;
|
|
345
|
+
}
|
|
346
|
+
export interface GetChannelResponse {
|
|
347
|
+
|
|
348
|
+
channel?: Channel;
|
|
349
|
+
}
|
|
350
|
+
export declare namespace GetChannelResponse {
|
|
351
|
+
|
|
352
|
+
const filterSensitiveLog: (obj: GetChannelResponse) => any;
|
|
353
|
+
}
|
|
354
|
+
export interface GetPlaybackKeyPairRequest {
|
|
355
|
+
|
|
356
|
+
arn: string | undefined;
|
|
357
|
+
}
|
|
358
|
+
export declare namespace GetPlaybackKeyPairRequest {
|
|
359
|
+
|
|
360
|
+
const filterSensitiveLog: (obj: GetPlaybackKeyPairRequest) => any;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
export interface PlaybackKeyPair {
|
|
364
|
+
|
|
365
|
+
arn?: string;
|
|
366
|
+
|
|
367
|
+
name?: string;
|
|
368
|
+
|
|
369
|
+
fingerprint?: string;
|
|
370
|
+
|
|
371
|
+
tags?: {
|
|
372
|
+
[key: string]: string;
|
|
373
|
+
};
|
|
374
|
+
}
|
|
375
|
+
export declare namespace PlaybackKeyPair {
|
|
376
|
+
|
|
377
|
+
const filterSensitiveLog: (obj: PlaybackKeyPair) => any;
|
|
378
|
+
}
|
|
379
|
+
export interface GetPlaybackKeyPairResponse {
|
|
380
|
+
|
|
381
|
+
keyPair?: PlaybackKeyPair;
|
|
382
|
+
}
|
|
383
|
+
export declare namespace GetPlaybackKeyPairResponse {
|
|
384
|
+
|
|
385
|
+
const filterSensitiveLog: (obj: GetPlaybackKeyPairResponse) => any;
|
|
386
|
+
}
|
|
387
|
+
export interface GetRecordingConfigurationRequest {
|
|
388
|
+
|
|
389
|
+
arn: string | undefined;
|
|
390
|
+
}
|
|
391
|
+
export declare namespace GetRecordingConfigurationRequest {
|
|
392
|
+
|
|
393
|
+
const filterSensitiveLog: (obj: GetRecordingConfigurationRequest) => any;
|
|
394
|
+
}
|
|
395
|
+
export interface GetRecordingConfigurationResponse {
|
|
396
|
+
|
|
397
|
+
recordingConfiguration?: RecordingConfiguration;
|
|
398
|
+
}
|
|
399
|
+
export declare namespace GetRecordingConfigurationResponse {
|
|
400
|
+
|
|
401
|
+
const filterSensitiveLog: (obj: GetRecordingConfigurationResponse) => any;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
export declare class ChannelNotBroadcasting extends __BaseException {
|
|
405
|
+
readonly name: "ChannelNotBroadcasting";
|
|
406
|
+
readonly $fault: "client";
|
|
407
|
+
|
|
408
|
+
exceptionMessage?: string;
|
|
409
|
+
|
|
410
|
+
constructor(opts: __ExceptionOptionType<ChannelNotBroadcasting, __BaseException>);
|
|
411
|
+
}
|
|
412
|
+
export interface GetStreamRequest {
|
|
413
|
+
|
|
414
|
+
channelArn: string | undefined;
|
|
415
|
+
}
|
|
416
|
+
export declare namespace GetStreamRequest {
|
|
417
|
+
|
|
418
|
+
const filterSensitiveLog: (obj: GetStreamRequest) => any;
|
|
419
|
+
}
|
|
420
|
+
export declare enum StreamHealth {
|
|
421
|
+
Starving = "STARVING",
|
|
422
|
+
StreamHealthy = "HEALTHY",
|
|
423
|
+
Unknown = "UNKNOWN"
|
|
424
|
+
}
|
|
425
|
+
export declare enum StreamState {
|
|
426
|
+
StreamLive = "LIVE",
|
|
427
|
+
StreamOffline = "OFFLINE"
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
export interface _Stream {
|
|
431
|
+
|
|
432
|
+
channelArn?: string;
|
|
433
|
+
|
|
434
|
+
streamId?: string;
|
|
435
|
+
|
|
436
|
+
playbackUrl?: string;
|
|
437
|
+
|
|
438
|
+
startTime?: Date;
|
|
439
|
+
|
|
440
|
+
state?: StreamState | string;
|
|
441
|
+
|
|
442
|
+
health?: StreamHealth | string;
|
|
443
|
+
|
|
444
|
+
viewerCount?: number;
|
|
445
|
+
}
|
|
446
|
+
export declare namespace _Stream {
|
|
447
|
+
|
|
448
|
+
const filterSensitiveLog: (obj: _Stream) => any;
|
|
449
|
+
}
|
|
450
|
+
export interface GetStreamResponse {
|
|
451
|
+
|
|
452
|
+
stream?: _Stream;
|
|
453
|
+
}
|
|
454
|
+
export declare namespace GetStreamResponse {
|
|
455
|
+
|
|
456
|
+
const filterSensitiveLog: (obj: GetStreamResponse) => any;
|
|
457
|
+
}
|
|
458
|
+
export interface GetStreamKeyRequest {
|
|
459
|
+
|
|
460
|
+
arn: string | undefined;
|
|
461
|
+
}
|
|
462
|
+
export declare namespace GetStreamKeyRequest {
|
|
463
|
+
|
|
464
|
+
const filterSensitiveLog: (obj: GetStreamKeyRequest) => any;
|
|
465
|
+
}
|
|
466
|
+
export interface GetStreamKeyResponse {
|
|
467
|
+
|
|
468
|
+
streamKey?: StreamKey;
|
|
469
|
+
}
|
|
470
|
+
export declare namespace GetStreamKeyResponse {
|
|
471
|
+
|
|
472
|
+
const filterSensitiveLog: (obj: GetStreamKeyResponse) => any;
|
|
473
|
+
}
|
|
474
|
+
export interface GetStreamSessionRequest {
|
|
475
|
+
|
|
476
|
+
channelArn: string | undefined;
|
|
477
|
+
|
|
478
|
+
streamId?: string;
|
|
479
|
+
}
|
|
480
|
+
export declare namespace GetStreamSessionRequest {
|
|
481
|
+
|
|
482
|
+
const filterSensitiveLog: (obj: GetStreamSessionRequest) => any;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
export interface AudioConfiguration {
|
|
486
|
+
|
|
487
|
+
codec?: string;
|
|
488
|
+
|
|
489
|
+
targetBitrate?: number;
|
|
490
|
+
|
|
491
|
+
sampleRate?: number;
|
|
492
|
+
|
|
493
|
+
channels?: number;
|
|
494
|
+
}
|
|
495
|
+
export declare namespace AudioConfiguration {
|
|
496
|
+
|
|
497
|
+
const filterSensitiveLog: (obj: AudioConfiguration) => any;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
export interface VideoConfiguration {
|
|
501
|
+
|
|
502
|
+
avcProfile?: string;
|
|
503
|
+
|
|
504
|
+
avcLevel?: string;
|
|
505
|
+
|
|
506
|
+
codec?: string;
|
|
507
|
+
|
|
508
|
+
encoder?: string;
|
|
509
|
+
|
|
510
|
+
targetBitrate?: number;
|
|
511
|
+
|
|
512
|
+
targetFramerate?: number;
|
|
513
|
+
|
|
514
|
+
videoHeight?: number;
|
|
515
|
+
|
|
516
|
+
videoWidth?: number;
|
|
517
|
+
}
|
|
518
|
+
export declare namespace VideoConfiguration {
|
|
519
|
+
|
|
520
|
+
const filterSensitiveLog: (obj: VideoConfiguration) => any;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
export interface IngestConfiguration {
|
|
524
|
+
|
|
525
|
+
video?: VideoConfiguration;
|
|
526
|
+
|
|
527
|
+
audio?: AudioConfiguration;
|
|
528
|
+
}
|
|
529
|
+
export declare namespace IngestConfiguration {
|
|
530
|
+
|
|
531
|
+
const filterSensitiveLog: (obj: IngestConfiguration) => any;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
export interface StreamEvent {
|
|
535
|
+
|
|
536
|
+
name?: string;
|
|
537
|
+
|
|
538
|
+
type?: string;
|
|
539
|
+
|
|
540
|
+
eventTime?: Date;
|
|
541
|
+
}
|
|
542
|
+
export declare namespace StreamEvent {
|
|
543
|
+
|
|
544
|
+
const filterSensitiveLog: (obj: StreamEvent) => any;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
export interface StreamSession {
|
|
548
|
+
|
|
549
|
+
streamId?: string;
|
|
550
|
+
|
|
551
|
+
startTime?: Date;
|
|
552
|
+
|
|
553
|
+
endTime?: Date;
|
|
554
|
+
|
|
555
|
+
channel?: Channel;
|
|
556
|
+
|
|
557
|
+
ingestConfiguration?: IngestConfiguration;
|
|
558
|
+
|
|
559
|
+
recordingConfiguration?: RecordingConfiguration;
|
|
560
|
+
|
|
561
|
+
truncatedEvents?: StreamEvent[];
|
|
562
|
+
}
|
|
563
|
+
export declare namespace StreamSession {
|
|
564
|
+
|
|
565
|
+
const filterSensitiveLog: (obj: StreamSession) => any;
|
|
566
|
+
}
|
|
567
|
+
export interface GetStreamSessionResponse {
|
|
568
|
+
|
|
569
|
+
streamSession?: StreamSession;
|
|
570
|
+
}
|
|
571
|
+
export declare namespace GetStreamSessionResponse {
|
|
572
|
+
|
|
573
|
+
const filterSensitiveLog: (obj: GetStreamSessionResponse) => any;
|
|
574
|
+
}
|
|
575
|
+
export interface ImportPlaybackKeyPairRequest {
|
|
576
|
+
|
|
577
|
+
publicKeyMaterial: string | undefined;
|
|
578
|
+
|
|
579
|
+
name?: string;
|
|
580
|
+
|
|
581
|
+
tags?: {
|
|
582
|
+
[key: string]: string;
|
|
583
|
+
};
|
|
584
|
+
}
|
|
585
|
+
export declare namespace ImportPlaybackKeyPairRequest {
|
|
586
|
+
|
|
587
|
+
const filterSensitiveLog: (obj: ImportPlaybackKeyPairRequest) => any;
|
|
588
|
+
}
|
|
589
|
+
export interface ImportPlaybackKeyPairResponse {
|
|
590
|
+
|
|
591
|
+
keyPair?: PlaybackKeyPair;
|
|
592
|
+
}
|
|
593
|
+
export declare namespace ImportPlaybackKeyPairResponse {
|
|
594
|
+
|
|
595
|
+
const filterSensitiveLog: (obj: ImportPlaybackKeyPairResponse) => any;
|
|
596
|
+
}
|
|
597
|
+
export interface ListChannelsRequest {
|
|
598
|
+
|
|
599
|
+
filterByName?: string;
|
|
600
|
+
|
|
601
|
+
filterByRecordingConfigurationArn?: string;
|
|
602
|
+
|
|
603
|
+
nextToken?: string;
|
|
604
|
+
|
|
605
|
+
maxResults?: number;
|
|
606
|
+
}
|
|
607
|
+
export declare namespace ListChannelsRequest {
|
|
608
|
+
|
|
609
|
+
const filterSensitiveLog: (obj: ListChannelsRequest) => any;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
export interface ChannelSummary {
|
|
613
|
+
|
|
614
|
+
arn?: string;
|
|
615
|
+
|
|
616
|
+
name?: string;
|
|
617
|
+
|
|
618
|
+
latencyMode?: ChannelLatencyMode | string;
|
|
619
|
+
|
|
620
|
+
authorized?: boolean;
|
|
621
|
+
|
|
622
|
+
recordingConfigurationArn?: string;
|
|
623
|
+
|
|
624
|
+
tags?: {
|
|
625
|
+
[key: string]: string;
|
|
626
|
+
};
|
|
627
|
+
}
|
|
628
|
+
export declare namespace ChannelSummary {
|
|
629
|
+
|
|
630
|
+
const filterSensitiveLog: (obj: ChannelSummary) => any;
|
|
631
|
+
}
|
|
632
|
+
export interface ListChannelsResponse {
|
|
633
|
+
|
|
634
|
+
channels: ChannelSummary[] | undefined;
|
|
635
|
+
|
|
636
|
+
nextToken?: string;
|
|
637
|
+
}
|
|
638
|
+
export declare namespace ListChannelsResponse {
|
|
639
|
+
|
|
640
|
+
const filterSensitiveLog: (obj: ListChannelsResponse) => any;
|
|
641
|
+
}
|
|
642
|
+
export interface ListPlaybackKeyPairsRequest {
|
|
643
|
+
|
|
644
|
+
nextToken?: string;
|
|
645
|
+
|
|
646
|
+
maxResults?: number;
|
|
647
|
+
}
|
|
648
|
+
export declare namespace ListPlaybackKeyPairsRequest {
|
|
649
|
+
|
|
650
|
+
const filterSensitiveLog: (obj: ListPlaybackKeyPairsRequest) => any;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
export interface PlaybackKeyPairSummary {
|
|
654
|
+
|
|
655
|
+
arn?: string;
|
|
656
|
+
|
|
657
|
+
name?: string;
|
|
658
|
+
|
|
659
|
+
tags?: {
|
|
660
|
+
[key: string]: string;
|
|
661
|
+
};
|
|
662
|
+
}
|
|
663
|
+
export declare namespace PlaybackKeyPairSummary {
|
|
664
|
+
|
|
665
|
+
const filterSensitiveLog: (obj: PlaybackKeyPairSummary) => any;
|
|
666
|
+
}
|
|
667
|
+
export interface ListPlaybackKeyPairsResponse {
|
|
668
|
+
|
|
669
|
+
keyPairs: PlaybackKeyPairSummary[] | undefined;
|
|
670
|
+
|
|
671
|
+
nextToken?: string;
|
|
672
|
+
}
|
|
673
|
+
export declare namespace ListPlaybackKeyPairsResponse {
|
|
674
|
+
|
|
675
|
+
const filterSensitiveLog: (obj: ListPlaybackKeyPairsResponse) => any;
|
|
676
|
+
}
|
|
677
|
+
export interface ListRecordingConfigurationsRequest {
|
|
678
|
+
|
|
679
|
+
nextToken?: string;
|
|
680
|
+
|
|
681
|
+
maxResults?: number;
|
|
682
|
+
}
|
|
683
|
+
export declare namespace ListRecordingConfigurationsRequest {
|
|
684
|
+
|
|
685
|
+
const filterSensitiveLog: (obj: ListRecordingConfigurationsRequest) => any;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
export interface RecordingConfigurationSummary {
|
|
689
|
+
|
|
690
|
+
arn: string | undefined;
|
|
691
|
+
|
|
692
|
+
name?: string;
|
|
693
|
+
|
|
694
|
+
destinationConfiguration: DestinationConfiguration | undefined;
|
|
695
|
+
|
|
696
|
+
state: RecordingConfigurationState | string | undefined;
|
|
697
|
+
|
|
698
|
+
tags?: {
|
|
699
|
+
[key: string]: string;
|
|
700
|
+
};
|
|
701
|
+
}
|
|
702
|
+
export declare namespace RecordingConfigurationSummary {
|
|
703
|
+
|
|
704
|
+
const filterSensitiveLog: (obj: RecordingConfigurationSummary) => any;
|
|
705
|
+
}
|
|
706
|
+
export interface ListRecordingConfigurationsResponse {
|
|
707
|
+
|
|
708
|
+
recordingConfigurations: RecordingConfigurationSummary[] | undefined;
|
|
709
|
+
|
|
710
|
+
nextToken?: string;
|
|
711
|
+
}
|
|
712
|
+
export declare namespace ListRecordingConfigurationsResponse {
|
|
713
|
+
|
|
714
|
+
const filterSensitiveLog: (obj: ListRecordingConfigurationsResponse) => any;
|
|
715
|
+
}
|
|
716
|
+
export interface ListStreamKeysRequest {
|
|
717
|
+
|
|
718
|
+
channelArn: string | undefined;
|
|
719
|
+
|
|
720
|
+
nextToken?: string;
|
|
721
|
+
|
|
722
|
+
maxResults?: number;
|
|
723
|
+
}
|
|
724
|
+
export declare namespace ListStreamKeysRequest {
|
|
725
|
+
|
|
726
|
+
const filterSensitiveLog: (obj: ListStreamKeysRequest) => any;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
export interface StreamKeySummary {
|
|
730
|
+
|
|
731
|
+
arn?: string;
|
|
732
|
+
|
|
733
|
+
channelArn?: string;
|
|
734
|
+
|
|
735
|
+
tags?: {
|
|
736
|
+
[key: string]: string;
|
|
737
|
+
};
|
|
738
|
+
}
|
|
739
|
+
export declare namespace StreamKeySummary {
|
|
740
|
+
|
|
741
|
+
const filterSensitiveLog: (obj: StreamKeySummary) => any;
|
|
742
|
+
}
|
|
743
|
+
export interface ListStreamKeysResponse {
|
|
744
|
+
|
|
745
|
+
streamKeys: StreamKeySummary[] | undefined;
|
|
746
|
+
|
|
747
|
+
nextToken?: string;
|
|
748
|
+
}
|
|
749
|
+
export declare namespace ListStreamKeysResponse {
|
|
750
|
+
|
|
751
|
+
const filterSensitiveLog: (obj: ListStreamKeysResponse) => any;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
export interface StreamFilters {
|
|
755
|
+
|
|
756
|
+
health?: StreamHealth | string;
|
|
757
|
+
}
|
|
758
|
+
export declare namespace StreamFilters {
|
|
759
|
+
|
|
760
|
+
const filterSensitiveLog: (obj: StreamFilters) => any;
|
|
761
|
+
}
|
|
762
|
+
export interface ListStreamsRequest {
|
|
763
|
+
|
|
764
|
+
filterBy?: StreamFilters;
|
|
765
|
+
|
|
766
|
+
nextToken?: string;
|
|
767
|
+
|
|
768
|
+
maxResults?: number;
|
|
769
|
+
}
|
|
770
|
+
export declare namespace ListStreamsRequest {
|
|
771
|
+
|
|
772
|
+
const filterSensitiveLog: (obj: ListStreamsRequest) => any;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
export interface StreamSummary {
|
|
776
|
+
|
|
777
|
+
channelArn?: string;
|
|
778
|
+
|
|
779
|
+
streamId?: string;
|
|
780
|
+
|
|
781
|
+
state?: StreamState | string;
|
|
782
|
+
|
|
783
|
+
health?: StreamHealth | string;
|
|
784
|
+
|
|
785
|
+
viewerCount?: number;
|
|
786
|
+
|
|
787
|
+
startTime?: Date;
|
|
788
|
+
}
|
|
789
|
+
export declare namespace StreamSummary {
|
|
790
|
+
|
|
791
|
+
const filterSensitiveLog: (obj: StreamSummary) => any;
|
|
792
|
+
}
|
|
793
|
+
export interface ListStreamsResponse {
|
|
794
|
+
|
|
795
|
+
streams: StreamSummary[] | undefined;
|
|
796
|
+
|
|
797
|
+
nextToken?: string;
|
|
798
|
+
}
|
|
799
|
+
export declare namespace ListStreamsResponse {
|
|
800
|
+
|
|
801
|
+
const filterSensitiveLog: (obj: ListStreamsResponse) => any;
|
|
802
|
+
}
|
|
803
|
+
export interface ListStreamSessionsRequest {
|
|
804
|
+
|
|
805
|
+
channelArn: string | undefined;
|
|
806
|
+
|
|
807
|
+
nextToken?: string;
|
|
808
|
+
|
|
809
|
+
maxResults?: number;
|
|
810
|
+
}
|
|
811
|
+
export declare namespace ListStreamSessionsRequest {
|
|
812
|
+
|
|
813
|
+
const filterSensitiveLog: (obj: ListStreamSessionsRequest) => any;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
export interface StreamSessionSummary {
|
|
817
|
+
|
|
818
|
+
streamId?: string;
|
|
819
|
+
|
|
820
|
+
startTime?: Date;
|
|
821
|
+
|
|
822
|
+
endTime?: Date;
|
|
823
|
+
|
|
824
|
+
hasErrorEvent?: boolean;
|
|
825
|
+
}
|
|
826
|
+
export declare namespace StreamSessionSummary {
|
|
827
|
+
|
|
828
|
+
const filterSensitiveLog: (obj: StreamSessionSummary) => any;
|
|
829
|
+
}
|
|
830
|
+
export interface ListStreamSessionsResponse {
|
|
831
|
+
|
|
832
|
+
streamSessions: StreamSessionSummary[] | undefined;
|
|
833
|
+
|
|
834
|
+
nextToken?: string;
|
|
835
|
+
}
|
|
836
|
+
export declare namespace ListStreamSessionsResponse {
|
|
837
|
+
|
|
838
|
+
const filterSensitiveLog: (obj: ListStreamSessionsResponse) => any;
|
|
839
|
+
}
|
|
840
|
+
export interface ListTagsForResourceRequest {
|
|
841
|
+
|
|
842
|
+
resourceArn: string | undefined;
|
|
843
|
+
}
|
|
844
|
+
export declare namespace ListTagsForResourceRequest {
|
|
845
|
+
|
|
846
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
847
|
+
}
|
|
848
|
+
export interface ListTagsForResourceResponse {
|
|
849
|
+
|
|
850
|
+
tags: {
|
|
851
|
+
[key: string]: string;
|
|
852
|
+
} | undefined;
|
|
853
|
+
}
|
|
854
|
+
export declare namespace ListTagsForResourceResponse {
|
|
855
|
+
|
|
856
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
857
|
+
}
|
|
858
|
+
export interface PutMetadataRequest {
|
|
859
|
+
|
|
860
|
+
channelArn: string | undefined;
|
|
861
|
+
|
|
862
|
+
metadata: string | undefined;
|
|
863
|
+
}
|
|
864
|
+
export declare namespace PutMetadataRequest {
|
|
865
|
+
|
|
866
|
+
const filterSensitiveLog: (obj: PutMetadataRequest) => any;
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
export declare class ThrottlingException extends __BaseException {
|
|
870
|
+
readonly name: "ThrottlingException";
|
|
871
|
+
readonly $fault: "client";
|
|
872
|
+
|
|
873
|
+
exceptionMessage?: string;
|
|
874
|
+
|
|
875
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
876
|
+
}
|
|
877
|
+
export interface StopStreamRequest {
|
|
878
|
+
|
|
879
|
+
channelArn: string | undefined;
|
|
880
|
+
}
|
|
881
|
+
export declare namespace StopStreamRequest {
|
|
882
|
+
|
|
883
|
+
const filterSensitiveLog: (obj: StopStreamRequest) => any;
|
|
884
|
+
}
|
|
885
|
+
export interface StopStreamResponse {
|
|
886
|
+
}
|
|
887
|
+
export declare namespace StopStreamResponse {
|
|
888
|
+
|
|
889
|
+
const filterSensitiveLog: (obj: StopStreamResponse) => any;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
export declare class StreamUnavailable extends __BaseException {
|
|
893
|
+
readonly name: "StreamUnavailable";
|
|
894
|
+
readonly $fault: "server";
|
|
895
|
+
|
|
896
|
+
exceptionMessage?: string;
|
|
897
|
+
|
|
898
|
+
constructor(opts: __ExceptionOptionType<StreamUnavailable, __BaseException>);
|
|
899
|
+
}
|
|
900
|
+
export interface TagResourceRequest {
|
|
901
|
+
|
|
902
|
+
resourceArn: string | undefined;
|
|
903
|
+
|
|
904
|
+
tags: {
|
|
905
|
+
[key: string]: string;
|
|
906
|
+
} | undefined;
|
|
907
|
+
}
|
|
908
|
+
export declare namespace TagResourceRequest {
|
|
909
|
+
|
|
910
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
911
|
+
}
|
|
912
|
+
export interface TagResourceResponse {
|
|
913
|
+
}
|
|
914
|
+
export declare namespace TagResourceResponse {
|
|
915
|
+
|
|
916
|
+
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
917
|
+
}
|
|
918
|
+
export interface UntagResourceRequest {
|
|
919
|
+
|
|
920
|
+
resourceArn: string | undefined;
|
|
921
|
+
|
|
922
|
+
tagKeys: string[] | undefined;
|
|
923
|
+
}
|
|
924
|
+
export declare namespace UntagResourceRequest {
|
|
925
|
+
|
|
926
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
927
|
+
}
|
|
928
|
+
export interface UntagResourceResponse {
|
|
929
|
+
}
|
|
930
|
+
export declare namespace UntagResourceResponse {
|
|
931
|
+
|
|
932
|
+
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
933
|
+
}
|
|
934
|
+
export interface UpdateChannelRequest {
|
|
935
|
+
|
|
936
|
+
arn: string | undefined;
|
|
937
|
+
|
|
938
|
+
name?: string;
|
|
939
|
+
|
|
940
|
+
latencyMode?: ChannelLatencyMode | string;
|
|
941
|
+
|
|
942
|
+
type?: ChannelType | string;
|
|
943
|
+
|
|
944
|
+
authorized?: boolean;
|
|
945
|
+
|
|
946
|
+
recordingConfigurationArn?: string;
|
|
947
|
+
}
|
|
948
|
+
export declare namespace UpdateChannelRequest {
|
|
949
|
+
|
|
950
|
+
const filterSensitiveLog: (obj: UpdateChannelRequest) => any;
|
|
951
|
+
}
|
|
952
|
+
export interface UpdateChannelResponse {
|
|
953
|
+
|
|
954
|
+
channel?: Channel;
|
|
955
|
+
}
|
|
956
|
+
export declare namespace UpdateChannelResponse {
|
|
957
|
+
|
|
958
|
+
const filterSensitiveLog: (obj: UpdateChannelResponse) => any;
|
|
959
|
+
}
|