@aws-sdk/client-chime-sdk-media-pipelines 3.1086.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/ChimeSDKMediaPipelines.d.ts +98 -167
- package/dist-types/ts3.4/ChimeSDKMediaPipelinesClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateMediaCapturePipelineCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateMediaConcatenationPipelineCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateMediaInsightsPipelineCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateMediaInsightsPipelineConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateMediaLiveConnectorPipelineCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateMediaStreamPipelineCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteMediaCapturePipelineCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteMediaInsightsPipelineConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteMediaPipelineCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetMediaCapturePipelineCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetMediaInsightsPipelineConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetMediaPipelineCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetSpeakerSearchTaskCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetVoiceToneAnalysisTaskCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListMediaCapturePipelinesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListMediaInsightsPipelineConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListMediaPipelinesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartSpeakerSearchTaskCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartVoiceToneAnalysisTaskCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopSpeakerSearchTaskCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/StopVoiceToneAnalysisTaskCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateMediaInsightsPipelineConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateMediaInsightsPipelineStatusCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +14 -28
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +19 -57
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -108,10 +108,7 @@ import {
|
|
|
108
108
|
StopVoiceToneAnalysisTaskCommandInput,
|
|
109
109
|
StopVoiceToneAnalysisTaskCommandOutput,
|
|
110
110
|
} from "./commands/StopVoiceToneAnalysisTaskCommand";
|
|
111
|
-
import {
|
|
112
|
-
TagResourceCommandInput,
|
|
113
|
-
TagResourceCommandOutput,
|
|
114
|
-
} from "./commands/TagResourceCommand";
|
|
111
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
115
112
|
import {
|
|
116
113
|
UntagResourceCommandInput,
|
|
117
114
|
UntagResourceCommandOutput,
|
|
@@ -131,504 +128,438 @@ import {
|
|
|
131
128
|
export interface ChimeSDKMediaPipelines {
|
|
132
129
|
createMediaCapturePipeline(
|
|
133
130
|
args: CreateMediaCapturePipelineCommandInput,
|
|
134
|
-
options?: __HttpHandlerOptions
|
|
131
|
+
options?: __HttpHandlerOptions,
|
|
135
132
|
): Promise<CreateMediaCapturePipelineCommandOutput>;
|
|
136
133
|
createMediaCapturePipeline(
|
|
137
134
|
args: CreateMediaCapturePipelineCommandInput,
|
|
138
|
-
cb: (err: any, data?: CreateMediaCapturePipelineCommandOutput) => void
|
|
135
|
+
cb: (err: any, data?: CreateMediaCapturePipelineCommandOutput) => void,
|
|
139
136
|
): void;
|
|
140
137
|
createMediaCapturePipeline(
|
|
141
138
|
args: CreateMediaCapturePipelineCommandInput,
|
|
142
139
|
options: __HttpHandlerOptions,
|
|
143
|
-
cb: (err: any, data?: CreateMediaCapturePipelineCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: CreateMediaCapturePipelineCommandOutput) => void,
|
|
144
141
|
): void;
|
|
145
142
|
createMediaConcatenationPipeline(
|
|
146
143
|
args: CreateMediaConcatenationPipelineCommandInput,
|
|
147
|
-
options?: __HttpHandlerOptions
|
|
144
|
+
options?: __HttpHandlerOptions,
|
|
148
145
|
): Promise<CreateMediaConcatenationPipelineCommandOutput>;
|
|
149
146
|
createMediaConcatenationPipeline(
|
|
150
147
|
args: CreateMediaConcatenationPipelineCommandInput,
|
|
151
|
-
cb: (err: any, data?: CreateMediaConcatenationPipelineCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: CreateMediaConcatenationPipelineCommandOutput) => void,
|
|
152
149
|
): void;
|
|
153
150
|
createMediaConcatenationPipeline(
|
|
154
151
|
args: CreateMediaConcatenationPipelineCommandInput,
|
|
155
152
|
options: __HttpHandlerOptions,
|
|
156
|
-
cb: (err: any, data?: CreateMediaConcatenationPipelineCommandOutput) => void
|
|
153
|
+
cb: (err: any, data?: CreateMediaConcatenationPipelineCommandOutput) => void,
|
|
157
154
|
): void;
|
|
158
155
|
createMediaInsightsPipeline(
|
|
159
156
|
args: CreateMediaInsightsPipelineCommandInput,
|
|
160
|
-
options?: __HttpHandlerOptions
|
|
157
|
+
options?: __HttpHandlerOptions,
|
|
161
158
|
): Promise<CreateMediaInsightsPipelineCommandOutput>;
|
|
162
159
|
createMediaInsightsPipeline(
|
|
163
160
|
args: CreateMediaInsightsPipelineCommandInput,
|
|
164
|
-
cb: (err: any, data?: CreateMediaInsightsPipelineCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: CreateMediaInsightsPipelineCommandOutput) => void,
|
|
165
162
|
): void;
|
|
166
163
|
createMediaInsightsPipeline(
|
|
167
164
|
args: CreateMediaInsightsPipelineCommandInput,
|
|
168
165
|
options: __HttpHandlerOptions,
|
|
169
|
-
cb: (err: any, data?: CreateMediaInsightsPipelineCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: CreateMediaInsightsPipelineCommandOutput) => void,
|
|
170
167
|
): void;
|
|
171
168
|
createMediaInsightsPipelineConfiguration(
|
|
172
169
|
args: CreateMediaInsightsPipelineConfigurationCommandInput,
|
|
173
|
-
options?: __HttpHandlerOptions
|
|
170
|
+
options?: __HttpHandlerOptions,
|
|
174
171
|
): Promise<CreateMediaInsightsPipelineConfigurationCommandOutput>;
|
|
175
172
|
createMediaInsightsPipelineConfiguration(
|
|
176
173
|
args: CreateMediaInsightsPipelineConfigurationCommandInput,
|
|
177
|
-
cb: (
|
|
178
|
-
err: any,
|
|
179
|
-
data?: CreateMediaInsightsPipelineConfigurationCommandOutput
|
|
180
|
-
) => void
|
|
174
|
+
cb: (err: any, data?: CreateMediaInsightsPipelineConfigurationCommandOutput) => void,
|
|
181
175
|
): void;
|
|
182
176
|
createMediaInsightsPipelineConfiguration(
|
|
183
177
|
args: CreateMediaInsightsPipelineConfigurationCommandInput,
|
|
184
178
|
options: __HttpHandlerOptions,
|
|
185
|
-
cb: (
|
|
186
|
-
err: any,
|
|
187
|
-
data?: CreateMediaInsightsPipelineConfigurationCommandOutput
|
|
188
|
-
) => void
|
|
179
|
+
cb: (err: any, data?: CreateMediaInsightsPipelineConfigurationCommandOutput) => void,
|
|
189
180
|
): void;
|
|
190
181
|
createMediaLiveConnectorPipeline(
|
|
191
182
|
args: CreateMediaLiveConnectorPipelineCommandInput,
|
|
192
|
-
options?: __HttpHandlerOptions
|
|
183
|
+
options?: __HttpHandlerOptions,
|
|
193
184
|
): Promise<CreateMediaLiveConnectorPipelineCommandOutput>;
|
|
194
185
|
createMediaLiveConnectorPipeline(
|
|
195
186
|
args: CreateMediaLiveConnectorPipelineCommandInput,
|
|
196
|
-
cb: (err: any, data?: CreateMediaLiveConnectorPipelineCommandOutput) => void
|
|
187
|
+
cb: (err: any, data?: CreateMediaLiveConnectorPipelineCommandOutput) => void,
|
|
197
188
|
): void;
|
|
198
189
|
createMediaLiveConnectorPipeline(
|
|
199
190
|
args: CreateMediaLiveConnectorPipelineCommandInput,
|
|
200
191
|
options: __HttpHandlerOptions,
|
|
201
|
-
cb: (err: any, data?: CreateMediaLiveConnectorPipelineCommandOutput) => void
|
|
192
|
+
cb: (err: any, data?: CreateMediaLiveConnectorPipelineCommandOutput) => void,
|
|
202
193
|
): void;
|
|
203
194
|
createMediaPipelineKinesisVideoStreamPool(
|
|
204
195
|
args: CreateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
205
|
-
options?: __HttpHandlerOptions
|
|
196
|
+
options?: __HttpHandlerOptions,
|
|
206
197
|
): Promise<CreateMediaPipelineKinesisVideoStreamPoolCommandOutput>;
|
|
207
198
|
createMediaPipelineKinesisVideoStreamPool(
|
|
208
199
|
args: CreateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
209
|
-
cb: (
|
|
210
|
-
err: any,
|
|
211
|
-
data?: CreateMediaPipelineKinesisVideoStreamPoolCommandOutput
|
|
212
|
-
) => void
|
|
200
|
+
cb: (err: any, data?: CreateMediaPipelineKinesisVideoStreamPoolCommandOutput) => void,
|
|
213
201
|
): void;
|
|
214
202
|
createMediaPipelineKinesisVideoStreamPool(
|
|
215
203
|
args: CreateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
216
204
|
options: __HttpHandlerOptions,
|
|
217
|
-
cb: (
|
|
218
|
-
err: any,
|
|
219
|
-
data?: CreateMediaPipelineKinesisVideoStreamPoolCommandOutput
|
|
220
|
-
) => void
|
|
205
|
+
cb: (err: any, data?: CreateMediaPipelineKinesisVideoStreamPoolCommandOutput) => void,
|
|
221
206
|
): void;
|
|
222
207
|
createMediaStreamPipeline(
|
|
223
208
|
args: CreateMediaStreamPipelineCommandInput,
|
|
224
|
-
options?: __HttpHandlerOptions
|
|
209
|
+
options?: __HttpHandlerOptions,
|
|
225
210
|
): Promise<CreateMediaStreamPipelineCommandOutput>;
|
|
226
211
|
createMediaStreamPipeline(
|
|
227
212
|
args: CreateMediaStreamPipelineCommandInput,
|
|
228
|
-
cb: (err: any, data?: CreateMediaStreamPipelineCommandOutput) => void
|
|
213
|
+
cb: (err: any, data?: CreateMediaStreamPipelineCommandOutput) => void,
|
|
229
214
|
): void;
|
|
230
215
|
createMediaStreamPipeline(
|
|
231
216
|
args: CreateMediaStreamPipelineCommandInput,
|
|
232
217
|
options: __HttpHandlerOptions,
|
|
233
|
-
cb: (err: any, data?: CreateMediaStreamPipelineCommandOutput) => void
|
|
218
|
+
cb: (err: any, data?: CreateMediaStreamPipelineCommandOutput) => void,
|
|
234
219
|
): void;
|
|
235
220
|
deleteMediaCapturePipeline(
|
|
236
221
|
args: DeleteMediaCapturePipelineCommandInput,
|
|
237
|
-
options?: __HttpHandlerOptions
|
|
222
|
+
options?: __HttpHandlerOptions,
|
|
238
223
|
): Promise<DeleteMediaCapturePipelineCommandOutput>;
|
|
239
224
|
deleteMediaCapturePipeline(
|
|
240
225
|
args: DeleteMediaCapturePipelineCommandInput,
|
|
241
|
-
cb: (err: any, data?: DeleteMediaCapturePipelineCommandOutput) => void
|
|
226
|
+
cb: (err: any, data?: DeleteMediaCapturePipelineCommandOutput) => void,
|
|
242
227
|
): void;
|
|
243
228
|
deleteMediaCapturePipeline(
|
|
244
229
|
args: DeleteMediaCapturePipelineCommandInput,
|
|
245
230
|
options: __HttpHandlerOptions,
|
|
246
|
-
cb: (err: any, data?: DeleteMediaCapturePipelineCommandOutput) => void
|
|
231
|
+
cb: (err: any, data?: DeleteMediaCapturePipelineCommandOutput) => void,
|
|
247
232
|
): void;
|
|
248
233
|
deleteMediaInsightsPipelineConfiguration(
|
|
249
234
|
args: DeleteMediaInsightsPipelineConfigurationCommandInput,
|
|
250
|
-
options?: __HttpHandlerOptions
|
|
235
|
+
options?: __HttpHandlerOptions,
|
|
251
236
|
): Promise<DeleteMediaInsightsPipelineConfigurationCommandOutput>;
|
|
252
237
|
deleteMediaInsightsPipelineConfiguration(
|
|
253
238
|
args: DeleteMediaInsightsPipelineConfigurationCommandInput,
|
|
254
|
-
cb: (
|
|
255
|
-
err: any,
|
|
256
|
-
data?: DeleteMediaInsightsPipelineConfigurationCommandOutput
|
|
257
|
-
) => void
|
|
239
|
+
cb: (err: any, data?: DeleteMediaInsightsPipelineConfigurationCommandOutput) => void,
|
|
258
240
|
): void;
|
|
259
241
|
deleteMediaInsightsPipelineConfiguration(
|
|
260
242
|
args: DeleteMediaInsightsPipelineConfigurationCommandInput,
|
|
261
243
|
options: __HttpHandlerOptions,
|
|
262
|
-
cb: (
|
|
263
|
-
err: any,
|
|
264
|
-
data?: DeleteMediaInsightsPipelineConfigurationCommandOutput
|
|
265
|
-
) => void
|
|
244
|
+
cb: (err: any, data?: DeleteMediaInsightsPipelineConfigurationCommandOutput) => void,
|
|
266
245
|
): void;
|
|
267
246
|
deleteMediaPipeline(
|
|
268
247
|
args: DeleteMediaPipelineCommandInput,
|
|
269
|
-
options?: __HttpHandlerOptions
|
|
248
|
+
options?: __HttpHandlerOptions,
|
|
270
249
|
): Promise<DeleteMediaPipelineCommandOutput>;
|
|
271
250
|
deleteMediaPipeline(
|
|
272
251
|
args: DeleteMediaPipelineCommandInput,
|
|
273
|
-
cb: (err: any, data?: DeleteMediaPipelineCommandOutput) => void
|
|
252
|
+
cb: (err: any, data?: DeleteMediaPipelineCommandOutput) => void,
|
|
274
253
|
): void;
|
|
275
254
|
deleteMediaPipeline(
|
|
276
255
|
args: DeleteMediaPipelineCommandInput,
|
|
277
256
|
options: __HttpHandlerOptions,
|
|
278
|
-
cb: (err: any, data?: DeleteMediaPipelineCommandOutput) => void
|
|
257
|
+
cb: (err: any, data?: DeleteMediaPipelineCommandOutput) => void,
|
|
279
258
|
): void;
|
|
280
259
|
deleteMediaPipelineKinesisVideoStreamPool(
|
|
281
260
|
args: DeleteMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
282
|
-
options?: __HttpHandlerOptions
|
|
261
|
+
options?: __HttpHandlerOptions,
|
|
283
262
|
): Promise<DeleteMediaPipelineKinesisVideoStreamPoolCommandOutput>;
|
|
284
263
|
deleteMediaPipelineKinesisVideoStreamPool(
|
|
285
264
|
args: DeleteMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
286
|
-
cb: (
|
|
287
|
-
err: any,
|
|
288
|
-
data?: DeleteMediaPipelineKinesisVideoStreamPoolCommandOutput
|
|
289
|
-
) => void
|
|
265
|
+
cb: (err: any, data?: DeleteMediaPipelineKinesisVideoStreamPoolCommandOutput) => void,
|
|
290
266
|
): void;
|
|
291
267
|
deleteMediaPipelineKinesisVideoStreamPool(
|
|
292
268
|
args: DeleteMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
293
269
|
options: __HttpHandlerOptions,
|
|
294
|
-
cb: (
|
|
295
|
-
err: any,
|
|
296
|
-
data?: DeleteMediaPipelineKinesisVideoStreamPoolCommandOutput
|
|
297
|
-
) => void
|
|
270
|
+
cb: (err: any, data?: DeleteMediaPipelineKinesisVideoStreamPoolCommandOutput) => void,
|
|
298
271
|
): void;
|
|
299
272
|
getMediaCapturePipeline(
|
|
300
273
|
args: GetMediaCapturePipelineCommandInput,
|
|
301
|
-
options?: __HttpHandlerOptions
|
|
274
|
+
options?: __HttpHandlerOptions,
|
|
302
275
|
): Promise<GetMediaCapturePipelineCommandOutput>;
|
|
303
276
|
getMediaCapturePipeline(
|
|
304
277
|
args: GetMediaCapturePipelineCommandInput,
|
|
305
|
-
cb: (err: any, data?: GetMediaCapturePipelineCommandOutput) => void
|
|
278
|
+
cb: (err: any, data?: GetMediaCapturePipelineCommandOutput) => void,
|
|
306
279
|
): void;
|
|
307
280
|
getMediaCapturePipeline(
|
|
308
281
|
args: GetMediaCapturePipelineCommandInput,
|
|
309
282
|
options: __HttpHandlerOptions,
|
|
310
|
-
cb: (err: any, data?: GetMediaCapturePipelineCommandOutput) => void
|
|
283
|
+
cb: (err: any, data?: GetMediaCapturePipelineCommandOutput) => void,
|
|
311
284
|
): void;
|
|
312
285
|
getMediaInsightsPipelineConfiguration(
|
|
313
286
|
args: GetMediaInsightsPipelineConfigurationCommandInput,
|
|
314
|
-
options?: __HttpHandlerOptions
|
|
287
|
+
options?: __HttpHandlerOptions,
|
|
315
288
|
): Promise<GetMediaInsightsPipelineConfigurationCommandOutput>;
|
|
316
289
|
getMediaInsightsPipelineConfiguration(
|
|
317
290
|
args: GetMediaInsightsPipelineConfigurationCommandInput,
|
|
318
|
-
cb: (
|
|
319
|
-
err: any,
|
|
320
|
-
data?: GetMediaInsightsPipelineConfigurationCommandOutput
|
|
321
|
-
) => void
|
|
291
|
+
cb: (err: any, data?: GetMediaInsightsPipelineConfigurationCommandOutput) => void,
|
|
322
292
|
): void;
|
|
323
293
|
getMediaInsightsPipelineConfiguration(
|
|
324
294
|
args: GetMediaInsightsPipelineConfigurationCommandInput,
|
|
325
295
|
options: __HttpHandlerOptions,
|
|
326
|
-
cb: (
|
|
327
|
-
err: any,
|
|
328
|
-
data?: GetMediaInsightsPipelineConfigurationCommandOutput
|
|
329
|
-
) => void
|
|
296
|
+
cb: (err: any, data?: GetMediaInsightsPipelineConfigurationCommandOutput) => void,
|
|
330
297
|
): void;
|
|
331
298
|
getMediaPipeline(
|
|
332
299
|
args: GetMediaPipelineCommandInput,
|
|
333
|
-
options?: __HttpHandlerOptions
|
|
300
|
+
options?: __HttpHandlerOptions,
|
|
334
301
|
): Promise<GetMediaPipelineCommandOutput>;
|
|
335
302
|
getMediaPipeline(
|
|
336
303
|
args: GetMediaPipelineCommandInput,
|
|
337
|
-
cb: (err: any, data?: GetMediaPipelineCommandOutput) => void
|
|
304
|
+
cb: (err: any, data?: GetMediaPipelineCommandOutput) => void,
|
|
338
305
|
): void;
|
|
339
306
|
getMediaPipeline(
|
|
340
307
|
args: GetMediaPipelineCommandInput,
|
|
341
308
|
options: __HttpHandlerOptions,
|
|
342
|
-
cb: (err: any, data?: GetMediaPipelineCommandOutput) => void
|
|
309
|
+
cb: (err: any, data?: GetMediaPipelineCommandOutput) => void,
|
|
343
310
|
): void;
|
|
344
311
|
getMediaPipelineKinesisVideoStreamPool(
|
|
345
312
|
args: GetMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
346
|
-
options?: __HttpHandlerOptions
|
|
313
|
+
options?: __HttpHandlerOptions,
|
|
347
314
|
): Promise<GetMediaPipelineKinesisVideoStreamPoolCommandOutput>;
|
|
348
315
|
getMediaPipelineKinesisVideoStreamPool(
|
|
349
316
|
args: GetMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
350
|
-
cb: (
|
|
351
|
-
err: any,
|
|
352
|
-
data?: GetMediaPipelineKinesisVideoStreamPoolCommandOutput
|
|
353
|
-
) => void
|
|
317
|
+
cb: (err: any, data?: GetMediaPipelineKinesisVideoStreamPoolCommandOutput) => void,
|
|
354
318
|
): void;
|
|
355
319
|
getMediaPipelineKinesisVideoStreamPool(
|
|
356
320
|
args: GetMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
357
321
|
options: __HttpHandlerOptions,
|
|
358
|
-
cb: (
|
|
359
|
-
err: any,
|
|
360
|
-
data?: GetMediaPipelineKinesisVideoStreamPoolCommandOutput
|
|
361
|
-
) => void
|
|
322
|
+
cb: (err: any, data?: GetMediaPipelineKinesisVideoStreamPoolCommandOutput) => void,
|
|
362
323
|
): void;
|
|
363
324
|
getSpeakerSearchTask(
|
|
364
325
|
args: GetSpeakerSearchTaskCommandInput,
|
|
365
|
-
options?: __HttpHandlerOptions
|
|
326
|
+
options?: __HttpHandlerOptions,
|
|
366
327
|
): Promise<GetSpeakerSearchTaskCommandOutput>;
|
|
367
328
|
getSpeakerSearchTask(
|
|
368
329
|
args: GetSpeakerSearchTaskCommandInput,
|
|
369
|
-
cb: (err: any, data?: GetSpeakerSearchTaskCommandOutput) => void
|
|
330
|
+
cb: (err: any, data?: GetSpeakerSearchTaskCommandOutput) => void,
|
|
370
331
|
): void;
|
|
371
332
|
getSpeakerSearchTask(
|
|
372
333
|
args: GetSpeakerSearchTaskCommandInput,
|
|
373
334
|
options: __HttpHandlerOptions,
|
|
374
|
-
cb: (err: any, data?: GetSpeakerSearchTaskCommandOutput) => void
|
|
335
|
+
cb: (err: any, data?: GetSpeakerSearchTaskCommandOutput) => void,
|
|
375
336
|
): void;
|
|
376
337
|
getVoiceToneAnalysisTask(
|
|
377
338
|
args: GetVoiceToneAnalysisTaskCommandInput,
|
|
378
|
-
options?: __HttpHandlerOptions
|
|
339
|
+
options?: __HttpHandlerOptions,
|
|
379
340
|
): Promise<GetVoiceToneAnalysisTaskCommandOutput>;
|
|
380
341
|
getVoiceToneAnalysisTask(
|
|
381
342
|
args: GetVoiceToneAnalysisTaskCommandInput,
|
|
382
|
-
cb: (err: any, data?: GetVoiceToneAnalysisTaskCommandOutput) => void
|
|
343
|
+
cb: (err: any, data?: GetVoiceToneAnalysisTaskCommandOutput) => void,
|
|
383
344
|
): void;
|
|
384
345
|
getVoiceToneAnalysisTask(
|
|
385
346
|
args: GetVoiceToneAnalysisTaskCommandInput,
|
|
386
347
|
options: __HttpHandlerOptions,
|
|
387
|
-
cb: (err: any, data?: GetVoiceToneAnalysisTaskCommandOutput) => void
|
|
348
|
+
cb: (err: any, data?: GetVoiceToneAnalysisTaskCommandOutput) => void,
|
|
388
349
|
): void;
|
|
389
350
|
listMediaCapturePipelines(): Promise<ListMediaCapturePipelinesCommandOutput>;
|
|
390
351
|
listMediaCapturePipelines(
|
|
391
352
|
args: ListMediaCapturePipelinesCommandInput,
|
|
392
|
-
options?: __HttpHandlerOptions
|
|
353
|
+
options?: __HttpHandlerOptions,
|
|
393
354
|
): Promise<ListMediaCapturePipelinesCommandOutput>;
|
|
394
355
|
listMediaCapturePipelines(
|
|
395
356
|
args: ListMediaCapturePipelinesCommandInput,
|
|
396
|
-
cb: (err: any, data?: ListMediaCapturePipelinesCommandOutput) => void
|
|
357
|
+
cb: (err: any, data?: ListMediaCapturePipelinesCommandOutput) => void,
|
|
397
358
|
): void;
|
|
398
359
|
listMediaCapturePipelines(
|
|
399
360
|
args: ListMediaCapturePipelinesCommandInput,
|
|
400
361
|
options: __HttpHandlerOptions,
|
|
401
|
-
cb: (err: any, data?: ListMediaCapturePipelinesCommandOutput) => void
|
|
362
|
+
cb: (err: any, data?: ListMediaCapturePipelinesCommandOutput) => void,
|
|
402
363
|
): void;
|
|
403
364
|
listMediaInsightsPipelineConfigurations(): Promise<ListMediaInsightsPipelineConfigurationsCommandOutput>;
|
|
404
365
|
listMediaInsightsPipelineConfigurations(
|
|
405
366
|
args: ListMediaInsightsPipelineConfigurationsCommandInput,
|
|
406
|
-
options?: __HttpHandlerOptions
|
|
367
|
+
options?: __HttpHandlerOptions,
|
|
407
368
|
): Promise<ListMediaInsightsPipelineConfigurationsCommandOutput>;
|
|
408
369
|
listMediaInsightsPipelineConfigurations(
|
|
409
370
|
args: ListMediaInsightsPipelineConfigurationsCommandInput,
|
|
410
|
-
cb: (
|
|
411
|
-
err: any,
|
|
412
|
-
data?: ListMediaInsightsPipelineConfigurationsCommandOutput
|
|
413
|
-
) => void
|
|
371
|
+
cb: (err: any, data?: ListMediaInsightsPipelineConfigurationsCommandOutput) => void,
|
|
414
372
|
): void;
|
|
415
373
|
listMediaInsightsPipelineConfigurations(
|
|
416
374
|
args: ListMediaInsightsPipelineConfigurationsCommandInput,
|
|
417
375
|
options: __HttpHandlerOptions,
|
|
418
|
-
cb: (
|
|
419
|
-
err: any,
|
|
420
|
-
data?: ListMediaInsightsPipelineConfigurationsCommandOutput
|
|
421
|
-
) => void
|
|
376
|
+
cb: (err: any, data?: ListMediaInsightsPipelineConfigurationsCommandOutput) => void,
|
|
422
377
|
): void;
|
|
423
378
|
listMediaPipelineKinesisVideoStreamPools(): Promise<ListMediaPipelineKinesisVideoStreamPoolsCommandOutput>;
|
|
424
379
|
listMediaPipelineKinesisVideoStreamPools(
|
|
425
380
|
args: ListMediaPipelineKinesisVideoStreamPoolsCommandInput,
|
|
426
|
-
options?: __HttpHandlerOptions
|
|
381
|
+
options?: __HttpHandlerOptions,
|
|
427
382
|
): Promise<ListMediaPipelineKinesisVideoStreamPoolsCommandOutput>;
|
|
428
383
|
listMediaPipelineKinesisVideoStreamPools(
|
|
429
384
|
args: ListMediaPipelineKinesisVideoStreamPoolsCommandInput,
|
|
430
|
-
cb: (
|
|
431
|
-
err: any,
|
|
432
|
-
data?: ListMediaPipelineKinesisVideoStreamPoolsCommandOutput
|
|
433
|
-
) => void
|
|
385
|
+
cb: (err: any, data?: ListMediaPipelineKinesisVideoStreamPoolsCommandOutput) => void,
|
|
434
386
|
): void;
|
|
435
387
|
listMediaPipelineKinesisVideoStreamPools(
|
|
436
388
|
args: ListMediaPipelineKinesisVideoStreamPoolsCommandInput,
|
|
437
389
|
options: __HttpHandlerOptions,
|
|
438
|
-
cb: (
|
|
439
|
-
err: any,
|
|
440
|
-
data?: ListMediaPipelineKinesisVideoStreamPoolsCommandOutput
|
|
441
|
-
) => void
|
|
390
|
+
cb: (err: any, data?: ListMediaPipelineKinesisVideoStreamPoolsCommandOutput) => void,
|
|
442
391
|
): void;
|
|
443
392
|
listMediaPipelines(): Promise<ListMediaPipelinesCommandOutput>;
|
|
444
393
|
listMediaPipelines(
|
|
445
394
|
args: ListMediaPipelinesCommandInput,
|
|
446
|
-
options?: __HttpHandlerOptions
|
|
395
|
+
options?: __HttpHandlerOptions,
|
|
447
396
|
): Promise<ListMediaPipelinesCommandOutput>;
|
|
448
397
|
listMediaPipelines(
|
|
449
398
|
args: ListMediaPipelinesCommandInput,
|
|
450
|
-
cb: (err: any, data?: ListMediaPipelinesCommandOutput) => void
|
|
399
|
+
cb: (err: any, data?: ListMediaPipelinesCommandOutput) => void,
|
|
451
400
|
): void;
|
|
452
401
|
listMediaPipelines(
|
|
453
402
|
args: ListMediaPipelinesCommandInput,
|
|
454
403
|
options: __HttpHandlerOptions,
|
|
455
|
-
cb: (err: any, data?: ListMediaPipelinesCommandOutput) => void
|
|
404
|
+
cb: (err: any, data?: ListMediaPipelinesCommandOutput) => void,
|
|
456
405
|
): void;
|
|
457
406
|
listTagsForResource(
|
|
458
407
|
args: ListTagsForResourceCommandInput,
|
|
459
|
-
options?: __HttpHandlerOptions
|
|
408
|
+
options?: __HttpHandlerOptions,
|
|
460
409
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
461
410
|
listTagsForResource(
|
|
462
411
|
args: ListTagsForResourceCommandInput,
|
|
463
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
412
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
464
413
|
): void;
|
|
465
414
|
listTagsForResource(
|
|
466
415
|
args: ListTagsForResourceCommandInput,
|
|
467
416
|
options: __HttpHandlerOptions,
|
|
468
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
417
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
469
418
|
): void;
|
|
470
419
|
startSpeakerSearchTask(
|
|
471
420
|
args: StartSpeakerSearchTaskCommandInput,
|
|
472
|
-
options?: __HttpHandlerOptions
|
|
421
|
+
options?: __HttpHandlerOptions,
|
|
473
422
|
): Promise<StartSpeakerSearchTaskCommandOutput>;
|
|
474
423
|
startSpeakerSearchTask(
|
|
475
424
|
args: StartSpeakerSearchTaskCommandInput,
|
|
476
|
-
cb: (err: any, data?: StartSpeakerSearchTaskCommandOutput) => void
|
|
425
|
+
cb: (err: any, data?: StartSpeakerSearchTaskCommandOutput) => void,
|
|
477
426
|
): void;
|
|
478
427
|
startSpeakerSearchTask(
|
|
479
428
|
args: StartSpeakerSearchTaskCommandInput,
|
|
480
429
|
options: __HttpHandlerOptions,
|
|
481
|
-
cb: (err: any, data?: StartSpeakerSearchTaskCommandOutput) => void
|
|
430
|
+
cb: (err: any, data?: StartSpeakerSearchTaskCommandOutput) => void,
|
|
482
431
|
): void;
|
|
483
432
|
startVoiceToneAnalysisTask(
|
|
484
433
|
args: StartVoiceToneAnalysisTaskCommandInput,
|
|
485
|
-
options?: __HttpHandlerOptions
|
|
434
|
+
options?: __HttpHandlerOptions,
|
|
486
435
|
): Promise<StartVoiceToneAnalysisTaskCommandOutput>;
|
|
487
436
|
startVoiceToneAnalysisTask(
|
|
488
437
|
args: StartVoiceToneAnalysisTaskCommandInput,
|
|
489
|
-
cb: (err: any, data?: StartVoiceToneAnalysisTaskCommandOutput) => void
|
|
438
|
+
cb: (err: any, data?: StartVoiceToneAnalysisTaskCommandOutput) => void,
|
|
490
439
|
): void;
|
|
491
440
|
startVoiceToneAnalysisTask(
|
|
492
441
|
args: StartVoiceToneAnalysisTaskCommandInput,
|
|
493
442
|
options: __HttpHandlerOptions,
|
|
494
|
-
cb: (err: any, data?: StartVoiceToneAnalysisTaskCommandOutput) => void
|
|
443
|
+
cb: (err: any, data?: StartVoiceToneAnalysisTaskCommandOutput) => void,
|
|
495
444
|
): void;
|
|
496
445
|
stopSpeakerSearchTask(
|
|
497
446
|
args: StopSpeakerSearchTaskCommandInput,
|
|
498
|
-
options?: __HttpHandlerOptions
|
|
447
|
+
options?: __HttpHandlerOptions,
|
|
499
448
|
): Promise<StopSpeakerSearchTaskCommandOutput>;
|
|
500
449
|
stopSpeakerSearchTask(
|
|
501
450
|
args: StopSpeakerSearchTaskCommandInput,
|
|
502
|
-
cb: (err: any, data?: StopSpeakerSearchTaskCommandOutput) => void
|
|
451
|
+
cb: (err: any, data?: StopSpeakerSearchTaskCommandOutput) => void,
|
|
503
452
|
): void;
|
|
504
453
|
stopSpeakerSearchTask(
|
|
505
454
|
args: StopSpeakerSearchTaskCommandInput,
|
|
506
455
|
options: __HttpHandlerOptions,
|
|
507
|
-
cb: (err: any, data?: StopSpeakerSearchTaskCommandOutput) => void
|
|
456
|
+
cb: (err: any, data?: StopSpeakerSearchTaskCommandOutput) => void,
|
|
508
457
|
): void;
|
|
509
458
|
stopVoiceToneAnalysisTask(
|
|
510
459
|
args: StopVoiceToneAnalysisTaskCommandInput,
|
|
511
|
-
options?: __HttpHandlerOptions
|
|
460
|
+
options?: __HttpHandlerOptions,
|
|
512
461
|
): Promise<StopVoiceToneAnalysisTaskCommandOutput>;
|
|
513
462
|
stopVoiceToneAnalysisTask(
|
|
514
463
|
args: StopVoiceToneAnalysisTaskCommandInput,
|
|
515
|
-
cb: (err: any, data?: StopVoiceToneAnalysisTaskCommandOutput) => void
|
|
464
|
+
cb: (err: any, data?: StopVoiceToneAnalysisTaskCommandOutput) => void,
|
|
516
465
|
): void;
|
|
517
466
|
stopVoiceToneAnalysisTask(
|
|
518
467
|
args: StopVoiceToneAnalysisTaskCommandInput,
|
|
519
468
|
options: __HttpHandlerOptions,
|
|
520
|
-
cb: (err: any, data?: StopVoiceToneAnalysisTaskCommandOutput) => void
|
|
469
|
+
cb: (err: any, data?: StopVoiceToneAnalysisTaskCommandOutput) => void,
|
|
521
470
|
): void;
|
|
522
471
|
tagResource(
|
|
523
472
|
args: TagResourceCommandInput,
|
|
524
|
-
options?: __HttpHandlerOptions
|
|
473
|
+
options?: __HttpHandlerOptions,
|
|
525
474
|
): Promise<TagResourceCommandOutput>;
|
|
526
475
|
tagResource(
|
|
527
476
|
args: TagResourceCommandInput,
|
|
528
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
477
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
529
478
|
): void;
|
|
530
479
|
tagResource(
|
|
531
480
|
args: TagResourceCommandInput,
|
|
532
481
|
options: __HttpHandlerOptions,
|
|
533
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
482
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
534
483
|
): void;
|
|
535
484
|
untagResource(
|
|
536
485
|
args: UntagResourceCommandInput,
|
|
537
|
-
options?: __HttpHandlerOptions
|
|
486
|
+
options?: __HttpHandlerOptions,
|
|
538
487
|
): Promise<UntagResourceCommandOutput>;
|
|
539
488
|
untagResource(
|
|
540
489
|
args: UntagResourceCommandInput,
|
|
541
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
490
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
542
491
|
): void;
|
|
543
492
|
untagResource(
|
|
544
493
|
args: UntagResourceCommandInput,
|
|
545
494
|
options: __HttpHandlerOptions,
|
|
546
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
495
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
547
496
|
): void;
|
|
548
497
|
updateMediaInsightsPipelineConfiguration(
|
|
549
498
|
args: UpdateMediaInsightsPipelineConfigurationCommandInput,
|
|
550
|
-
options?: __HttpHandlerOptions
|
|
499
|
+
options?: __HttpHandlerOptions,
|
|
551
500
|
): Promise<UpdateMediaInsightsPipelineConfigurationCommandOutput>;
|
|
552
501
|
updateMediaInsightsPipelineConfiguration(
|
|
553
502
|
args: UpdateMediaInsightsPipelineConfigurationCommandInput,
|
|
554
|
-
cb: (
|
|
555
|
-
err: any,
|
|
556
|
-
data?: UpdateMediaInsightsPipelineConfigurationCommandOutput
|
|
557
|
-
) => void
|
|
503
|
+
cb: (err: any, data?: UpdateMediaInsightsPipelineConfigurationCommandOutput) => void,
|
|
558
504
|
): void;
|
|
559
505
|
updateMediaInsightsPipelineConfiguration(
|
|
560
506
|
args: UpdateMediaInsightsPipelineConfigurationCommandInput,
|
|
561
507
|
options: __HttpHandlerOptions,
|
|
562
|
-
cb: (
|
|
563
|
-
err: any,
|
|
564
|
-
data?: UpdateMediaInsightsPipelineConfigurationCommandOutput
|
|
565
|
-
) => void
|
|
508
|
+
cb: (err: any, data?: UpdateMediaInsightsPipelineConfigurationCommandOutput) => void,
|
|
566
509
|
): void;
|
|
567
510
|
updateMediaInsightsPipelineStatus(
|
|
568
511
|
args: UpdateMediaInsightsPipelineStatusCommandInput,
|
|
569
|
-
options?: __HttpHandlerOptions
|
|
512
|
+
options?: __HttpHandlerOptions,
|
|
570
513
|
): Promise<UpdateMediaInsightsPipelineStatusCommandOutput>;
|
|
571
514
|
updateMediaInsightsPipelineStatus(
|
|
572
515
|
args: UpdateMediaInsightsPipelineStatusCommandInput,
|
|
573
|
-
cb: (
|
|
574
|
-
err: any,
|
|
575
|
-
data?: UpdateMediaInsightsPipelineStatusCommandOutput
|
|
576
|
-
) => void
|
|
516
|
+
cb: (err: any, data?: UpdateMediaInsightsPipelineStatusCommandOutput) => void,
|
|
577
517
|
): void;
|
|
578
518
|
updateMediaInsightsPipelineStatus(
|
|
579
519
|
args: UpdateMediaInsightsPipelineStatusCommandInput,
|
|
580
520
|
options: __HttpHandlerOptions,
|
|
581
|
-
cb: (
|
|
582
|
-
err: any,
|
|
583
|
-
data?: UpdateMediaInsightsPipelineStatusCommandOutput
|
|
584
|
-
) => void
|
|
521
|
+
cb: (err: any, data?: UpdateMediaInsightsPipelineStatusCommandOutput) => void,
|
|
585
522
|
): void;
|
|
586
523
|
updateMediaPipelineKinesisVideoStreamPool(
|
|
587
524
|
args: UpdateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
588
|
-
options?: __HttpHandlerOptions
|
|
525
|
+
options?: __HttpHandlerOptions,
|
|
589
526
|
): Promise<UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput>;
|
|
590
527
|
updateMediaPipelineKinesisVideoStreamPool(
|
|
591
528
|
args: UpdateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
592
|
-
cb: (
|
|
593
|
-
err: any,
|
|
594
|
-
data?: UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput
|
|
595
|
-
) => void
|
|
529
|
+
cb: (err: any, data?: UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput) => void,
|
|
596
530
|
): void;
|
|
597
531
|
updateMediaPipelineKinesisVideoStreamPool(
|
|
598
532
|
args: UpdateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
599
533
|
options: __HttpHandlerOptions,
|
|
600
|
-
cb: (
|
|
601
|
-
err: any,
|
|
602
|
-
data?: UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput
|
|
603
|
-
) => void
|
|
534
|
+
cb: (err: any, data?: UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput) => void,
|
|
604
535
|
): void;
|
|
605
536
|
paginateListMediaCapturePipelines(
|
|
606
537
|
args?: ListMediaCapturePipelinesCommandInput,
|
|
607
538
|
paginationConfig?: Pick<
|
|
608
539
|
PaginationConfiguration,
|
|
609
540
|
Exclude<keyof PaginationConfiguration, "client">
|
|
610
|
-
|
|
541
|
+
>,
|
|
611
542
|
): Paginator<ListMediaCapturePipelinesCommandOutput>;
|
|
612
543
|
paginateListMediaInsightsPipelineConfigurations(
|
|
613
544
|
args?: ListMediaInsightsPipelineConfigurationsCommandInput,
|
|
614
545
|
paginationConfig?: Pick<
|
|
615
546
|
PaginationConfiguration,
|
|
616
547
|
Exclude<keyof PaginationConfiguration, "client">
|
|
617
|
-
|
|
548
|
+
>,
|
|
618
549
|
): Paginator<ListMediaInsightsPipelineConfigurationsCommandOutput>;
|
|
619
550
|
paginateListMediaPipelineKinesisVideoStreamPools(
|
|
620
551
|
args?: ListMediaPipelineKinesisVideoStreamPoolsCommandInput,
|
|
621
552
|
paginationConfig?: Pick<
|
|
622
553
|
PaginationConfiguration,
|
|
623
554
|
Exclude<keyof PaginationConfiguration, "client">
|
|
624
|
-
|
|
555
|
+
>,
|
|
625
556
|
): Paginator<ListMediaPipelineKinesisVideoStreamPoolsCommandOutput>;
|
|
626
557
|
paginateListMediaPipelines(
|
|
627
558
|
args?: ListMediaPipelinesCommandInput,
|
|
628
559
|
paginationConfig?: Pick<
|
|
629
560
|
PaginationConfiguration,
|
|
630
561
|
Exclude<keyof PaginationConfiguration, "client">
|
|
631
|
-
|
|
562
|
+
>,
|
|
632
563
|
): Paginator<ListMediaPipelinesCommandOutput>;
|
|
633
564
|
}
|
|
634
565
|
export declare class ChimeSDKMediaPipelines
|