@aws-sdk/client-chime-sdk-media-pipelines 3.687.0 → 3.691.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 +8 -2
- package/dist-es/models/models_0.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/CreateMediaCapturePipelineCommand.d.ts +10 -0
- package/dist-types/commands/GetMediaCapturePipelineCommand.d.ts +5 -0
- package/dist-types/commands/GetMediaPipelineCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +362 -265
- package/dist-types/ts3.4/models/models_0.d.ts +313 -265
- package/package.json +7 -7
|
@@ -23,7 +23,7 @@ export interface ActiveSpeakerOnlyConfiguration {
|
|
|
23
23
|
* <p>The position of the <code>ActiveSpeakerOnly</code> video tile.</p>
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
|
-
ActiveSpeakerPosition?: ActiveSpeakerPosition;
|
|
26
|
+
ActiveSpeakerPosition?: ActiveSpeakerPosition | undefined;
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
29
|
* @public
|
|
@@ -105,12 +105,12 @@ export interface PostCallAnalyticsSettings {
|
|
|
105
105
|
* <p>The content redaction output settings for a post-call analysis task.</p>
|
|
106
106
|
* @public
|
|
107
107
|
*/
|
|
108
|
-
ContentRedactionOutput?: ContentRedactionOutput;
|
|
108
|
+
ContentRedactionOutput?: ContentRedactionOutput | undefined;
|
|
109
109
|
/**
|
|
110
110
|
* <p>The ID of the KMS (Key Management Service) key used to encrypt the output.</p>
|
|
111
111
|
* @public
|
|
112
112
|
*/
|
|
113
|
-
OutputEncryptionKMSKeyId?: string;
|
|
113
|
+
OutputEncryptionKMSKeyId?: string | undefined;
|
|
114
114
|
}
|
|
115
115
|
/**
|
|
116
116
|
* @public
|
|
@@ -144,7 +144,7 @@ export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
|
|
|
144
144
|
* <p>Length Constraints: Minimum length of 1. Maximum length of 200. </p>
|
|
145
145
|
* @public
|
|
146
146
|
*/
|
|
147
|
-
VocabularyName?: string;
|
|
147
|
+
VocabularyName?: string | undefined;
|
|
148
148
|
/**
|
|
149
149
|
* <p>Specifies the name of the custom vocabulary filter to use when processing a
|
|
150
150
|
* transcription. Note that vocabulary filter names are case sensitive.</p>
|
|
@@ -154,7 +154,7 @@ export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
|
|
|
154
154
|
* <p>Length Constraints: Minimum length of 1. Maximum length of 200. </p>
|
|
155
155
|
* @public
|
|
156
156
|
*/
|
|
157
|
-
VocabularyFilterName?: string;
|
|
157
|
+
VocabularyFilterName?: string | undefined;
|
|
158
158
|
/**
|
|
159
159
|
* <p>Specifies how to apply a vocabulary filter to a transcript.</p>
|
|
160
160
|
* <p>To replace words with <b>***</b>, choose <code>mask</code>.</p>
|
|
@@ -162,7 +162,7 @@ export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
|
|
|
162
162
|
* <p>To flag words without changing them, choose <code>tag</code>. </p>
|
|
163
163
|
* @public
|
|
164
164
|
*/
|
|
165
|
-
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
165
|
+
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
166
166
|
/**
|
|
167
167
|
* <p>Specifies the name of the custom language model to use when processing a transcription.
|
|
168
168
|
* Note that language model names are case sensitive.</p>
|
|
@@ -172,14 +172,14 @@ export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
|
|
|
172
172
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-language-models.html">Custom language models</a> in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
173
173
|
* @public
|
|
174
174
|
*/
|
|
175
|
-
LanguageModelName?: string;
|
|
175
|
+
LanguageModelName?: string | undefined;
|
|
176
176
|
/**
|
|
177
177
|
* <p>Enables partial result stabilization for your transcription. Partial result stabilization can reduce latency in your output, but may impact accuracy.
|
|
178
178
|
* For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/streaming.html#streaming-partial-result-stabilization">Partial-result stabilization</a>
|
|
179
179
|
* in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
EnablePartialResultsStabilization?: boolean;
|
|
182
|
+
EnablePartialResultsStabilization?: boolean | undefined;
|
|
183
183
|
/**
|
|
184
184
|
* <p>Specifies the level of stability to use when you enable partial results stabilization
|
|
185
185
|
* (<code>EnablePartialResultsStabilization</code>).</p>
|
|
@@ -188,7 +188,7 @@ export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
|
|
|
188
188
|
* in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
189
189
|
* @public
|
|
190
190
|
*/
|
|
191
|
-
PartialResultsStability?: PartialResultsStability;
|
|
191
|
+
PartialResultsStability?: PartialResultsStability | undefined;
|
|
192
192
|
/**
|
|
193
193
|
* <p>Labels all personally identifiable information (PII) identified in your transcript.</p>
|
|
194
194
|
* <p>Content identification is performed at the segment level; PII specified in <code>PiiEntityTypes</code> is flagged upon complete transcription of an audio segment.</p>
|
|
@@ -197,7 +197,7 @@ export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
|
|
|
197
197
|
* in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
198
198
|
* @public
|
|
199
199
|
*/
|
|
200
|
-
ContentIdentificationType?: ContentType;
|
|
200
|
+
ContentIdentificationType?: ContentType | undefined;
|
|
201
201
|
/**
|
|
202
202
|
* <p>Redacts all personally identifiable information (PII) identified in your transcript.</p>
|
|
203
203
|
* <p>Content redaction is performed at the segment level; PII specified in <code>PiiEntityTypes</code> is redacted upon complete transcription of an audio segment.</p>
|
|
@@ -206,7 +206,7 @@ export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
|
|
|
206
206
|
* in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
207
207
|
* @public
|
|
208
208
|
*/
|
|
209
|
-
ContentRedactionType?: ContentType;
|
|
209
|
+
ContentRedactionType?: ContentType | undefined;
|
|
210
210
|
/**
|
|
211
211
|
* <p>Specifies the types of personally identifiable information (PII) to redact from a transcript. You can include as many types as you'd like, or you can select <code>ALL</code>.</p>
|
|
212
212
|
* <p>To include <code>PiiEntityTypes</code> in your Call Analytics request, you must also include <code>ContentIdentificationType</code> or <code>ContentRedactionType</code>, but you can't include both. </p>
|
|
@@ -216,22 +216,22 @@ export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
|
|
|
216
216
|
* <p>Length Constraints: Minimum length of 1. Maximum length of 300.</p>
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
PiiEntityTypes?: string;
|
|
219
|
+
PiiEntityTypes?: string | undefined;
|
|
220
220
|
/**
|
|
221
221
|
* <p>If true, <code>UtteranceEvents</code> with <code>IsPartial: true</code> are filtered out of the insights target.</p>
|
|
222
222
|
* @public
|
|
223
223
|
*/
|
|
224
|
-
FilterPartialResults?: boolean;
|
|
224
|
+
FilterPartialResults?: boolean | undefined;
|
|
225
225
|
/**
|
|
226
226
|
* <p>The settings for a post-call analysis task in an analytics configuration.</p>
|
|
227
227
|
* @public
|
|
228
228
|
*/
|
|
229
|
-
PostCallAnalyticsSettings?: PostCallAnalyticsSettings;
|
|
229
|
+
PostCallAnalyticsSettings?: PostCallAnalyticsSettings | undefined;
|
|
230
230
|
/**
|
|
231
231
|
* <p>By default, all <code>CategoryEvents</code> are sent to the insights target. If this parameter is specified, only included categories are sent to the insights target. </p>
|
|
232
232
|
* @public
|
|
233
233
|
*/
|
|
234
|
-
CallAnalyticsStreamCategories?: string[];
|
|
234
|
+
CallAnalyticsStreamCategories?: string[] | undefined;
|
|
235
235
|
}
|
|
236
236
|
/**
|
|
237
237
|
* <p>A structure that contains the configuration settings for an Amazon Transcribe processor.</p>
|
|
@@ -250,39 +250,39 @@ export interface AmazonTranscribeProcessorConfiguration {
|
|
|
250
250
|
* in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
251
251
|
* @public
|
|
252
252
|
*/
|
|
253
|
-
LanguageCode?: CallAnalyticsLanguageCode;
|
|
253
|
+
LanguageCode?: CallAnalyticsLanguageCode | undefined;
|
|
254
254
|
/**
|
|
255
255
|
* <p>The name of the custom vocabulary that you specified in your Call Analytics
|
|
256
256
|
* request.</p>
|
|
257
257
|
* <p>Length Constraints: Minimum length of 1. Maximum length of 200.</p>
|
|
258
258
|
* @public
|
|
259
259
|
*/
|
|
260
|
-
VocabularyName?: string;
|
|
260
|
+
VocabularyName?: string | undefined;
|
|
261
261
|
/**
|
|
262
262
|
* <p>The name of the custom vocabulary filter that you specified in your Call Analytics
|
|
263
263
|
* request.</p>
|
|
264
264
|
* <p>Length Constraints: Minimum length of 1. Maximum length of 200.</p>
|
|
265
265
|
* @public
|
|
266
266
|
*/
|
|
267
|
-
VocabularyFilterName?: string;
|
|
267
|
+
VocabularyFilterName?: string | undefined;
|
|
268
268
|
/**
|
|
269
269
|
* <p>The vocabulary filtering method used in your Call Analytics transcription.</p>
|
|
270
270
|
* @public
|
|
271
271
|
*/
|
|
272
|
-
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
272
|
+
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
273
273
|
/**
|
|
274
274
|
* <p>Enables speaker partitioning (diarization) in your transcription output. Speaker partitioning labels the speech from individual speakers in your media file.</p>
|
|
275
275
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/diarization.html">Partitioning speakers (diarization)</a> in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
ShowSpeakerLabel?: boolean;
|
|
278
|
+
ShowSpeakerLabel?: boolean | undefined;
|
|
279
279
|
/**
|
|
280
280
|
* <p>Enables partial result stabilization for your transcription. Partial result stabilization can reduce latency in your output, but may impact accuracy.</p>
|
|
281
281
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/streaming.html#streaming-partial-result-stabilization">Partial-result stabilization</a>
|
|
282
282
|
* in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
283
283
|
* @public
|
|
284
284
|
*/
|
|
285
|
-
EnablePartialResultsStabilization?: boolean;
|
|
285
|
+
EnablePartialResultsStabilization?: boolean | undefined;
|
|
286
286
|
/**
|
|
287
287
|
* <p>The level of stability to use when you enable partial results stabilization
|
|
288
288
|
* (<code>EnablePartialResultsStabilization</code>).</p>
|
|
@@ -291,7 +291,7 @@ export interface AmazonTranscribeProcessorConfiguration {
|
|
|
291
291
|
* in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
PartialResultsStability?: PartialResultsStability;
|
|
294
|
+
PartialResultsStability?: PartialResultsStability | undefined;
|
|
295
295
|
/**
|
|
296
296
|
* <p>Labels all personally identifiable information (PII) identified in your transcript.</p>
|
|
297
297
|
* <p>Content identification is performed at the segment level; PII specified in
|
|
@@ -304,7 +304,7 @@ export interface AmazonTranscribeProcessorConfiguration {
|
|
|
304
304
|
* in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
305
305
|
* @public
|
|
306
306
|
*/
|
|
307
|
-
ContentIdentificationType?: ContentType;
|
|
307
|
+
ContentIdentificationType?: ContentType | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* <p>Redacts all personally identifiable information (PII) identified in your transcript.</p>
|
|
310
310
|
* <p>Content redaction is performed at the segment level; PII specified in PiiEntityTypes is redacted upon complete transcription of an audio segment.</p>
|
|
@@ -313,7 +313,7 @@ export interface AmazonTranscribeProcessorConfiguration {
|
|
|
313
313
|
* in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
|
-
ContentRedactionType?: ContentType;
|
|
316
|
+
ContentRedactionType?: ContentType | undefined;
|
|
317
317
|
/**
|
|
318
318
|
* <p>The types of personally identifiable information (PII) to redact from a transcript. You
|
|
319
319
|
* can include as many types as you'd like, or you can select <code>ALL</code>.</p>
|
|
@@ -324,7 +324,7 @@ export interface AmazonTranscribeProcessorConfiguration {
|
|
|
324
324
|
* <p>If you leave this parameter empty, the default behavior is equivalent to <code>ALL</code>.</p>
|
|
325
325
|
* @public
|
|
326
326
|
*/
|
|
327
|
-
PiiEntityTypes?: string;
|
|
327
|
+
PiiEntityTypes?: string | undefined;
|
|
328
328
|
/**
|
|
329
329
|
* <p>The name of the custom language model that you want to use when processing your
|
|
330
330
|
* transcription. Note that language model names are case sensitive.</p>
|
|
@@ -333,42 +333,46 @@ export interface AmazonTranscribeProcessorConfiguration {
|
|
|
333
333
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-language-models.html">Custom language models</a> in the <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
LanguageModelName?: string;
|
|
336
|
+
LanguageModelName?: string | undefined;
|
|
337
337
|
/**
|
|
338
338
|
* <p>If true, <code>TranscriptEvents</code> with <code>IsPartial: true</code> are filtered out of the insights target.</p>
|
|
339
339
|
* @public
|
|
340
340
|
*/
|
|
341
|
-
FilterPartialResults?: boolean;
|
|
341
|
+
FilterPartialResults?: boolean | undefined;
|
|
342
342
|
/**
|
|
343
343
|
* <p>Turns language identification on or off.</p>
|
|
344
344
|
* @public
|
|
345
345
|
*/
|
|
346
|
-
IdentifyLanguage?: boolean;
|
|
346
|
+
IdentifyLanguage?: boolean | undefined;
|
|
347
347
|
/**
|
|
348
348
|
* <p>Turns language identification on or off for multiple languages.</p>
|
|
349
|
+
* <note>
|
|
350
|
+
* <p>Calls to this API must include a <code>LanguageCode</code>, <code>IdentifyLanguage</code>, or <code>IdentifyMultipleLanguages</code> parameter.
|
|
351
|
+
* If you include more than one of those parameters, your transcription job fails.</p>
|
|
352
|
+
* </note>
|
|
349
353
|
* @public
|
|
350
354
|
*/
|
|
351
|
-
IdentifyMultipleLanguages?: boolean;
|
|
355
|
+
IdentifyMultipleLanguages?: boolean | undefined;
|
|
352
356
|
/**
|
|
353
357
|
* <p>The language options for the transcription, such as automatic language detection.</p>
|
|
354
358
|
* @public
|
|
355
359
|
*/
|
|
356
|
-
LanguageOptions?: string;
|
|
360
|
+
LanguageOptions?: string | undefined;
|
|
357
361
|
/**
|
|
358
362
|
* <p>The preferred language for the transcription.</p>
|
|
359
363
|
* @public
|
|
360
364
|
*/
|
|
361
|
-
PreferredLanguage?: CallAnalyticsLanguageCode;
|
|
365
|
+
PreferredLanguage?: CallAnalyticsLanguageCode | undefined;
|
|
362
366
|
/**
|
|
363
367
|
* <p>The names of the custom vocabulary or vocabularies used during transcription.</p>
|
|
364
368
|
* @public
|
|
365
369
|
*/
|
|
366
|
-
VocabularyNames?: string;
|
|
370
|
+
VocabularyNames?: string | undefined;
|
|
367
371
|
/**
|
|
368
372
|
* <p>The names of the custom vocabulary filter or filters using during transcription.</p>
|
|
369
373
|
* @public
|
|
370
374
|
*/
|
|
371
|
-
VocabularyFilterNames?: string;
|
|
375
|
+
VocabularyFilterNames?: string | undefined;
|
|
372
376
|
}
|
|
373
377
|
/**
|
|
374
378
|
* @public
|
|
@@ -597,22 +601,22 @@ export interface HorizontalLayoutConfiguration {
|
|
|
597
601
|
* <p>Sets the automatic ordering of the video tiles.</p>
|
|
598
602
|
* @public
|
|
599
603
|
*/
|
|
600
|
-
TileOrder?: TileOrder;
|
|
604
|
+
TileOrder?: TileOrder | undefined;
|
|
601
605
|
/**
|
|
602
606
|
* <p>Sets the position of horizontal tiles.</p>
|
|
603
607
|
* @public
|
|
604
608
|
*/
|
|
605
|
-
TilePosition?: HorizontalTilePosition;
|
|
609
|
+
TilePosition?: HorizontalTilePosition | undefined;
|
|
606
610
|
/**
|
|
607
611
|
* <p>The maximum number of video tiles to display.</p>
|
|
608
612
|
* @public
|
|
609
613
|
*/
|
|
610
|
-
TileCount?: number;
|
|
614
|
+
TileCount?: number | undefined;
|
|
611
615
|
/**
|
|
612
616
|
* <p>Specifies the aspect ratio of all video tiles.</p>
|
|
613
617
|
* @public
|
|
614
618
|
*/
|
|
615
|
-
TileAspectRatio?: string;
|
|
619
|
+
TileAspectRatio?: string | undefined;
|
|
616
620
|
}
|
|
617
621
|
/**
|
|
618
622
|
* @public
|
|
@@ -637,7 +641,7 @@ export interface PresenterOnlyConfiguration {
|
|
|
637
641
|
* <p>Defines the position of the presenter video tile. Default: <code>TopRight</code>.</p>
|
|
638
642
|
* @public
|
|
639
643
|
*/
|
|
640
|
-
PresenterPosition?: PresenterPosition;
|
|
644
|
+
PresenterPosition?: PresenterPosition | undefined;
|
|
641
645
|
}
|
|
642
646
|
/**
|
|
643
647
|
* @public
|
|
@@ -660,22 +664,22 @@ export interface VerticalLayoutConfiguration {
|
|
|
660
664
|
* <p>Sets the automatic ordering of the video tiles.</p>
|
|
661
665
|
* @public
|
|
662
666
|
*/
|
|
663
|
-
TileOrder?: TileOrder;
|
|
667
|
+
TileOrder?: TileOrder | undefined;
|
|
664
668
|
/**
|
|
665
669
|
* <p>Sets the position of vertical tiles.</p>
|
|
666
670
|
* @public
|
|
667
671
|
*/
|
|
668
|
-
TilePosition?: VerticalTilePosition;
|
|
672
|
+
TilePosition?: VerticalTilePosition | undefined;
|
|
669
673
|
/**
|
|
670
674
|
* <p>The maximum number of tiles to display.</p>
|
|
671
675
|
* @public
|
|
672
676
|
*/
|
|
673
|
-
TileCount?: number;
|
|
677
|
+
TileCount?: number | undefined;
|
|
674
678
|
/**
|
|
675
679
|
* <p>Sets the aspect ratio of the video tiles, such as 16:9.</p>
|
|
676
680
|
* @public
|
|
677
681
|
*/
|
|
678
|
-
TileAspectRatio?: string;
|
|
682
|
+
TileAspectRatio?: string | undefined;
|
|
679
683
|
}
|
|
680
684
|
/**
|
|
681
685
|
* @public
|
|
@@ -718,22 +722,22 @@ export interface VideoAttribute {
|
|
|
718
722
|
* <p>Sets the corner radius of all video tiles.</p>
|
|
719
723
|
* @public
|
|
720
724
|
*/
|
|
721
|
-
CornerRadius?: number;
|
|
725
|
+
CornerRadius?: number | undefined;
|
|
722
726
|
/**
|
|
723
727
|
* <p>Defines the border color of all video tiles.</p>
|
|
724
728
|
* @public
|
|
725
729
|
*/
|
|
726
|
-
BorderColor?: BorderColor;
|
|
730
|
+
BorderColor?: BorderColor | undefined;
|
|
727
731
|
/**
|
|
728
732
|
* <p>Defines the highlight color for the active video tile.</p>
|
|
729
733
|
* @public
|
|
730
734
|
*/
|
|
731
|
-
HighlightColor?: HighlightColor;
|
|
735
|
+
HighlightColor?: HighlightColor | undefined;
|
|
732
736
|
/**
|
|
733
737
|
* <p>Defines the border thickness for all video tiles.</p>
|
|
734
738
|
* @public
|
|
735
739
|
*/
|
|
736
|
-
BorderThickness?: number;
|
|
740
|
+
BorderThickness?: number | undefined;
|
|
737
741
|
}
|
|
738
742
|
/**
|
|
739
743
|
* <p>Specifies the type of grid layout.</p>
|
|
@@ -749,32 +753,32 @@ export interface GridViewConfiguration {
|
|
|
749
753
|
* <p>Defines the configuration options for a presenter only video tile.</p>
|
|
750
754
|
* @public
|
|
751
755
|
*/
|
|
752
|
-
PresenterOnlyConfiguration?: PresenterOnlyConfiguration;
|
|
756
|
+
PresenterOnlyConfiguration?: PresenterOnlyConfiguration | undefined;
|
|
753
757
|
/**
|
|
754
758
|
* <p>The configuration settings for an <code>ActiveSpeakerOnly</code> video tile.</p>
|
|
755
759
|
* @public
|
|
756
760
|
*/
|
|
757
|
-
ActiveSpeakerOnlyConfiguration?: ActiveSpeakerOnlyConfiguration;
|
|
761
|
+
ActiveSpeakerOnlyConfiguration?: ActiveSpeakerOnlyConfiguration | undefined;
|
|
758
762
|
/**
|
|
759
763
|
* <p>The configuration settings for a horizontal layout.</p>
|
|
760
764
|
* @public
|
|
761
765
|
*/
|
|
762
|
-
HorizontalLayoutConfiguration?: HorizontalLayoutConfiguration;
|
|
766
|
+
HorizontalLayoutConfiguration?: HorizontalLayoutConfiguration | undefined;
|
|
763
767
|
/**
|
|
764
768
|
* <p>The configuration settings for a vertical layout.</p>
|
|
765
769
|
* @public
|
|
766
770
|
*/
|
|
767
|
-
VerticalLayoutConfiguration?: VerticalLayoutConfiguration;
|
|
771
|
+
VerticalLayoutConfiguration?: VerticalLayoutConfiguration | undefined;
|
|
768
772
|
/**
|
|
769
773
|
* <p>The attribute settings for the video tiles.</p>
|
|
770
774
|
* @public
|
|
771
775
|
*/
|
|
772
|
-
VideoAttribute?: VideoAttribute;
|
|
776
|
+
VideoAttribute?: VideoAttribute | undefined;
|
|
773
777
|
/**
|
|
774
778
|
* <p>The orientation setting, horizontal or vertical.</p>
|
|
775
779
|
* @public
|
|
776
780
|
*/
|
|
777
|
-
CanvasOrientation?: CanvasOrientation;
|
|
781
|
+
CanvasOrientation?: CanvasOrientation | undefined;
|
|
778
782
|
}
|
|
779
783
|
/**
|
|
780
784
|
* @public
|
|
@@ -808,12 +812,12 @@ export interface CompositedVideoArtifactsConfiguration {
|
|
|
808
812
|
* <p>The layout setting, such as <code>GridView</code> in the configuration object.</p>
|
|
809
813
|
* @public
|
|
810
814
|
*/
|
|
811
|
-
Layout?: LayoutOption;
|
|
815
|
+
Layout?: LayoutOption | undefined;
|
|
812
816
|
/**
|
|
813
817
|
* <p>The video resolution setting in the configuration object. Default: HD at 1280 x 720. FHD resolution: 1920 x 1080.</p>
|
|
814
818
|
* @public
|
|
815
819
|
*/
|
|
816
|
-
Resolution?: ResolutionOption;
|
|
820
|
+
Resolution?: ResolutionOption | undefined;
|
|
817
821
|
/**
|
|
818
822
|
* <p>The <code>GridView</code> configuration setting.</p>
|
|
819
823
|
* @public
|
|
@@ -857,7 +861,7 @@ export interface ContentArtifactsConfiguration {
|
|
|
857
861
|
* <p>The MUX type of the artifact configuration.</p>
|
|
858
862
|
* @public
|
|
859
863
|
*/
|
|
860
|
-
MuxType?: ContentMuxType;
|
|
864
|
+
MuxType?: ContentMuxType | undefined;
|
|
861
865
|
}
|
|
862
866
|
/**
|
|
863
867
|
* @public
|
|
@@ -884,7 +888,7 @@ export interface VideoArtifactsConfiguration {
|
|
|
884
888
|
* <p>The MUX type of the video artifact configuration object.</p>
|
|
885
889
|
* @public
|
|
886
890
|
*/
|
|
887
|
-
MuxType?: VideoMuxType;
|
|
891
|
+
MuxType?: VideoMuxType | undefined;
|
|
888
892
|
}
|
|
889
893
|
/**
|
|
890
894
|
* <p>The configuration for the artifacts.</p>
|
|
@@ -910,7 +914,7 @@ export interface ArtifactsConfiguration {
|
|
|
910
914
|
* <p>Enables video compositing.</p>
|
|
911
915
|
* @public
|
|
912
916
|
*/
|
|
913
|
-
CompositedVideo?: CompositedVideoArtifactsConfiguration;
|
|
917
|
+
CompositedVideo?: CompositedVideoArtifactsConfiguration | undefined;
|
|
914
918
|
}
|
|
915
919
|
/**
|
|
916
920
|
* @public
|
|
@@ -948,13 +952,13 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
|
948
952
|
export declare class BadRequestException extends __BaseException {
|
|
949
953
|
readonly name: "BadRequestException";
|
|
950
954
|
readonly $fault: "client";
|
|
951
|
-
Code?: ErrorCode;
|
|
952
|
-
Message?: string;
|
|
955
|
+
Code?: ErrorCode | undefined;
|
|
956
|
+
Message?: string | undefined;
|
|
953
957
|
/**
|
|
954
958
|
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
955
959
|
* @public
|
|
956
960
|
*/
|
|
957
|
-
RequestId?: string;
|
|
961
|
+
RequestId?: string | undefined;
|
|
958
962
|
/**
|
|
959
963
|
* @internal
|
|
960
964
|
*/
|
|
@@ -986,7 +990,7 @@ export interface ChannelDefinition {
|
|
|
986
990
|
* <p>Specifies whether the audio in a channel belongs to the <code>AGENT</code> or <code>CUSTOMER</code>.</p>
|
|
987
991
|
* @public
|
|
988
992
|
*/
|
|
989
|
-
ParticipantRole?: ParticipantRole;
|
|
993
|
+
ParticipantRole?: ParticipantRole | undefined;
|
|
990
994
|
}
|
|
991
995
|
/**
|
|
992
996
|
* <p>The video streams for a specified media pipeline. The total number of
|
|
@@ -998,12 +1002,12 @@ export interface SelectedVideoStreams {
|
|
|
998
1002
|
* <p>The attendee IDs of the streams selected for a media pipeline. </p>
|
|
999
1003
|
* @public
|
|
1000
1004
|
*/
|
|
1001
|
-
AttendeeIds?: string[];
|
|
1005
|
+
AttendeeIds?: string[] | undefined;
|
|
1002
1006
|
/**
|
|
1003
1007
|
* <p>The external user IDs of the streams selected for a media pipeline.</p>
|
|
1004
1008
|
* @public
|
|
1005
1009
|
*/
|
|
1006
|
-
ExternalUserIds?: string[];
|
|
1010
|
+
ExternalUserIds?: string[] | undefined;
|
|
1007
1011
|
}
|
|
1008
1012
|
/**
|
|
1009
1013
|
* <p>Source configuration for a specified media pipeline.</p>
|
|
@@ -1015,7 +1019,7 @@ export interface SourceConfiguration {
|
|
|
1015
1019
|
* of video streams can't exceed 25.</p>
|
|
1016
1020
|
* @public
|
|
1017
1021
|
*/
|
|
1018
|
-
SelectedVideoStreams?: SelectedVideoStreams;
|
|
1022
|
+
SelectedVideoStreams?: SelectedVideoStreams | undefined;
|
|
1019
1023
|
}
|
|
1020
1024
|
/**
|
|
1021
1025
|
* <p>The configuration object of the Amazon Chime SDK meeting for a specified media pipeline. <code>SourceType</code> must be <code>ChimeSdkMeeting</code>.</p>
|
|
@@ -1026,12 +1030,12 @@ export interface ChimeSdkMeetingConfiguration {
|
|
|
1026
1030
|
* <p>The source configuration for a specified media pipeline.</p>
|
|
1027
1031
|
* @public
|
|
1028
1032
|
*/
|
|
1029
|
-
SourceConfiguration?: SourceConfiguration;
|
|
1033
|
+
SourceConfiguration?: SourceConfiguration | undefined;
|
|
1030
1034
|
/**
|
|
1031
1035
|
* <p>The configuration for the artifacts in an Amazon Chime SDK meeting.</p>
|
|
1032
1036
|
* @public
|
|
1033
1037
|
*/
|
|
1034
|
-
ArtifactsConfiguration?: ArtifactsConfiguration;
|
|
1038
|
+
ArtifactsConfiguration?: ArtifactsConfiguration | undefined;
|
|
1035
1039
|
}
|
|
1036
1040
|
/**
|
|
1037
1041
|
* @public
|
|
@@ -1055,6 +1059,66 @@ export declare const MediaPipelineSourceType: {
|
|
|
1055
1059
|
* @public
|
|
1056
1060
|
*/
|
|
1057
1061
|
export type MediaPipelineSourceType = (typeof MediaPipelineSourceType)[keyof typeof MediaPipelineSourceType];
|
|
1062
|
+
/**
|
|
1063
|
+
* <p>Contains server side encryption parameters to be used by media capture pipeline. The
|
|
1064
|
+
* parameters can also be used by media concatenation pipeline taking media capture pipeline
|
|
1065
|
+
* as a media source.</p>
|
|
1066
|
+
* @public
|
|
1067
|
+
*/
|
|
1068
|
+
export interface SseAwsKeyManagementParams {
|
|
1069
|
+
/**
|
|
1070
|
+
* <p>The KMS key you want to use to encrypt your media pipeline output.
|
|
1071
|
+
* Decryption is required for concatenation pipeline. If using a key located in the current
|
|
1072
|
+
* Amazon Web Services account, you can specify your KMS key in one of four
|
|
1073
|
+
* ways:</p>
|
|
1074
|
+
* <ul>
|
|
1075
|
+
* <li>
|
|
1076
|
+
* <p>Use the KMS key ID itself. For example,
|
|
1077
|
+
* <code>1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p>
|
|
1078
|
+
* </li>
|
|
1079
|
+
* <li>
|
|
1080
|
+
* <p>Use an alias for the KMS key ID. For example,
|
|
1081
|
+
* <code>alias/ExampleAlias</code>.</p>
|
|
1082
|
+
* </li>
|
|
1083
|
+
* <li>
|
|
1084
|
+
* <p>Use the Amazon Resource Name (ARN) for the KMS key ID. For example,
|
|
1085
|
+
* <code>arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p>
|
|
1086
|
+
* </li>
|
|
1087
|
+
* <li>
|
|
1088
|
+
* <p>Use the ARN for the KMS key alias. For example,
|
|
1089
|
+
* <code>arn:aws:kms:region:account-ID:alias/ExampleAlias</code>.</p>
|
|
1090
|
+
* </li>
|
|
1091
|
+
* </ul>
|
|
1092
|
+
* <p>If using a key located in a different Amazon Web Services account than the current
|
|
1093
|
+
* Amazon Web Services account, you can specify your KMS key in one of two
|
|
1094
|
+
* ways:</p>
|
|
1095
|
+
* <ul>
|
|
1096
|
+
* <li>
|
|
1097
|
+
* <p>Use the ARN for the KMS key ID. For example,
|
|
1098
|
+
* <code>arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p>
|
|
1099
|
+
* </li>
|
|
1100
|
+
* <li>
|
|
1101
|
+
* <p>Use the ARN for the KMS key alias. For example,
|
|
1102
|
+
* <code>arn:aws:kms:region:account-ID:alias/ExampleAlias</code>.</p>
|
|
1103
|
+
* </li>
|
|
1104
|
+
* </ul>
|
|
1105
|
+
* <p>If you don't specify an encryption key, your output is encrypted with the default
|
|
1106
|
+
* Amazon S3 key (SSE-S3).</p>
|
|
1107
|
+
* <p>Note that the role specified in the <code>SinkIamRoleArn</code> request parameter must
|
|
1108
|
+
* have permission to use the specified KMS key.</p>
|
|
1109
|
+
* @public
|
|
1110
|
+
*/
|
|
1111
|
+
AwsKmsKeyId: string | undefined;
|
|
1112
|
+
/**
|
|
1113
|
+
* <p>Base64-encoded string of a UTF-8 encoded JSON, which contains the encryption context as
|
|
1114
|
+
* non-secret key-value pair known as encryption context pairs, that provides an added layer
|
|
1115
|
+
* of security for your data. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/encrypt_context.html">KMS encryption
|
|
1116
|
+
* context</a> and <a href="https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html">Asymmetric keys in KMS</a> in the <i>Key Management Service Developer
|
|
1117
|
+
* Guide</i>.</p>
|
|
1118
|
+
* @public
|
|
1119
|
+
*/
|
|
1120
|
+
AwsKmsEncryptionContext?: string | undefined;
|
|
1121
|
+
}
|
|
1058
1122
|
/**
|
|
1059
1123
|
* <p>A key/value pair that grants users access to meeting resources.</p>
|
|
1060
1124
|
* @public
|
|
@@ -1100,18 +1164,38 @@ export interface CreateMediaCapturePipelineRequest {
|
|
|
1100
1164
|
* <p>The unique identifier for the client request. The token makes the API request idempotent. Use a unique token for each media pipeline request.</p>
|
|
1101
1165
|
* @public
|
|
1102
1166
|
*/
|
|
1103
|
-
ClientRequestToken?: string;
|
|
1167
|
+
ClientRequestToken?: string | undefined;
|
|
1104
1168
|
/**
|
|
1105
1169
|
* <p>The configuration for a specified media pipeline. <code>SourceType</code> must
|
|
1106
1170
|
* be <code>ChimeSdkMeeting</code>.</p>
|
|
1107
1171
|
* @public
|
|
1108
1172
|
*/
|
|
1109
|
-
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
|
|
1173
|
+
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration | undefined;
|
|
1174
|
+
/**
|
|
1175
|
+
* <p>An object that contains server side encryption parameters to be used by media capture
|
|
1176
|
+
* pipeline. The parameters can also be used by media concatenation pipeline taking media
|
|
1177
|
+
* capture pipeline as a media source.</p>
|
|
1178
|
+
* @public
|
|
1179
|
+
*/
|
|
1180
|
+
SseAwsKeyManagementParams?: SseAwsKeyManagementParams | undefined;
|
|
1181
|
+
/**
|
|
1182
|
+
* <p>The Amazon Resource Name (ARN) of the sink role to be used with <code>AwsKmsKeyId</code>
|
|
1183
|
+
* in <code>SseAwsKeyManagementParams</code>. Can only interact with <code>S3Bucket</code>
|
|
1184
|
+
* sink type. The role must belong to the caller’s account and be able to act on behalf of the
|
|
1185
|
+
* caller during the API call. All minimum policy permissions requirements for the caller to
|
|
1186
|
+
* perform sink-related actions are the same for <code>SinkIamRoleArn</code>.</p>
|
|
1187
|
+
* <p>Additionally, the role must have permission to <code>kms:GenerateDataKey</code> using
|
|
1188
|
+
* KMS key supplied as <code>AwsKmsKeyId</code> in <code>SseAwsKeyManagementParams</code>. If
|
|
1189
|
+
* media concatenation will be required later, the role must also have permission to
|
|
1190
|
+
* <code>kms:Decrypt</code> for the same KMS key.</p>
|
|
1191
|
+
* @public
|
|
1192
|
+
*/
|
|
1193
|
+
SinkIamRoleArn?: string | undefined;
|
|
1110
1194
|
/**
|
|
1111
1195
|
* <p>The tag key-value pairs.</p>
|
|
1112
1196
|
* @public
|
|
1113
1197
|
*/
|
|
1114
|
-
Tags?: Tag[];
|
|
1198
|
+
Tags?: Tag[] | undefined;
|
|
1115
1199
|
}
|
|
1116
1200
|
/**
|
|
1117
1201
|
* @public
|
|
@@ -1140,55 +1224,68 @@ export interface MediaCapturePipeline {
|
|
|
1140
1224
|
* <p>The ID of a media pipeline.</p>
|
|
1141
1225
|
* @public
|
|
1142
1226
|
*/
|
|
1143
|
-
MediaPipelineId?: string;
|
|
1227
|
+
MediaPipelineId?: string | undefined;
|
|
1144
1228
|
/**
|
|
1145
1229
|
* <p>The ARN of the media capture pipeline</p>
|
|
1146
1230
|
* @public
|
|
1147
1231
|
*/
|
|
1148
|
-
MediaPipelineArn?: string;
|
|
1232
|
+
MediaPipelineArn?: string | undefined;
|
|
1149
1233
|
/**
|
|
1150
1234
|
* <p>Source type from which media artifacts are saved. You must use
|
|
1151
1235
|
* <code>ChimeMeeting</code>.</p>
|
|
1152
1236
|
* @public
|
|
1153
1237
|
*/
|
|
1154
|
-
SourceType?: MediaPipelineSourceType;
|
|
1238
|
+
SourceType?: MediaPipelineSourceType | undefined;
|
|
1155
1239
|
/**
|
|
1156
1240
|
* <p>ARN of the source from which the media artifacts are saved.</p>
|
|
1157
1241
|
* @public
|
|
1158
1242
|
*/
|
|
1159
|
-
SourceArn?: string;
|
|
1243
|
+
SourceArn?: string | undefined;
|
|
1160
1244
|
/**
|
|
1161
1245
|
* <p>The status of the media pipeline.</p>
|
|
1162
1246
|
* @public
|
|
1163
1247
|
*/
|
|
1164
|
-
Status?: MediaPipelineStatus;
|
|
1248
|
+
Status?: MediaPipelineStatus | undefined;
|
|
1165
1249
|
/**
|
|
1166
1250
|
* <p>Destination type to which the media artifacts are saved. You must use an S3
|
|
1167
1251
|
* Bucket.</p>
|
|
1168
1252
|
* @public
|
|
1169
1253
|
*/
|
|
1170
|
-
SinkType?: MediaPipelineSinkType;
|
|
1254
|
+
SinkType?: MediaPipelineSinkType | undefined;
|
|
1171
1255
|
/**
|
|
1172
1256
|
* <p>ARN of the destination to which the media artifacts are saved.</p>
|
|
1173
1257
|
* @public
|
|
1174
1258
|
*/
|
|
1175
|
-
SinkArn?: string;
|
|
1259
|
+
SinkArn?: string | undefined;
|
|
1176
1260
|
/**
|
|
1177
1261
|
* <p>The time at which the pipeline was created, in ISO 8601 format.</p>
|
|
1178
1262
|
* @public
|
|
1179
1263
|
*/
|
|
1180
|
-
CreatedTimestamp?: Date;
|
|
1264
|
+
CreatedTimestamp?: Date | undefined;
|
|
1181
1265
|
/**
|
|
1182
1266
|
* <p>The time at which the pipeline was updated, in ISO 8601 format.</p>
|
|
1183
1267
|
* @public
|
|
1184
1268
|
*/
|
|
1185
|
-
UpdatedTimestamp?: Date;
|
|
1269
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1186
1270
|
/**
|
|
1187
1271
|
* <p>The configuration for a specified media pipeline. <code>SourceType</code> must
|
|
1188
1272
|
* be <code>ChimeSdkMeeting</code>.</p>
|
|
1189
1273
|
* @public
|
|
1190
1274
|
*/
|
|
1191
|
-
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
|
|
1275
|
+
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration | undefined;
|
|
1276
|
+
/**
|
|
1277
|
+
* <p>An object that contains server side encryption parameters to be used by media capture
|
|
1278
|
+
* pipeline. The parameters can also be used by media concatenation pipeline taking media
|
|
1279
|
+
* capture pipeline as a media source.</p>
|
|
1280
|
+
* @public
|
|
1281
|
+
*/
|
|
1282
|
+
SseAwsKeyManagementParams?: SseAwsKeyManagementParams | undefined;
|
|
1283
|
+
/**
|
|
1284
|
+
* <p>The Amazon Resource Name (ARN) of the sink role to be used with <code>AwsKmsKeyId</code>
|
|
1285
|
+
* in <code>SseAwsKeyManagementParams</code>.</p>
|
|
1286
|
+
* @public
|
|
1287
|
+
*/
|
|
1288
|
+
SinkIamRoleArn?: string | undefined;
|
|
1192
1289
|
}
|
|
1193
1290
|
/**
|
|
1194
1291
|
* @public
|
|
@@ -1199,7 +1296,7 @@ export interface CreateMediaCapturePipelineResponse {
|
|
|
1199
1296
|
* ARN of a media pipeline object.</p>
|
|
1200
1297
|
* @public
|
|
1201
1298
|
*/
|
|
1202
|
-
MediaCapturePipeline?: MediaCapturePipeline;
|
|
1299
|
+
MediaCapturePipeline?: MediaCapturePipeline | undefined;
|
|
1203
1300
|
}
|
|
1204
1301
|
/**
|
|
1205
1302
|
* <p>The client is permanently forbidden from making the request.</p>
|
|
@@ -1208,13 +1305,13 @@ export interface CreateMediaCapturePipelineResponse {
|
|
|
1208
1305
|
export declare class ForbiddenException extends __BaseException {
|
|
1209
1306
|
readonly name: "ForbiddenException";
|
|
1210
1307
|
readonly $fault: "client";
|
|
1211
|
-
Code?: ErrorCode;
|
|
1212
|
-
Message?: string;
|
|
1308
|
+
Code?: ErrorCode | undefined;
|
|
1309
|
+
Message?: string | undefined;
|
|
1213
1310
|
/**
|
|
1214
1311
|
* <p>The request id associated with the call responsible for the exception.</p>
|
|
1215
1312
|
* @public
|
|
1216
1313
|
*/
|
|
1217
|
-
RequestId?: string;
|
|
1314
|
+
RequestId?: string | undefined;
|
|
1218
1315
|
/**
|
|
1219
1316
|
* @internal
|
|
1220
1317
|
*/
|
|
@@ -1227,13 +1324,13 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
1227
1324
|
export declare class ResourceLimitExceededException extends __BaseException {
|
|
1228
1325
|
readonly name: "ResourceLimitExceededException";
|
|
1229
1326
|
readonly $fault: "client";
|
|
1230
|
-
Code?: ErrorCode;
|
|
1231
|
-
Message?: string;
|
|
1327
|
+
Code?: ErrorCode | undefined;
|
|
1328
|
+
Message?: string | undefined;
|
|
1232
1329
|
/**
|
|
1233
1330
|
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
1234
1331
|
* @public
|
|
1235
1332
|
*/
|
|
1236
|
-
RequestId?: string;
|
|
1333
|
+
RequestId?: string | undefined;
|
|
1237
1334
|
/**
|
|
1238
1335
|
* @internal
|
|
1239
1336
|
*/
|
|
@@ -1246,13 +1343,13 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
1246
1343
|
export declare class ServiceFailureException extends __BaseException {
|
|
1247
1344
|
readonly name: "ServiceFailureException";
|
|
1248
1345
|
readonly $fault: "server";
|
|
1249
|
-
Code?: ErrorCode;
|
|
1250
|
-
Message?: string;
|
|
1346
|
+
Code?: ErrorCode | undefined;
|
|
1347
|
+
Message?: string | undefined;
|
|
1251
1348
|
/**
|
|
1252
1349
|
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
1253
1350
|
* @public
|
|
1254
1351
|
*/
|
|
1255
|
-
RequestId?: string;
|
|
1352
|
+
RequestId?: string | undefined;
|
|
1256
1353
|
/**
|
|
1257
1354
|
* @internal
|
|
1258
1355
|
*/
|
|
@@ -1265,13 +1362,13 @@ export declare class ServiceFailureException extends __BaseException {
|
|
|
1265
1362
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
1266
1363
|
readonly name: "ServiceUnavailableException";
|
|
1267
1364
|
readonly $fault: "server";
|
|
1268
|
-
Code?: ErrorCode;
|
|
1269
|
-
Message?: string;
|
|
1365
|
+
Code?: ErrorCode | undefined;
|
|
1366
|
+
Message?: string | undefined;
|
|
1270
1367
|
/**
|
|
1271
1368
|
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
1272
1369
|
* @public
|
|
1273
1370
|
*/
|
|
1274
|
-
RequestId?: string;
|
|
1371
|
+
RequestId?: string | undefined;
|
|
1275
1372
|
/**
|
|
1276
1373
|
* @internal
|
|
1277
1374
|
*/
|
|
@@ -1284,13 +1381,13 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
1284
1381
|
export declare class ThrottledClientException extends __BaseException {
|
|
1285
1382
|
readonly name: "ThrottledClientException";
|
|
1286
1383
|
readonly $fault: "client";
|
|
1287
|
-
Code?: ErrorCode;
|
|
1288
|
-
Message?: string;
|
|
1384
|
+
Code?: ErrorCode | undefined;
|
|
1385
|
+
Message?: string | undefined;
|
|
1289
1386
|
/**
|
|
1290
1387
|
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
1291
1388
|
* @public
|
|
1292
1389
|
*/
|
|
1293
|
-
RequestId?: string;
|
|
1390
|
+
RequestId?: string | undefined;
|
|
1294
1391
|
/**
|
|
1295
1392
|
* @internal
|
|
1296
1393
|
*/
|
|
@@ -1303,13 +1400,13 @@ export declare class ThrottledClientException extends __BaseException {
|
|
|
1303
1400
|
export declare class UnauthorizedClientException extends __BaseException {
|
|
1304
1401
|
readonly name: "UnauthorizedClientException";
|
|
1305
1402
|
readonly $fault: "client";
|
|
1306
|
-
Code?: ErrorCode;
|
|
1307
|
-
Message?: string;
|
|
1403
|
+
Code?: ErrorCode | undefined;
|
|
1404
|
+
Message?: string | undefined;
|
|
1308
1405
|
/**
|
|
1309
1406
|
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
1310
1407
|
* @public
|
|
1311
1408
|
*/
|
|
1312
|
-
RequestId?: string;
|
|
1409
|
+
RequestId?: string | undefined;
|
|
1313
1410
|
/**
|
|
1314
1411
|
* @internal
|
|
1315
1412
|
*/
|
|
@@ -1427,12 +1524,12 @@ export interface CreateMediaConcatenationPipelineRequest {
|
|
|
1427
1524
|
* idempotent. Use a unique token for each media concatenation pipeline request.</p>
|
|
1428
1525
|
* @public
|
|
1429
1526
|
*/
|
|
1430
|
-
ClientRequestToken?: string;
|
|
1527
|
+
ClientRequestToken?: string | undefined;
|
|
1431
1528
|
/**
|
|
1432
1529
|
* <p>The tags associated with the media concatenation pipeline.</p>
|
|
1433
1530
|
* @public
|
|
1434
1531
|
*/
|
|
1435
|
-
Tags?: Tag[];
|
|
1532
|
+
Tags?: Tag[] | undefined;
|
|
1436
1533
|
}
|
|
1437
1534
|
/**
|
|
1438
1535
|
* <p>Concatenates audio and video data from one or more data streams.</p>
|
|
@@ -1443,37 +1540,37 @@ export interface MediaConcatenationPipeline {
|
|
|
1443
1540
|
* <p>The ID of the media pipeline being concatenated.</p>
|
|
1444
1541
|
* @public
|
|
1445
1542
|
*/
|
|
1446
|
-
MediaPipelineId?: string;
|
|
1543
|
+
MediaPipelineId?: string | undefined;
|
|
1447
1544
|
/**
|
|
1448
1545
|
* <p>The ARN of the media pipeline that you specify in the <code>SourceConfiguration</code> object.</p>
|
|
1449
1546
|
* @public
|
|
1450
1547
|
*/
|
|
1451
|
-
MediaPipelineArn?: string;
|
|
1548
|
+
MediaPipelineArn?: string | undefined;
|
|
1452
1549
|
/**
|
|
1453
1550
|
* <p>The data sources being concatenated.</p>
|
|
1454
1551
|
* @public
|
|
1455
1552
|
*/
|
|
1456
|
-
Sources?: ConcatenationSource[];
|
|
1553
|
+
Sources?: ConcatenationSource[] | undefined;
|
|
1457
1554
|
/**
|
|
1458
1555
|
* <p>The data sinks of the concatenation pipeline.</p>
|
|
1459
1556
|
* @public
|
|
1460
1557
|
*/
|
|
1461
|
-
Sinks?: ConcatenationSink[];
|
|
1558
|
+
Sinks?: ConcatenationSink[] | undefined;
|
|
1462
1559
|
/**
|
|
1463
1560
|
* <p>The status of the concatenation pipeline.</p>
|
|
1464
1561
|
* @public
|
|
1465
1562
|
*/
|
|
1466
|
-
Status?: MediaPipelineStatus;
|
|
1563
|
+
Status?: MediaPipelineStatus | undefined;
|
|
1467
1564
|
/**
|
|
1468
1565
|
* <p>The time at which the concatenation pipeline was created.</p>
|
|
1469
1566
|
* @public
|
|
1470
1567
|
*/
|
|
1471
|
-
CreatedTimestamp?: Date;
|
|
1568
|
+
CreatedTimestamp?: Date | undefined;
|
|
1472
1569
|
/**
|
|
1473
1570
|
* <p>The time at which the concatenation pipeline was last updated.</p>
|
|
1474
1571
|
* @public
|
|
1475
1572
|
*/
|
|
1476
|
-
UpdatedTimestamp?: Date;
|
|
1573
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1477
1574
|
}
|
|
1478
1575
|
/**
|
|
1479
1576
|
* @public
|
|
@@ -1484,7 +1581,7 @@ export interface CreateMediaConcatenationPipelineResponse {
|
|
|
1484
1581
|
* media concatenation pipeline object.</p>
|
|
1485
1582
|
* @public
|
|
1486
1583
|
*/
|
|
1487
|
-
MediaConcatenationPipeline?: MediaConcatenationPipeline;
|
|
1584
|
+
MediaConcatenationPipeline?: MediaConcatenationPipeline | undefined;
|
|
1488
1585
|
}
|
|
1489
1586
|
/**
|
|
1490
1587
|
* @public
|
|
@@ -1557,7 +1654,7 @@ export interface RecordingStreamConfiguration {
|
|
|
1557
1654
|
* <p>The ARN of the recording stream.</p>
|
|
1558
1655
|
* @public
|
|
1559
1656
|
*/
|
|
1560
|
-
StreamArn?: string;
|
|
1657
|
+
StreamArn?: string | undefined;
|
|
1561
1658
|
}
|
|
1562
1659
|
/**
|
|
1563
1660
|
* <p>A structure that contains the runtime settings for recording a Kinesis video stream.</p>
|
|
@@ -1600,7 +1697,7 @@ export interface StreamChannelDefinition {
|
|
|
1600
1697
|
* <p>The definitions of the channels in a streaming channel.</p>
|
|
1601
1698
|
* @public
|
|
1602
1699
|
*/
|
|
1603
|
-
ChannelDefinitions?: ChannelDefinition[];
|
|
1700
|
+
ChannelDefinitions?: ChannelDefinition[] | undefined;
|
|
1604
1701
|
}
|
|
1605
1702
|
/**
|
|
1606
1703
|
* <p>The configuration settings for a stream.</p>
|
|
@@ -1616,7 +1713,7 @@ export interface StreamConfiguration {
|
|
|
1616
1713
|
* <p>The unique identifier of the fragment to begin processing.</p>
|
|
1617
1714
|
* @public
|
|
1618
1715
|
*/
|
|
1619
|
-
FragmentNumber?: string;
|
|
1716
|
+
FragmentNumber?: string | undefined;
|
|
1620
1717
|
/**
|
|
1621
1718
|
* <p>The streaming channel definition in the stream configuration.</p>
|
|
1622
1719
|
* @public
|
|
@@ -1690,32 +1787,32 @@ export interface CreateMediaInsightsPipelineRequest {
|
|
|
1690
1787
|
* pipeline.</p>
|
|
1691
1788
|
* @public
|
|
1692
1789
|
*/
|
|
1693
|
-
KinesisVideoStreamSourceRuntimeConfiguration?: KinesisVideoStreamSourceRuntimeConfiguration;
|
|
1790
|
+
KinesisVideoStreamSourceRuntimeConfiguration?: KinesisVideoStreamSourceRuntimeConfiguration | undefined;
|
|
1694
1791
|
/**
|
|
1695
1792
|
* <p>The runtime metadata for the media insights pipeline. Consists of a key-value map of strings.</p>
|
|
1696
1793
|
* @public
|
|
1697
1794
|
*/
|
|
1698
|
-
MediaInsightsRuntimeMetadata?: Record<string, string
|
|
1795
|
+
MediaInsightsRuntimeMetadata?: Record<string, string> | undefined;
|
|
1699
1796
|
/**
|
|
1700
1797
|
* <p>The runtime configuration for the Kinesis video recording stream source.</p>
|
|
1701
1798
|
* @public
|
|
1702
1799
|
*/
|
|
1703
|
-
KinesisVideoStreamRecordingSourceRuntimeConfiguration?: KinesisVideoStreamRecordingSourceRuntimeConfiguration;
|
|
1800
|
+
KinesisVideoStreamRecordingSourceRuntimeConfiguration?: KinesisVideoStreamRecordingSourceRuntimeConfiguration | undefined;
|
|
1704
1801
|
/**
|
|
1705
1802
|
* <p>The runtime configuration for the S3 recording sink. If specified, the settings in this structure override any settings in <code>S3RecordingSinkConfiguration</code>.</p>
|
|
1706
1803
|
* @public
|
|
1707
1804
|
*/
|
|
1708
|
-
S3RecordingSinkRuntimeConfiguration?: S3RecordingSinkRuntimeConfiguration;
|
|
1805
|
+
S3RecordingSinkRuntimeConfiguration?: S3RecordingSinkRuntimeConfiguration | undefined;
|
|
1709
1806
|
/**
|
|
1710
1807
|
* <p>The tags assigned to the media insights pipeline.</p>
|
|
1711
1808
|
* @public
|
|
1712
1809
|
*/
|
|
1713
|
-
Tags?: Tag[];
|
|
1810
|
+
Tags?: Tag[] | undefined;
|
|
1714
1811
|
/**
|
|
1715
1812
|
* <p>The unique identifier for the media insights pipeline request.</p>
|
|
1716
1813
|
* @public
|
|
1717
1814
|
*/
|
|
1718
|
-
ClientRequestToken?: string;
|
|
1815
|
+
ClientRequestToken?: string | undefined;
|
|
1719
1816
|
}
|
|
1720
1817
|
/**
|
|
1721
1818
|
* @public
|
|
@@ -1763,12 +1860,12 @@ export interface MediaInsightsPipelineElementStatus {
|
|
|
1763
1860
|
* <p>The type of status.</p>
|
|
1764
1861
|
* @public
|
|
1765
1862
|
*/
|
|
1766
|
-
Type?: MediaInsightsPipelineConfigurationElementType;
|
|
1863
|
+
Type?: MediaInsightsPipelineConfigurationElementType | undefined;
|
|
1767
1864
|
/**
|
|
1768
1865
|
* <p>The element's status.</p>
|
|
1769
1866
|
* @public
|
|
1770
1867
|
*/
|
|
1771
|
-
Status?: MediaPipelineElementStatus;
|
|
1868
|
+
Status?: MediaPipelineElementStatus | undefined;
|
|
1772
1869
|
}
|
|
1773
1870
|
/**
|
|
1774
1871
|
* <p>A media pipeline that streams call analytics data.</p>
|
|
@@ -1779,52 +1876,52 @@ export interface MediaInsightsPipeline {
|
|
|
1779
1876
|
* <p>The ID of a media insights pipeline.</p>
|
|
1780
1877
|
* @public
|
|
1781
1878
|
*/
|
|
1782
|
-
MediaPipelineId?: string;
|
|
1879
|
+
MediaPipelineId?: string | undefined;
|
|
1783
1880
|
/**
|
|
1784
1881
|
* <p>The ARN of a media insights pipeline.</p>
|
|
1785
1882
|
* @public
|
|
1786
1883
|
*/
|
|
1787
|
-
MediaPipelineArn?: string;
|
|
1884
|
+
MediaPipelineArn?: string | undefined;
|
|
1788
1885
|
/**
|
|
1789
1886
|
* <p>The ARN of a media insight pipeline's configuration settings.</p>
|
|
1790
1887
|
* @public
|
|
1791
1888
|
*/
|
|
1792
|
-
MediaInsightsPipelineConfigurationArn?: string;
|
|
1889
|
+
MediaInsightsPipelineConfigurationArn?: string | undefined;
|
|
1793
1890
|
/**
|
|
1794
1891
|
* <p>The status of a media insights pipeline.</p>
|
|
1795
1892
|
* @public
|
|
1796
1893
|
*/
|
|
1797
|
-
Status?: MediaPipelineStatus;
|
|
1894
|
+
Status?: MediaPipelineStatus | undefined;
|
|
1798
1895
|
/**
|
|
1799
1896
|
* <p>The configuration settings for a Kinesis runtime video stream in a media insights pipeline.</p>
|
|
1800
1897
|
* @public
|
|
1801
1898
|
*/
|
|
1802
|
-
KinesisVideoStreamSourceRuntimeConfiguration?: KinesisVideoStreamSourceRuntimeConfiguration;
|
|
1899
|
+
KinesisVideoStreamSourceRuntimeConfiguration?: KinesisVideoStreamSourceRuntimeConfiguration | undefined;
|
|
1803
1900
|
/**
|
|
1804
1901
|
* <p>The runtime metadata of a media insights pipeline.</p>
|
|
1805
1902
|
* @public
|
|
1806
1903
|
*/
|
|
1807
|
-
MediaInsightsRuntimeMetadata?: Record<string, string
|
|
1904
|
+
MediaInsightsRuntimeMetadata?: Record<string, string> | undefined;
|
|
1808
1905
|
/**
|
|
1809
1906
|
* <p>The runtime configuration settings for a Kinesis recording video stream in a media insights pipeline.</p>
|
|
1810
1907
|
* @public
|
|
1811
1908
|
*/
|
|
1812
|
-
KinesisVideoStreamRecordingSourceRuntimeConfiguration?: KinesisVideoStreamRecordingSourceRuntimeConfiguration;
|
|
1909
|
+
KinesisVideoStreamRecordingSourceRuntimeConfiguration?: KinesisVideoStreamRecordingSourceRuntimeConfiguration | undefined;
|
|
1813
1910
|
/**
|
|
1814
1911
|
* <p>The runtime configuration of the Amazon S3 bucket that stores recordings in a media insights pipeline.</p>
|
|
1815
1912
|
* @public
|
|
1816
1913
|
*/
|
|
1817
|
-
S3RecordingSinkRuntimeConfiguration?: S3RecordingSinkRuntimeConfiguration;
|
|
1914
|
+
S3RecordingSinkRuntimeConfiguration?: S3RecordingSinkRuntimeConfiguration | undefined;
|
|
1818
1915
|
/**
|
|
1819
1916
|
* <p>The time at which the media insights pipeline was created.</p>
|
|
1820
1917
|
* @public
|
|
1821
1918
|
*/
|
|
1822
|
-
CreatedTimestamp?: Date;
|
|
1919
|
+
CreatedTimestamp?: Date | undefined;
|
|
1823
1920
|
/**
|
|
1824
1921
|
* <p>The statuses that the elements in a media insights pipeline can have during data processing.</p>
|
|
1825
1922
|
* @public
|
|
1826
1923
|
*/
|
|
1827
|
-
ElementStatuses?: MediaInsightsPipelineElementStatus[];
|
|
1924
|
+
ElementStatuses?: MediaInsightsPipelineElementStatus[] | undefined;
|
|
1828
1925
|
}
|
|
1829
1926
|
/**
|
|
1830
1927
|
* @public
|
|
@@ -1843,13 +1940,13 @@ export interface CreateMediaInsightsPipelineResponse {
|
|
|
1843
1940
|
export declare class NotFoundException extends __BaseException {
|
|
1844
1941
|
readonly name: "NotFoundException";
|
|
1845
1942
|
readonly $fault: "client";
|
|
1846
|
-
Code?: ErrorCode;
|
|
1847
|
-
Message?: string;
|
|
1943
|
+
Code?: ErrorCode | undefined;
|
|
1944
|
+
Message?: string | undefined;
|
|
1848
1945
|
/**
|
|
1849
1946
|
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
1850
1947
|
* @public
|
|
1851
1948
|
*/
|
|
1852
|
-
RequestId?: string;
|
|
1949
|
+
RequestId?: string | undefined;
|
|
1853
1950
|
/**
|
|
1854
1951
|
* @internal
|
|
1855
1952
|
*/
|
|
@@ -1864,7 +1961,7 @@ export interface KinesisDataStreamSinkConfiguration {
|
|
|
1864
1961
|
* <p>The ARN of the sink.</p>
|
|
1865
1962
|
* @public
|
|
1866
1963
|
*/
|
|
1867
|
-
InsightsTarget?: string;
|
|
1964
|
+
InsightsTarget?: string | undefined;
|
|
1868
1965
|
}
|
|
1869
1966
|
/**
|
|
1870
1967
|
* <p>A structure that contains the configuration settings for an AWS Lambda function's data sink.</p>
|
|
@@ -1875,7 +1972,7 @@ export interface LambdaFunctionSinkConfiguration {
|
|
|
1875
1972
|
* <p>The ARN of the sink.</p>
|
|
1876
1973
|
* @public
|
|
1877
1974
|
*/
|
|
1878
|
-
InsightsTarget?: string;
|
|
1975
|
+
InsightsTarget?: string | undefined;
|
|
1879
1976
|
}
|
|
1880
1977
|
/**
|
|
1881
1978
|
* <p>The structure that holds the settings for transmitting media to the Amazon S3 bucket. These values are used as defaults if <code>S3RecordingSinkRuntimeConfiguration</code> is not specified.</p>
|
|
@@ -1886,12 +1983,12 @@ export interface S3RecordingSinkConfiguration {
|
|
|
1886
1983
|
* <p>The default URI of the Amazon S3 bucket used as the recording sink.</p>
|
|
1887
1984
|
* @public
|
|
1888
1985
|
*/
|
|
1889
|
-
Destination?: string;
|
|
1986
|
+
Destination?: string | undefined;
|
|
1890
1987
|
/**
|
|
1891
1988
|
* <p>The default file format for the media files sent to the Amazon S3 bucket.</p>
|
|
1892
1989
|
* @public
|
|
1893
1990
|
*/
|
|
1894
|
-
RecordingFileFormat?: RecordingFileFormat;
|
|
1991
|
+
RecordingFileFormat?: RecordingFileFormat | undefined;
|
|
1895
1992
|
}
|
|
1896
1993
|
/**
|
|
1897
1994
|
* <p>The configuration settings for the SNS topic sink.</p>
|
|
@@ -1902,7 +1999,7 @@ export interface SnsTopicSinkConfiguration {
|
|
|
1902
1999
|
* <p>The ARN of the SNS sink.</p>
|
|
1903
2000
|
* @public
|
|
1904
2001
|
*/
|
|
1905
|
-
InsightsTarget?: string;
|
|
2002
|
+
InsightsTarget?: string | undefined;
|
|
1906
2003
|
}
|
|
1907
2004
|
/**
|
|
1908
2005
|
* <p>The configuration settings for the SQS sink.</p>
|
|
@@ -1913,7 +2010,7 @@ export interface SqsQueueSinkConfiguration {
|
|
|
1913
2010
|
* <p>The ARN of the SQS sink.</p>
|
|
1914
2011
|
* @public
|
|
1915
2012
|
*/
|
|
1916
|
-
InsightsTarget?: string;
|
|
2013
|
+
InsightsTarget?: string | undefined;
|
|
1917
2014
|
}
|
|
1918
2015
|
/**
|
|
1919
2016
|
* @public
|
|
@@ -1936,12 +2033,12 @@ export interface VoiceAnalyticsProcessorConfiguration {
|
|
|
1936
2033
|
* <p>The status of the speaker search task.</p>
|
|
1937
2034
|
* @public
|
|
1938
2035
|
*/
|
|
1939
|
-
SpeakerSearchStatus?: VoiceAnalyticsConfigurationStatus;
|
|
2036
|
+
SpeakerSearchStatus?: VoiceAnalyticsConfigurationStatus | undefined;
|
|
1940
2037
|
/**
|
|
1941
2038
|
* <p>The status of the voice tone analysis task.</p>
|
|
1942
2039
|
* @public
|
|
1943
2040
|
*/
|
|
1944
|
-
VoiceToneAnalysisStatus?: VoiceAnalyticsConfigurationStatus;
|
|
2041
|
+
VoiceToneAnalysisStatus?: VoiceAnalyticsConfigurationStatus | undefined;
|
|
1945
2042
|
}
|
|
1946
2043
|
/**
|
|
1947
2044
|
* <p>A static structure that contains the configuration data for a <code>VoiceEnhancementSinkConfiguration</code> element.</p>
|
|
@@ -1952,7 +2049,7 @@ export interface VoiceEnhancementSinkConfiguration {
|
|
|
1952
2049
|
* <p>Disables the <code>VoiceEnhancementSinkConfiguration</code> element.</p>
|
|
1953
2050
|
* @public
|
|
1954
2051
|
*/
|
|
1955
|
-
Disabled?: boolean;
|
|
2052
|
+
Disabled?: boolean | undefined;
|
|
1956
2053
|
}
|
|
1957
2054
|
/**
|
|
1958
2055
|
* <p>An element in a media insights pipeline configuration.</p>
|
|
@@ -1968,48 +2065,48 @@ export interface MediaInsightsPipelineConfigurationElement {
|
|
|
1968
2065
|
* <p>The analytics configuration settings for transcribing audio in a media insights pipeline configuration element.</p>
|
|
1969
2066
|
* @public
|
|
1970
2067
|
*/
|
|
1971
|
-
AmazonTranscribeCallAnalyticsProcessorConfiguration?: AmazonTranscribeCallAnalyticsProcessorConfiguration;
|
|
2068
|
+
AmazonTranscribeCallAnalyticsProcessorConfiguration?: AmazonTranscribeCallAnalyticsProcessorConfiguration | undefined;
|
|
1972
2069
|
/**
|
|
1973
2070
|
* <p>The transcription processor configuration settings in a media insights pipeline
|
|
1974
2071
|
* configuration element.</p>
|
|
1975
2072
|
* @public
|
|
1976
2073
|
*/
|
|
1977
|
-
AmazonTranscribeProcessorConfiguration?: AmazonTranscribeProcessorConfiguration;
|
|
2074
|
+
AmazonTranscribeProcessorConfiguration?: AmazonTranscribeProcessorConfiguration | undefined;
|
|
1978
2075
|
/**
|
|
1979
2076
|
* <p>The configuration settings for the Kinesis Data Stream Sink in a media insights pipeline configuration element.</p>
|
|
1980
2077
|
* @public
|
|
1981
2078
|
*/
|
|
1982
|
-
KinesisDataStreamSinkConfiguration?: KinesisDataStreamSinkConfiguration;
|
|
2079
|
+
KinesisDataStreamSinkConfiguration?: KinesisDataStreamSinkConfiguration | undefined;
|
|
1983
2080
|
/**
|
|
1984
2081
|
* <p>The configuration settings for the Amazon S3 recording bucket in a media insights pipeline configuration element.</p>
|
|
1985
2082
|
* @public
|
|
1986
2083
|
*/
|
|
1987
|
-
S3RecordingSinkConfiguration?: S3RecordingSinkConfiguration;
|
|
2084
|
+
S3RecordingSinkConfiguration?: S3RecordingSinkConfiguration | undefined;
|
|
1988
2085
|
/**
|
|
1989
2086
|
* <p>The voice analytics configuration settings in a media insights pipeline configuration element.</p>
|
|
1990
2087
|
* @public
|
|
1991
2088
|
*/
|
|
1992
|
-
VoiceAnalyticsProcessorConfiguration?: VoiceAnalyticsProcessorConfiguration;
|
|
2089
|
+
VoiceAnalyticsProcessorConfiguration?: VoiceAnalyticsProcessorConfiguration | undefined;
|
|
1993
2090
|
/**
|
|
1994
2091
|
* <p>The configuration settings for the Amazon Web Services Lambda sink in a media insights pipeline configuration element.</p>
|
|
1995
2092
|
* @public
|
|
1996
2093
|
*/
|
|
1997
|
-
LambdaFunctionSinkConfiguration?: LambdaFunctionSinkConfiguration;
|
|
2094
|
+
LambdaFunctionSinkConfiguration?: LambdaFunctionSinkConfiguration | undefined;
|
|
1998
2095
|
/**
|
|
1999
2096
|
* <p>The configuration settings for an SQS queue sink in a media insights pipeline configuration element.</p>
|
|
2000
2097
|
* @public
|
|
2001
2098
|
*/
|
|
2002
|
-
SqsQueueSinkConfiguration?: SqsQueueSinkConfiguration;
|
|
2099
|
+
SqsQueueSinkConfiguration?: SqsQueueSinkConfiguration | undefined;
|
|
2003
2100
|
/**
|
|
2004
2101
|
* <p>The configuration settings for an SNS topic sink in a media insights pipeline configuration element.</p>
|
|
2005
2102
|
* @public
|
|
2006
2103
|
*/
|
|
2007
|
-
SnsTopicSinkConfiguration?: SnsTopicSinkConfiguration;
|
|
2104
|
+
SnsTopicSinkConfiguration?: SnsTopicSinkConfiguration | undefined;
|
|
2008
2105
|
/**
|
|
2009
2106
|
* <p>The configuration settings for voice enhancement sink in a media insights pipeline configuration element.</p>
|
|
2010
2107
|
* @public
|
|
2011
2108
|
*/
|
|
2012
|
-
VoiceEnhancementSinkConfiguration?: VoiceEnhancementSinkConfiguration;
|
|
2109
|
+
VoiceEnhancementSinkConfiguration?: VoiceEnhancementSinkConfiguration | undefined;
|
|
2013
2110
|
}
|
|
2014
2111
|
/**
|
|
2015
2112
|
* <p>A structure that contains the configuration settings for an issue detection task.</p>
|
|
@@ -2042,7 +2139,7 @@ export interface KeywordMatchConfiguration {
|
|
|
2042
2139
|
* the specified keywords or phrases are absent. Default: <code>FALSE</code>.</p>
|
|
2043
2140
|
* @public
|
|
2044
2141
|
*/
|
|
2045
|
-
Negate?: boolean;
|
|
2142
|
+
Negate?: boolean | undefined;
|
|
2046
2143
|
}
|
|
2047
2144
|
/**
|
|
2048
2145
|
* @public
|
|
@@ -2103,17 +2200,17 @@ export interface RealTimeAlertRule {
|
|
|
2103
2200
|
* <p>Specifies the settings for matching the keywords in a real-time alert rule.</p>
|
|
2104
2201
|
* @public
|
|
2105
2202
|
*/
|
|
2106
|
-
KeywordMatchConfiguration?: KeywordMatchConfiguration;
|
|
2203
|
+
KeywordMatchConfiguration?: KeywordMatchConfiguration | undefined;
|
|
2107
2204
|
/**
|
|
2108
2205
|
* <p>Specifies the settings for predicting sentiment in a real-time alert rule.</p>
|
|
2109
2206
|
* @public
|
|
2110
2207
|
*/
|
|
2111
|
-
SentimentConfiguration?: SentimentConfiguration;
|
|
2208
|
+
SentimentConfiguration?: SentimentConfiguration | undefined;
|
|
2112
2209
|
/**
|
|
2113
2210
|
* <p>Specifies the issue detection settings for a real-time alert rule.</p>
|
|
2114
2211
|
* @public
|
|
2115
2212
|
*/
|
|
2116
|
-
IssueDetectionConfiguration?: IssueDetectionConfiguration;
|
|
2213
|
+
IssueDetectionConfiguration?: IssueDetectionConfiguration | undefined;
|
|
2117
2214
|
}
|
|
2118
2215
|
/**
|
|
2119
2216
|
* <p>A structure that contains the configuration settings for real-time alerts.</p>
|
|
@@ -2124,12 +2221,12 @@ export interface RealTimeAlertConfiguration {
|
|
|
2124
2221
|
* <p>Turns off real-time alerts.</p>
|
|
2125
2222
|
* @public
|
|
2126
2223
|
*/
|
|
2127
|
-
Disabled?: boolean;
|
|
2224
|
+
Disabled?: boolean | undefined;
|
|
2128
2225
|
/**
|
|
2129
2226
|
* <p>The rules in the alert. Rules specify the words or phrases that you want to be notified about.</p>
|
|
2130
2227
|
* @public
|
|
2131
2228
|
*/
|
|
2132
|
-
Rules?: RealTimeAlertRule[];
|
|
2229
|
+
Rules?: RealTimeAlertRule[] | undefined;
|
|
2133
2230
|
}
|
|
2134
2231
|
/**
|
|
2135
2232
|
* @public
|
|
@@ -2151,7 +2248,7 @@ export interface CreateMediaInsightsPipelineConfigurationRequest {
|
|
|
2151
2248
|
* <p>The configuration settings for the real-time alerts in a media insights pipeline configuration.</p>
|
|
2152
2249
|
* @public
|
|
2153
2250
|
*/
|
|
2154
|
-
RealTimeAlertConfiguration?: RealTimeAlertConfiguration;
|
|
2251
|
+
RealTimeAlertConfiguration?: RealTimeAlertConfiguration | undefined;
|
|
2155
2252
|
/**
|
|
2156
2253
|
* <p>The elements in the request, such as a processor for Amazon Transcribe or a sink for a Kinesis Data Stream.</p>
|
|
2157
2254
|
* @public
|
|
@@ -2161,12 +2258,12 @@ export interface CreateMediaInsightsPipelineConfigurationRequest {
|
|
|
2161
2258
|
* <p>The tags assigned to the media insights pipeline configuration.</p>
|
|
2162
2259
|
* @public
|
|
2163
2260
|
*/
|
|
2164
|
-
Tags?: Tag[];
|
|
2261
|
+
Tags?: Tag[] | undefined;
|
|
2165
2262
|
/**
|
|
2166
2263
|
* <p>The unique identifier for the media insights pipeline configuration request.</p>
|
|
2167
2264
|
* @public
|
|
2168
2265
|
*/
|
|
2169
|
-
ClientRequestToken?: string;
|
|
2266
|
+
ClientRequestToken?: string | undefined;
|
|
2170
2267
|
}
|
|
2171
2268
|
/**
|
|
2172
2269
|
* <p>A structure that contains the configuration settings for a media insights pipeline.</p>
|
|
@@ -2177,42 +2274,42 @@ export interface MediaInsightsPipelineConfiguration {
|
|
|
2177
2274
|
* <p>The name of the configuration.</p>
|
|
2178
2275
|
* @public
|
|
2179
2276
|
*/
|
|
2180
|
-
MediaInsightsPipelineConfigurationName?: string;
|
|
2277
|
+
MediaInsightsPipelineConfigurationName?: string | undefined;
|
|
2181
2278
|
/**
|
|
2182
2279
|
* <p>The ARN of the configuration.</p>
|
|
2183
2280
|
* @public
|
|
2184
2281
|
*/
|
|
2185
|
-
MediaInsightsPipelineConfigurationArn?: string;
|
|
2282
|
+
MediaInsightsPipelineConfigurationArn?: string | undefined;
|
|
2186
2283
|
/**
|
|
2187
2284
|
* <p>The ARN of the role used by the service to access Amazon Web Services resources.</p>
|
|
2188
2285
|
* @public
|
|
2189
2286
|
*/
|
|
2190
|
-
ResourceAccessRoleArn?: string;
|
|
2287
|
+
ResourceAccessRoleArn?: string | undefined;
|
|
2191
2288
|
/**
|
|
2192
2289
|
* <p>Lists the rules that trigger a real-time alert.</p>
|
|
2193
2290
|
* @public
|
|
2194
2291
|
*/
|
|
2195
|
-
RealTimeAlertConfiguration?: RealTimeAlertConfiguration;
|
|
2292
|
+
RealTimeAlertConfiguration?: RealTimeAlertConfiguration | undefined;
|
|
2196
2293
|
/**
|
|
2197
2294
|
* <p>The elements in the configuration.</p>
|
|
2198
2295
|
* @public
|
|
2199
2296
|
*/
|
|
2200
|
-
Elements?: MediaInsightsPipelineConfigurationElement[];
|
|
2297
|
+
Elements?: MediaInsightsPipelineConfigurationElement[] | undefined;
|
|
2201
2298
|
/**
|
|
2202
2299
|
* <p>The ID of the configuration.</p>
|
|
2203
2300
|
* @public
|
|
2204
2301
|
*/
|
|
2205
|
-
MediaInsightsPipelineConfigurationId?: string;
|
|
2302
|
+
MediaInsightsPipelineConfigurationId?: string | undefined;
|
|
2206
2303
|
/**
|
|
2207
2304
|
* <p>The time at which the configuration was created.</p>
|
|
2208
2305
|
* @public
|
|
2209
2306
|
*/
|
|
2210
|
-
CreatedTimestamp?: Date;
|
|
2307
|
+
CreatedTimestamp?: Date | undefined;
|
|
2211
2308
|
/**
|
|
2212
2309
|
* <p>The time at which the configuration was last updated.</p>
|
|
2213
2310
|
* @public
|
|
2214
2311
|
*/
|
|
2215
|
-
UpdatedTimestamp?: Date;
|
|
2312
|
+
UpdatedTimestamp?: Date | undefined;
|
|
2216
2313
|
}
|
|
2217
2314
|
/**
|
|
2218
2315
|
* @public
|
|
@@ -2222,7 +2319,7 @@ export interface CreateMediaInsightsPipelineConfigurationResponse {
|
|
|
2222
2319
|
* <p>The configuration settings for the media insights pipeline.</p>
|
|
2223
2320
|
* @public
|
|
2224
2321
|
*/
|
|
2225
|
-
MediaInsightsPipelineConfiguration?: MediaInsightsPipelineConfiguration;
|
|
2322
|
+
MediaInsightsPipelineConfiguration?: MediaInsightsPipelineConfiguration | undefined;
|
|
2226
2323
|
}
|
|
2227
2324
|
/**
|
|
2228
2325
|
* <p>The media pipeline's RTMP configuration object.</p>
|
|
@@ -2238,12 +2335,12 @@ export interface LiveConnectorRTMPConfiguration {
|
|
|
2238
2335
|
* <p>The audio channels set for the RTMP configuration</p>
|
|
2239
2336
|
* @public
|
|
2240
2337
|
*/
|
|
2241
|
-
AudioChannels?: AudioChannelsOption;
|
|
2338
|
+
AudioChannels?: AudioChannelsOption | undefined;
|
|
2242
2339
|
/**
|
|
2243
2340
|
* <p>The audio sample rate set for the RTMP configuration. Default: 48000.</p>
|
|
2244
2341
|
* @public
|
|
2245
2342
|
*/
|
|
2246
|
-
AudioSampleRate?: string;
|
|
2343
|
+
AudioSampleRate?: string | undefined;
|
|
2247
2344
|
}
|
|
2248
2345
|
/**
|
|
2249
2346
|
* @public
|
|
@@ -2303,12 +2400,12 @@ export interface ChimeSdkMeetingLiveConnectorConfiguration {
|
|
|
2303
2400
|
* <p>The media pipeline's composited video.</p>
|
|
2304
2401
|
* @public
|
|
2305
2402
|
*/
|
|
2306
|
-
CompositedVideo?: CompositedVideoArtifactsConfiguration;
|
|
2403
|
+
CompositedVideo?: CompositedVideoArtifactsConfiguration | undefined;
|
|
2307
2404
|
/**
|
|
2308
2405
|
* <p>The source configuration settings of the media pipeline's configuration object.</p>
|
|
2309
2406
|
* @public
|
|
2310
2407
|
*/
|
|
2311
|
-
SourceConfiguration?: SourceConfiguration;
|
|
2408
|
+
SourceConfiguration?: SourceConfiguration | undefined;
|
|
2312
2409
|
}
|
|
2313
2410
|
/**
|
|
2314
2411
|
* @public
|
|
@@ -2355,12 +2452,12 @@ export interface CreateMediaLiveConnectorPipelineRequest {
|
|
|
2355
2452
|
* <p>The token assigned to the client making the request.</p>
|
|
2356
2453
|
* @public
|
|
2357
2454
|
*/
|
|
2358
|
-
ClientRequestToken?: string;
|
|
2455
|
+
ClientRequestToken?: string | undefined;
|
|
2359
2456
|
/**
|
|
2360
2457
|
* <p>The tags associated with the media live connector pipeline.</p>
|
|
2361
2458
|
* @public
|
|
2362
2459
|
*/
|
|
2363
|
-
Tags?: Tag[];
|
|
2460
|
+
Tags?: Tag[] | undefined;
|
|
2364
2461
|
}
|
|
2365
2462
|
/**
|
|
2366
2463
|
* <p>The connector pipeline.</p>
|
|
@@ -2371,37 +2468,37 @@ export interface MediaLiveConnectorPipeline {
|
|
|
2371
2468
|
* <p>The connector pipeline's data sources.</p>
|
|
2372
2469
|
* @public
|
|
2373
2470
|
*/
|
|
2374
|
-
Sources?: LiveConnectorSourceConfiguration[];
|
|
2471
|
+
Sources?: LiveConnectorSourceConfiguration[] | undefined;
|
|
2375
2472
|
/**
|
|
2376
2473
|
* <p>The connector pipeline's data sinks.</p>
|
|
2377
2474
|
* @public
|
|
2378
2475
|
*/
|
|
2379
|
-
Sinks?: LiveConnectorSinkConfiguration[];
|
|
2476
|
+
Sinks?: LiveConnectorSinkConfiguration[] | undefined;
|
|
2380
2477
|
/**
|
|
2381
2478
|
* <p>The connector pipeline's ID.</p>
|
|
2382
2479
|
* @public
|
|
2383
2480
|
*/
|
|
2384
|
-
MediaPipelineId?: string;
|
|
2481
|
+
MediaPipelineId?: string | undefined;
|
|
2385
2482
|
/**
|
|
2386
2483
|
* <p>The connector pipeline's ARN.</p>
|
|
2387
2484
|
* @public
|
|
2388
2485
|
*/
|
|
2389
|
-
MediaPipelineArn?: string;
|
|
2486
|
+
MediaPipelineArn?: string | undefined;
|
|
2390
2487
|
/**
|
|
2391
2488
|
* <p>The connector pipeline's status.</p>
|
|
2392
2489
|
* @public
|
|
2393
2490
|
*/
|
|
2394
|
-
Status?: MediaPipelineStatus;
|
|
2491
|
+
Status?: MediaPipelineStatus | undefined;
|
|
2395
2492
|
/**
|
|
2396
2493
|
* <p>The time at which the connector pipeline was created.</p>
|
|
2397
2494
|
* @public
|
|
2398
2495
|
*/
|
|
2399
|
-
CreatedTimestamp?: Date;
|
|
2496
|
+
CreatedTimestamp?: Date | undefined;
|
|
2400
2497
|
/**
|
|
2401
2498
|
* <p>The time at which the connector pipeline was last updated.</p>
|
|
2402
2499
|
* @public
|
|
2403
2500
|
*/
|
|
2404
|
-
UpdatedTimestamp?: Date;
|
|
2501
|
+
UpdatedTimestamp?: Date | undefined;
|
|
2405
2502
|
}
|
|
2406
2503
|
/**
|
|
2407
2504
|
* @public
|
|
@@ -2411,7 +2508,7 @@ export interface CreateMediaLiveConnectorPipelineResponse {
|
|
|
2411
2508
|
* <p>The new media live connector pipeline.</p>
|
|
2412
2509
|
* @public
|
|
2413
2510
|
*/
|
|
2414
|
-
MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
|
|
2511
|
+
MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline | undefined;
|
|
2415
2512
|
}
|
|
2416
2513
|
/**
|
|
2417
2514
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
@@ -2421,13 +2518,13 @@ export interface CreateMediaLiveConnectorPipelineResponse {
|
|
|
2421
2518
|
export declare class ConflictException extends __BaseException {
|
|
2422
2519
|
readonly name: "ConflictException";
|
|
2423
2520
|
readonly $fault: "client";
|
|
2424
|
-
Code?: ErrorCode;
|
|
2425
|
-
Message?: string;
|
|
2521
|
+
Code?: ErrorCode | undefined;
|
|
2522
|
+
Message?: string | undefined;
|
|
2426
2523
|
/**
|
|
2427
2524
|
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
2428
2525
|
* @public
|
|
2429
2526
|
*/
|
|
2430
|
-
RequestId?: string;
|
|
2527
|
+
RequestId?: string | undefined;
|
|
2431
2528
|
/**
|
|
2432
2529
|
* @internal
|
|
2433
2530
|
*/
|
|
@@ -2461,7 +2558,7 @@ export interface KinesisVideoStreamConfiguration {
|
|
|
2461
2558
|
* <p>The amount of time that data is retained.</p>
|
|
2462
2559
|
* @public
|
|
2463
2560
|
*/
|
|
2464
|
-
DataRetentionInHours?: number;
|
|
2561
|
+
DataRetentionInHours?: number | undefined;
|
|
2465
2562
|
}
|
|
2466
2563
|
/**
|
|
2467
2564
|
* @public
|
|
@@ -2481,12 +2578,12 @@ export interface CreateMediaPipelineKinesisVideoStreamPoolRequest {
|
|
|
2481
2578
|
* <p>The token assigned to the client making the request.</p>
|
|
2482
2579
|
* @public
|
|
2483
2580
|
*/
|
|
2484
|
-
ClientRequestToken?: string;
|
|
2581
|
+
ClientRequestToken?: string | undefined;
|
|
2485
2582
|
/**
|
|
2486
2583
|
* <p>The tags assigned to the stream pool.</p>
|
|
2487
2584
|
* @public
|
|
2488
2585
|
*/
|
|
2489
|
-
Tags?: Tag[];
|
|
2586
|
+
Tags?: Tag[] | undefined;
|
|
2490
2587
|
}
|
|
2491
2588
|
/**
|
|
2492
2589
|
* @public
|
|
@@ -2512,42 +2609,42 @@ export interface KinesisVideoStreamPoolConfiguration {
|
|
|
2512
2609
|
* <p>The ARN of the video stream pool configuration.</p>
|
|
2513
2610
|
* @public
|
|
2514
2611
|
*/
|
|
2515
|
-
PoolArn?: string;
|
|
2612
|
+
PoolArn?: string | undefined;
|
|
2516
2613
|
/**
|
|
2517
2614
|
* <p>The name of the video stream pool configuration.</p>
|
|
2518
2615
|
* @public
|
|
2519
2616
|
*/
|
|
2520
|
-
PoolName?: string;
|
|
2617
|
+
PoolName?: string | undefined;
|
|
2521
2618
|
/**
|
|
2522
2619
|
* <p>The ID of the video stream pool in the configuration.</p>
|
|
2523
2620
|
* @public
|
|
2524
2621
|
*/
|
|
2525
|
-
PoolId?: string;
|
|
2622
|
+
PoolId?: string | undefined;
|
|
2526
2623
|
/**
|
|
2527
2624
|
* <p>The status of the video stream pool in the configuration. </p>
|
|
2528
2625
|
* @public
|
|
2529
2626
|
*/
|
|
2530
|
-
PoolStatus?: KinesisVideoStreamPoolStatus;
|
|
2627
|
+
PoolStatus?: KinesisVideoStreamPoolStatus | undefined;
|
|
2531
2628
|
/**
|
|
2532
2629
|
* <p>The size of the video stream pool in the configuration.</p>
|
|
2533
2630
|
* @public
|
|
2534
2631
|
*/
|
|
2535
|
-
PoolSize?: number;
|
|
2632
|
+
PoolSize?: number | undefined;
|
|
2536
2633
|
/**
|
|
2537
2634
|
* <p>The Kinesis video stream pool configuration object.</p>
|
|
2538
2635
|
* @public
|
|
2539
2636
|
*/
|
|
2540
|
-
StreamConfiguration?: KinesisVideoStreamConfiguration;
|
|
2637
|
+
StreamConfiguration?: KinesisVideoStreamConfiguration | undefined;
|
|
2541
2638
|
/**
|
|
2542
2639
|
* <p>The time at which the configuration was created.</p>
|
|
2543
2640
|
* @public
|
|
2544
2641
|
*/
|
|
2545
|
-
CreatedTimestamp?: Date;
|
|
2642
|
+
CreatedTimestamp?: Date | undefined;
|
|
2546
2643
|
/**
|
|
2547
2644
|
* <p>The time at which the configuration was updated.</p>
|
|
2548
2645
|
* @public
|
|
2549
2646
|
*/
|
|
2550
|
-
UpdatedTimestamp?: Date;
|
|
2647
|
+
UpdatedTimestamp?: Date | undefined;
|
|
2551
2648
|
}
|
|
2552
2649
|
/**
|
|
2553
2650
|
* @public
|
|
@@ -2560,7 +2657,7 @@ export interface CreateMediaPipelineKinesisVideoStreamPoolResponse {
|
|
|
2560
2657
|
* </note>
|
|
2561
2658
|
* @public
|
|
2562
2659
|
*/
|
|
2563
|
-
KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration;
|
|
2660
|
+
KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration | undefined;
|
|
2564
2661
|
}
|
|
2565
2662
|
/**
|
|
2566
2663
|
* @public
|
|
@@ -2645,12 +2742,12 @@ export interface CreateMediaStreamPipelineRequest {
|
|
|
2645
2742
|
* <p>The token assigned to the client making the request.</p>
|
|
2646
2743
|
* @public
|
|
2647
2744
|
*/
|
|
2648
|
-
ClientRequestToken?: string;
|
|
2745
|
+
ClientRequestToken?: string | undefined;
|
|
2649
2746
|
/**
|
|
2650
2747
|
* <p>The tags assigned to the media pipeline.</p>
|
|
2651
2748
|
* @public
|
|
2652
2749
|
*/
|
|
2653
|
-
Tags?: Tag[];
|
|
2750
|
+
Tags?: Tag[] | undefined;
|
|
2654
2751
|
}
|
|
2655
2752
|
/**
|
|
2656
2753
|
* <p>Structure that contains the settings for a media stream pipeline.</p>
|
|
@@ -2661,37 +2758,37 @@ export interface MediaStreamPipeline {
|
|
|
2661
2758
|
* <p>The ID of the media stream pipeline</p>
|
|
2662
2759
|
* @public
|
|
2663
2760
|
*/
|
|
2664
|
-
MediaPipelineId?: string;
|
|
2761
|
+
MediaPipelineId?: string | undefined;
|
|
2665
2762
|
/**
|
|
2666
2763
|
* <p>The ARN of the media stream pipeline.</p>
|
|
2667
2764
|
* @public
|
|
2668
2765
|
*/
|
|
2669
|
-
MediaPipelineArn?: string;
|
|
2766
|
+
MediaPipelineArn?: string | undefined;
|
|
2670
2767
|
/**
|
|
2671
2768
|
* <p>The time at which the media stream pipeline was created.</p>
|
|
2672
2769
|
* @public
|
|
2673
2770
|
*/
|
|
2674
|
-
CreatedTimestamp?: Date;
|
|
2771
|
+
CreatedTimestamp?: Date | undefined;
|
|
2675
2772
|
/**
|
|
2676
2773
|
* <p>The time at which the media stream pipeline was updated.</p>
|
|
2677
2774
|
* @public
|
|
2678
2775
|
*/
|
|
2679
|
-
UpdatedTimestamp?: Date;
|
|
2776
|
+
UpdatedTimestamp?: Date | undefined;
|
|
2680
2777
|
/**
|
|
2681
2778
|
* <p>The status of the media stream pipeline.</p>
|
|
2682
2779
|
* @public
|
|
2683
2780
|
*/
|
|
2684
|
-
Status?: MediaPipelineStatus;
|
|
2781
|
+
Status?: MediaPipelineStatus | undefined;
|
|
2685
2782
|
/**
|
|
2686
2783
|
* <p>The media stream pipeline's data sources.</p>
|
|
2687
2784
|
* @public
|
|
2688
2785
|
*/
|
|
2689
|
-
Sources?: MediaStreamSource[];
|
|
2786
|
+
Sources?: MediaStreamSource[] | undefined;
|
|
2690
2787
|
/**
|
|
2691
2788
|
* <p>The media stream pipeline's data sinks.</p>
|
|
2692
2789
|
* @public
|
|
2693
2790
|
*/
|
|
2694
|
-
Sinks?: MediaStreamSink[];
|
|
2791
|
+
Sinks?: MediaStreamSink[] | undefined;
|
|
2695
2792
|
}
|
|
2696
2793
|
/**
|
|
2697
2794
|
* @public
|
|
@@ -2701,7 +2798,7 @@ export interface CreateMediaStreamPipelineResponse {
|
|
|
2701
2798
|
* <p>The requested media pipeline.</p>
|
|
2702
2799
|
* @public
|
|
2703
2800
|
*/
|
|
2704
|
-
MediaStreamPipeline?: MediaStreamPipeline;
|
|
2801
|
+
MediaStreamPipeline?: MediaStreamPipeline | undefined;
|
|
2705
2802
|
}
|
|
2706
2803
|
/**
|
|
2707
2804
|
* @public
|
|
@@ -2761,7 +2858,7 @@ export interface GetMediaCapturePipelineResponse {
|
|
|
2761
2858
|
* <p>The media pipeline object.</p>
|
|
2762
2859
|
* @public
|
|
2763
2860
|
*/
|
|
2764
|
-
MediaCapturePipeline?: MediaCapturePipeline;
|
|
2861
|
+
MediaCapturePipeline?: MediaCapturePipeline | undefined;
|
|
2765
2862
|
}
|
|
2766
2863
|
/**
|
|
2767
2864
|
* @public
|
|
@@ -2781,7 +2878,7 @@ export interface GetMediaInsightsPipelineConfigurationResponse {
|
|
|
2781
2878
|
* <p>The requested media insights pipeline configuration.</p>
|
|
2782
2879
|
* @public
|
|
2783
2880
|
*/
|
|
2784
|
-
MediaInsightsPipelineConfiguration?: MediaInsightsPipelineConfiguration;
|
|
2881
|
+
MediaInsightsPipelineConfiguration?: MediaInsightsPipelineConfiguration | undefined;
|
|
2785
2882
|
}
|
|
2786
2883
|
/**
|
|
2787
2884
|
* @public
|
|
@@ -2802,27 +2899,27 @@ export interface MediaPipeline {
|
|
|
2802
2899
|
* <p>A pipeline that enables users to capture audio and video.</p>
|
|
2803
2900
|
* @public
|
|
2804
2901
|
*/
|
|
2805
|
-
MediaCapturePipeline?: MediaCapturePipeline;
|
|
2902
|
+
MediaCapturePipeline?: MediaCapturePipeline | undefined;
|
|
2806
2903
|
/**
|
|
2807
2904
|
* <p>The connector pipeline of the media pipeline.</p>
|
|
2808
2905
|
* @public
|
|
2809
2906
|
*/
|
|
2810
|
-
MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
|
|
2907
|
+
MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline | undefined;
|
|
2811
2908
|
/**
|
|
2812
2909
|
* <p>The media concatenation pipeline in a media pipeline.</p>
|
|
2813
2910
|
* @public
|
|
2814
2911
|
*/
|
|
2815
|
-
MediaConcatenationPipeline?: MediaConcatenationPipeline;
|
|
2912
|
+
MediaConcatenationPipeline?: MediaConcatenationPipeline | undefined;
|
|
2816
2913
|
/**
|
|
2817
2914
|
* <p>The media insights pipeline of a media pipeline.</p>
|
|
2818
2915
|
* @public
|
|
2819
2916
|
*/
|
|
2820
|
-
MediaInsightsPipeline?: MediaInsightsPipeline;
|
|
2917
|
+
MediaInsightsPipeline?: MediaInsightsPipeline | undefined;
|
|
2821
2918
|
/**
|
|
2822
2919
|
* <p>Designates a media pipeline as a media stream pipeline.</p>
|
|
2823
2920
|
* @public
|
|
2824
2921
|
*/
|
|
2825
|
-
MediaStreamPipeline?: MediaStreamPipeline;
|
|
2922
|
+
MediaStreamPipeline?: MediaStreamPipeline | undefined;
|
|
2826
2923
|
}
|
|
2827
2924
|
/**
|
|
2828
2925
|
* @public
|
|
@@ -2832,7 +2929,7 @@ export interface GetMediaPipelineResponse {
|
|
|
2832
2929
|
* <p>The media pipeline object.</p>
|
|
2833
2930
|
* @public
|
|
2834
2931
|
*/
|
|
2835
|
-
MediaPipeline?: MediaPipeline;
|
|
2932
|
+
MediaPipeline?: MediaPipeline | undefined;
|
|
2836
2933
|
}
|
|
2837
2934
|
/**
|
|
2838
2935
|
* @public
|
|
@@ -2852,7 +2949,7 @@ export interface GetMediaPipelineKinesisVideoStreamPoolResponse {
|
|
|
2852
2949
|
* <p>The video stream pool configuration object.</p>
|
|
2853
2950
|
* @public
|
|
2854
2951
|
*/
|
|
2855
|
-
KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration;
|
|
2952
|
+
KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration | undefined;
|
|
2856
2953
|
}
|
|
2857
2954
|
/**
|
|
2858
2955
|
* @public
|
|
@@ -2895,22 +2992,22 @@ export interface SpeakerSearchTask {
|
|
|
2895
2992
|
* <p>The speaker search task ID.</p>
|
|
2896
2993
|
* @public
|
|
2897
2994
|
*/
|
|
2898
|
-
SpeakerSearchTaskId?: string;
|
|
2995
|
+
SpeakerSearchTaskId?: string | undefined;
|
|
2899
2996
|
/**
|
|
2900
2997
|
* <p>The status of the speaker search task.</p>
|
|
2901
2998
|
* @public
|
|
2902
2999
|
*/
|
|
2903
|
-
SpeakerSearchTaskStatus?: MediaPipelineTaskStatus;
|
|
3000
|
+
SpeakerSearchTaskStatus?: MediaPipelineTaskStatus | undefined;
|
|
2904
3001
|
/**
|
|
2905
3002
|
* <p>The time at which a speaker search task was created.</p>
|
|
2906
3003
|
* @public
|
|
2907
3004
|
*/
|
|
2908
|
-
CreatedTimestamp?: Date;
|
|
3005
|
+
CreatedTimestamp?: Date | undefined;
|
|
2909
3006
|
/**
|
|
2910
3007
|
* <p>The time at which a speaker search task was updated.</p>
|
|
2911
3008
|
* @public
|
|
2912
3009
|
*/
|
|
2913
|
-
UpdatedTimestamp?: Date;
|
|
3010
|
+
UpdatedTimestamp?: Date | undefined;
|
|
2914
3011
|
}
|
|
2915
3012
|
/**
|
|
2916
3013
|
* @public
|
|
@@ -2920,7 +3017,7 @@ export interface GetSpeakerSearchTaskResponse {
|
|
|
2920
3017
|
* <p>The details of the speaker search task.</p>
|
|
2921
3018
|
* @public
|
|
2922
3019
|
*/
|
|
2923
|
-
SpeakerSearchTask?: SpeakerSearchTask;
|
|
3020
|
+
SpeakerSearchTask?: SpeakerSearchTask | undefined;
|
|
2924
3021
|
}
|
|
2925
3022
|
/**
|
|
2926
3023
|
* @public
|
|
@@ -2946,22 +3043,22 @@ export interface VoiceToneAnalysisTask {
|
|
|
2946
3043
|
* <p>The ID of the voice tone analysis task.</p>
|
|
2947
3044
|
* @public
|
|
2948
3045
|
*/
|
|
2949
|
-
VoiceToneAnalysisTaskId?: string;
|
|
3046
|
+
VoiceToneAnalysisTaskId?: string | undefined;
|
|
2950
3047
|
/**
|
|
2951
3048
|
* <p>The status of a voice tone analysis task.</p>
|
|
2952
3049
|
* @public
|
|
2953
3050
|
*/
|
|
2954
|
-
VoiceToneAnalysisTaskStatus?: MediaPipelineTaskStatus;
|
|
3051
|
+
VoiceToneAnalysisTaskStatus?: MediaPipelineTaskStatus | undefined;
|
|
2955
3052
|
/**
|
|
2956
3053
|
* <p>The time at which a voice tone analysis task was created.</p>
|
|
2957
3054
|
* @public
|
|
2958
3055
|
*/
|
|
2959
|
-
CreatedTimestamp?: Date;
|
|
3056
|
+
CreatedTimestamp?: Date | undefined;
|
|
2960
3057
|
/**
|
|
2961
3058
|
* <p>The time at which a voice tone analysis task was updated.</p>
|
|
2962
3059
|
* @public
|
|
2963
3060
|
*/
|
|
2964
|
-
UpdatedTimestamp?: Date;
|
|
3061
|
+
UpdatedTimestamp?: Date | undefined;
|
|
2965
3062
|
}
|
|
2966
3063
|
/**
|
|
2967
3064
|
* @public
|
|
@@ -2971,7 +3068,7 @@ export interface GetVoiceToneAnalysisTaskResponse {
|
|
|
2971
3068
|
* <p>The details of the voice tone analysis task.</p>
|
|
2972
3069
|
* @public
|
|
2973
3070
|
*/
|
|
2974
|
-
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
3071
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask | undefined;
|
|
2975
3072
|
}
|
|
2976
3073
|
/**
|
|
2977
3074
|
* @public
|
|
@@ -2981,12 +3078,12 @@ export interface ListMediaCapturePipelinesRequest {
|
|
|
2981
3078
|
* <p>The token used to retrieve the next page of results.</p>
|
|
2982
3079
|
* @public
|
|
2983
3080
|
*/
|
|
2984
|
-
NextToken?: string;
|
|
3081
|
+
NextToken?: string | undefined;
|
|
2985
3082
|
/**
|
|
2986
3083
|
* <p>The maximum number of results to return in a single call. Valid Range: 1 - 99.</p>
|
|
2987
3084
|
* @public
|
|
2988
3085
|
*/
|
|
2989
|
-
MaxResults?: number;
|
|
3086
|
+
MaxResults?: number | undefined;
|
|
2990
3087
|
}
|
|
2991
3088
|
/**
|
|
2992
3089
|
* <p>The summary data of a media capture pipeline.</p>
|
|
@@ -2997,12 +3094,12 @@ export interface MediaCapturePipelineSummary {
|
|
|
2997
3094
|
* <p>The ID of the media pipeline in the summary.</p>
|
|
2998
3095
|
* @public
|
|
2999
3096
|
*/
|
|
3000
|
-
MediaPipelineId?: string;
|
|
3097
|
+
MediaPipelineId?: string | undefined;
|
|
3001
3098
|
/**
|
|
3002
3099
|
* <p>The ARN of the media pipeline in the summary.</p>
|
|
3003
3100
|
* @public
|
|
3004
3101
|
*/
|
|
3005
|
-
MediaPipelineArn?: string;
|
|
3102
|
+
MediaPipelineArn?: string | undefined;
|
|
3006
3103
|
}
|
|
3007
3104
|
/**
|
|
3008
3105
|
* @public
|
|
@@ -3012,12 +3109,12 @@ export interface ListMediaCapturePipelinesResponse {
|
|
|
3012
3109
|
* <p>The media pipeline objects in the list.</p>
|
|
3013
3110
|
* @public
|
|
3014
3111
|
*/
|
|
3015
|
-
MediaCapturePipelines?: MediaCapturePipelineSummary[];
|
|
3112
|
+
MediaCapturePipelines?: MediaCapturePipelineSummary[] | undefined;
|
|
3016
3113
|
/**
|
|
3017
3114
|
* <p>The token used to retrieve the next page of results. </p>
|
|
3018
3115
|
* @public
|
|
3019
3116
|
*/
|
|
3020
|
-
NextToken?: string;
|
|
3117
|
+
NextToken?: string | undefined;
|
|
3021
3118
|
}
|
|
3022
3119
|
/**
|
|
3023
3120
|
* @public
|
|
@@ -3027,12 +3124,12 @@ export interface ListMediaInsightsPipelineConfigurationsRequest {
|
|
|
3027
3124
|
* <p>The token used to return the next page of results.</p>
|
|
3028
3125
|
* @public
|
|
3029
3126
|
*/
|
|
3030
|
-
NextToken?: string;
|
|
3127
|
+
NextToken?: string | undefined;
|
|
3031
3128
|
/**
|
|
3032
3129
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3033
3130
|
* @public
|
|
3034
3131
|
*/
|
|
3035
|
-
MaxResults?: number;
|
|
3132
|
+
MaxResults?: number | undefined;
|
|
3036
3133
|
}
|
|
3037
3134
|
/**
|
|
3038
3135
|
* <p>A summary of the media insights pipeline configuration.</p>
|
|
@@ -3043,17 +3140,17 @@ export interface MediaInsightsPipelineConfigurationSummary {
|
|
|
3043
3140
|
* <p>The name of the media insights pipeline configuration.</p>
|
|
3044
3141
|
* @public
|
|
3045
3142
|
*/
|
|
3046
|
-
MediaInsightsPipelineConfigurationName?: string;
|
|
3143
|
+
MediaInsightsPipelineConfigurationName?: string | undefined;
|
|
3047
3144
|
/**
|
|
3048
3145
|
* <p>The ID of the media insights pipeline configuration.</p>
|
|
3049
3146
|
* @public
|
|
3050
3147
|
*/
|
|
3051
|
-
MediaInsightsPipelineConfigurationId?: string;
|
|
3148
|
+
MediaInsightsPipelineConfigurationId?: string | undefined;
|
|
3052
3149
|
/**
|
|
3053
3150
|
* <p>The ARN of the media insights pipeline configuration.</p>
|
|
3054
3151
|
* @public
|
|
3055
3152
|
*/
|
|
3056
|
-
MediaInsightsPipelineConfigurationArn?: string;
|
|
3153
|
+
MediaInsightsPipelineConfigurationArn?: string | undefined;
|
|
3057
3154
|
}
|
|
3058
3155
|
/**
|
|
3059
3156
|
* @public
|
|
@@ -3063,12 +3160,12 @@ export interface ListMediaInsightsPipelineConfigurationsResponse {
|
|
|
3063
3160
|
* <p>The requested list of media insights pipeline configurations.</p>
|
|
3064
3161
|
* @public
|
|
3065
3162
|
*/
|
|
3066
|
-
MediaInsightsPipelineConfigurations?: MediaInsightsPipelineConfigurationSummary[];
|
|
3163
|
+
MediaInsightsPipelineConfigurations?: MediaInsightsPipelineConfigurationSummary[] | undefined;
|
|
3067
3164
|
/**
|
|
3068
3165
|
* <p>The token used to return the next page of results. </p>
|
|
3069
3166
|
* @public
|
|
3070
3167
|
*/
|
|
3071
|
-
NextToken?: string;
|
|
3168
|
+
NextToken?: string | undefined;
|
|
3072
3169
|
}
|
|
3073
3170
|
/**
|
|
3074
3171
|
* @public
|
|
@@ -3078,12 +3175,12 @@ export interface ListMediaPipelineKinesisVideoStreamPoolsRequest {
|
|
|
3078
3175
|
* <p>The token used to return the next page of results. </p>
|
|
3079
3176
|
* @public
|
|
3080
3177
|
*/
|
|
3081
|
-
NextToken?: string;
|
|
3178
|
+
NextToken?: string | undefined;
|
|
3082
3179
|
/**
|
|
3083
3180
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3084
3181
|
* @public
|
|
3085
3182
|
*/
|
|
3086
|
-
MaxResults?: number;
|
|
3183
|
+
MaxResults?: number | undefined;
|
|
3087
3184
|
}
|
|
3088
3185
|
/**
|
|
3089
3186
|
* <p>A summary of the Kinesis video stream pool.</p>
|
|
@@ -3094,17 +3191,17 @@ export interface KinesisVideoStreamPoolSummary {
|
|
|
3094
3191
|
* <p>The name of the video stream pool.</p>
|
|
3095
3192
|
* @public
|
|
3096
3193
|
*/
|
|
3097
|
-
PoolName?: string;
|
|
3194
|
+
PoolName?: string | undefined;
|
|
3098
3195
|
/**
|
|
3099
3196
|
* <p>The ID of the video stream pool.</p>
|
|
3100
3197
|
* @public
|
|
3101
3198
|
*/
|
|
3102
|
-
PoolId?: string;
|
|
3199
|
+
PoolId?: string | undefined;
|
|
3103
3200
|
/**
|
|
3104
3201
|
* <p>The ARN of the video stream pool.</p>
|
|
3105
3202
|
* @public
|
|
3106
3203
|
*/
|
|
3107
|
-
PoolArn?: string;
|
|
3204
|
+
PoolArn?: string | undefined;
|
|
3108
3205
|
}
|
|
3109
3206
|
/**
|
|
3110
3207
|
* @public
|
|
@@ -3114,12 +3211,12 @@ export interface ListMediaPipelineKinesisVideoStreamPoolsResponse {
|
|
|
3114
3211
|
* <p>The list of video stream pools.</p>
|
|
3115
3212
|
* @public
|
|
3116
3213
|
*/
|
|
3117
|
-
KinesisVideoStreamPools?: KinesisVideoStreamPoolSummary[];
|
|
3214
|
+
KinesisVideoStreamPools?: KinesisVideoStreamPoolSummary[] | undefined;
|
|
3118
3215
|
/**
|
|
3119
3216
|
* <p>The token used to return the next page of results.</p>
|
|
3120
3217
|
* @public
|
|
3121
3218
|
*/
|
|
3122
|
-
NextToken?: string;
|
|
3219
|
+
NextToken?: string | undefined;
|
|
3123
3220
|
}
|
|
3124
3221
|
/**
|
|
3125
3222
|
* @public
|
|
@@ -3129,12 +3226,12 @@ export interface ListMediaPipelinesRequest {
|
|
|
3129
3226
|
* <p>The token used to retrieve the next page of results.</p>
|
|
3130
3227
|
* @public
|
|
3131
3228
|
*/
|
|
3132
|
-
NextToken?: string;
|
|
3229
|
+
NextToken?: string | undefined;
|
|
3133
3230
|
/**
|
|
3134
3231
|
* <p>The maximum number of results to return in a single call. Valid Range: 1 - 99.</p>
|
|
3135
3232
|
* @public
|
|
3136
3233
|
*/
|
|
3137
|
-
MaxResults?: number;
|
|
3234
|
+
MaxResults?: number | undefined;
|
|
3138
3235
|
}
|
|
3139
3236
|
/**
|
|
3140
3237
|
* <p>The summary of the media pipeline.</p>
|
|
@@ -3145,12 +3242,12 @@ export interface MediaPipelineSummary {
|
|
|
3145
3242
|
* <p>The ID of the media pipeline in the summary.</p>
|
|
3146
3243
|
* @public
|
|
3147
3244
|
*/
|
|
3148
|
-
MediaPipelineId?: string;
|
|
3245
|
+
MediaPipelineId?: string | undefined;
|
|
3149
3246
|
/**
|
|
3150
3247
|
* <p>The ARN of the media pipeline in the summary.</p>
|
|
3151
3248
|
* @public
|
|
3152
3249
|
*/
|
|
3153
|
-
MediaPipelineArn?: string;
|
|
3250
|
+
MediaPipelineArn?: string | undefined;
|
|
3154
3251
|
}
|
|
3155
3252
|
/**
|
|
3156
3253
|
* @public
|
|
@@ -3160,12 +3257,12 @@ export interface ListMediaPipelinesResponse {
|
|
|
3160
3257
|
* <p>The media pipeline objects in the list.</p>
|
|
3161
3258
|
* @public
|
|
3162
3259
|
*/
|
|
3163
|
-
MediaPipelines?: MediaPipelineSummary[];
|
|
3260
|
+
MediaPipelines?: MediaPipelineSummary[] | undefined;
|
|
3164
3261
|
/**
|
|
3165
3262
|
* <p>The token used to retrieve the next page of results. </p>
|
|
3166
3263
|
* @public
|
|
3167
3264
|
*/
|
|
3168
|
-
NextToken?: string;
|
|
3265
|
+
NextToken?: string | undefined;
|
|
3169
3266
|
}
|
|
3170
3267
|
/**
|
|
3171
3268
|
* @public
|
|
@@ -3185,7 +3282,7 @@ export interface ListTagsForResourceResponse {
|
|
|
3185
3282
|
* <p>The tags associated with the specified media pipeline.</p>
|
|
3186
3283
|
* @public
|
|
3187
3284
|
*/
|
|
3188
|
-
Tags?: Tag[];
|
|
3285
|
+
Tags?: Tag[] | undefined;
|
|
3189
3286
|
}
|
|
3190
3287
|
/**
|
|
3191
3288
|
* <p>The task configuration settings for the Kinesis video stream source.</p>
|
|
@@ -3206,7 +3303,7 @@ export interface KinesisVideoStreamSourceTaskConfiguration {
|
|
|
3206
3303
|
* <p>The unique identifier of the fragment to begin processing.</p>
|
|
3207
3304
|
* @public
|
|
3208
3305
|
*/
|
|
3209
|
-
FragmentNumber?: string;
|
|
3306
|
+
FragmentNumber?: string | undefined;
|
|
3210
3307
|
}
|
|
3211
3308
|
/**
|
|
3212
3309
|
* @public
|
|
@@ -3227,12 +3324,12 @@ export interface StartSpeakerSearchTaskRequest {
|
|
|
3227
3324
|
* pipeline.</p>
|
|
3228
3325
|
* @public
|
|
3229
3326
|
*/
|
|
3230
|
-
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
|
|
3327
|
+
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration | undefined;
|
|
3231
3328
|
/**
|
|
3232
3329
|
* <p>The unique identifier for the client request. Use a different token for different speaker search tasks.</p>
|
|
3233
3330
|
* @public
|
|
3234
3331
|
*/
|
|
3235
|
-
ClientRequestToken?: string;
|
|
3332
|
+
ClientRequestToken?: string | undefined;
|
|
3236
3333
|
}
|
|
3237
3334
|
/**
|
|
3238
3335
|
* @public
|
|
@@ -3242,7 +3339,7 @@ export interface StartSpeakerSearchTaskResponse {
|
|
|
3242
3339
|
* <p>The details of the speaker search task.</p>
|
|
3243
3340
|
* @public
|
|
3244
3341
|
*/
|
|
3245
|
-
SpeakerSearchTask?: SpeakerSearchTask;
|
|
3342
|
+
SpeakerSearchTask?: SpeakerSearchTask | undefined;
|
|
3246
3343
|
}
|
|
3247
3344
|
/**
|
|
3248
3345
|
* @public
|
|
@@ -3274,12 +3371,12 @@ export interface StartVoiceToneAnalysisTaskRequest {
|
|
|
3274
3371
|
* pipeline.</p>
|
|
3275
3372
|
* @public
|
|
3276
3373
|
*/
|
|
3277
|
-
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
|
|
3374
|
+
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration | undefined;
|
|
3278
3375
|
/**
|
|
3279
3376
|
* <p>The unique identifier for the client request. Use a different token for different voice tone analysis tasks.</p>
|
|
3280
3377
|
* @public
|
|
3281
3378
|
*/
|
|
3282
|
-
ClientRequestToken?: string;
|
|
3379
|
+
ClientRequestToken?: string | undefined;
|
|
3283
3380
|
}
|
|
3284
3381
|
/**
|
|
3285
3382
|
* @public
|
|
@@ -3289,7 +3386,7 @@ export interface StartVoiceToneAnalysisTaskResponse {
|
|
|
3289
3386
|
* <p>The details of the voice tone analysis task.</p>
|
|
3290
3387
|
* @public
|
|
3291
3388
|
*/
|
|
3292
|
-
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
3389
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask | undefined;
|
|
3293
3390
|
}
|
|
3294
3391
|
/**
|
|
3295
3392
|
* @public
|
|
@@ -3379,7 +3476,7 @@ export interface UpdateMediaInsightsPipelineConfigurationRequest {
|
|
|
3379
3476
|
* <p>The configuration settings for real-time alerts for the media insights pipeline.</p>
|
|
3380
3477
|
* @public
|
|
3381
3478
|
*/
|
|
3382
|
-
RealTimeAlertConfiguration?: RealTimeAlertConfiguration;
|
|
3479
|
+
RealTimeAlertConfiguration?: RealTimeAlertConfiguration | undefined;
|
|
3383
3480
|
/**
|
|
3384
3481
|
* <p>The elements in the request, such as a processor for Amazon Transcribe or a sink for a Kinesis Data Stream..</p>
|
|
3385
3482
|
* @public
|
|
@@ -3394,7 +3491,7 @@ export interface UpdateMediaInsightsPipelineConfigurationResponse {
|
|
|
3394
3491
|
* <p>The updated configuration settings.</p>
|
|
3395
3492
|
* @public
|
|
3396
3493
|
*/
|
|
3397
|
-
MediaInsightsPipelineConfiguration?: MediaInsightsPipelineConfiguration;
|
|
3494
|
+
MediaInsightsPipelineConfiguration?: MediaInsightsPipelineConfiguration | undefined;
|
|
3398
3495
|
}
|
|
3399
3496
|
/**
|
|
3400
3497
|
* @public
|
|
@@ -3432,7 +3529,7 @@ export interface KinesisVideoStreamConfigurationUpdate {
|
|
|
3432
3529
|
* <p>The updated time that data is retained.</p>
|
|
3433
3530
|
* @public
|
|
3434
3531
|
*/
|
|
3435
|
-
DataRetentionInHours?: number;
|
|
3532
|
+
DataRetentionInHours?: number | undefined;
|
|
3436
3533
|
}
|
|
3437
3534
|
/**
|
|
3438
3535
|
* @public
|
|
@@ -3447,7 +3544,7 @@ export interface UpdateMediaPipelineKinesisVideoStreamPoolRequest {
|
|
|
3447
3544
|
* <p>The configuration settings for the video stream.</p>
|
|
3448
3545
|
* @public
|
|
3449
3546
|
*/
|
|
3450
|
-
StreamConfiguration?: KinesisVideoStreamConfigurationUpdate;
|
|
3547
|
+
StreamConfiguration?: KinesisVideoStreamConfigurationUpdate | undefined;
|
|
3451
3548
|
}
|
|
3452
3549
|
/**
|
|
3453
3550
|
* @public
|
|
@@ -3457,7 +3554,7 @@ export interface UpdateMediaPipelineKinesisVideoStreamPoolResponse {
|
|
|
3457
3554
|
* <p>The video stream pool configuration object.</p>
|
|
3458
3555
|
* @public
|
|
3459
3556
|
*/
|
|
3460
|
-
KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration;
|
|
3557
|
+
KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration | undefined;
|
|
3461
3558
|
}
|
|
3462
3559
|
/**
|
|
3463
3560
|
* @internal
|