@aws-sdk/client-chime-sdk-media-pipelines 3.316.0 → 3.317.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.
@@ -97,6 +97,7 @@ export interface CreateMediaInsightsPipelineConfigurationCommandOutput extends C
97
97
  * },
98
98
  * S3RecordingSinkConfiguration: { // S3RecordingSinkConfiguration
99
99
  * Destination: "STRING_VALUE",
100
+ * RecordingFileFormat: "Wav" || "Opus",
100
101
  * },
101
102
  * VoiceAnalyticsProcessorConfiguration: { // VoiceAnalyticsProcessorConfiguration
102
103
  * SpeakerSearchStatus: "Enabled" || "Disabled",
@@ -96,6 +96,7 @@ export interface UpdateMediaInsightsPipelineConfigurationCommandOutput extends U
96
96
  * },
97
97
  * S3RecordingSinkConfiguration: { // S3RecordingSinkConfiguration
98
98
  * Destination: "STRING_VALUE",
99
+ * RecordingFileFormat: "Wav" || "Opus",
99
100
  * },
100
101
  * VoiceAnalyticsProcessorConfiguration: { // VoiceAnalyticsProcessorConfiguration
101
102
  * SpeakerSearchStatus: "Enabled" || "Disabled",
@@ -57,7 +57,12 @@ export declare const ContentRedactionOutput: {
57
57
  export type ContentRedactionOutput = (typeof ContentRedactionOutput)[keyof typeof ContentRedactionOutput];
58
58
  /**
59
59
  * @public
60
- * <p>The settings for a post-call voice analytics task.</p>
60
+ * <p>Allows you to specify additional settings for your Call Analytics post-call request, including output locations for your redacted transcript, which IAM role to use, and which encryption key to use.</p>
61
+ * <p>
62
+ * <code>DataAccessRoleArn</code> and <code>OutputLocation</code> are required fields.</p>
63
+ * <p>
64
+ * <code>PostCallAnalyticsSettings</code> provides the same insights as a Call Analytics post-call transcription. For more information, refer to
65
+ * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tca-post-call.html">Post-call analytics with real-time transcriptions</a> in the <i>Amazon Transcribe Developer Guide</i>.</p>
61
66
  */
62
67
  export interface PostCallAnalyticsSettings {
63
68
  /**
@@ -74,7 +79,7 @@ export interface PostCallAnalyticsSettings {
74
79
  */
75
80
  ContentRedactionOutput?: ContentRedactionOutput | string;
76
81
  /**
77
- * <p>The ID of the KMS (Key Management System) key used to encrypt the output.</p>
82
+ * <p>The ID of the KMS (Key Management Service) key used to encrypt the output.</p>
78
83
  */
79
84
  OutputEncryptionKMSKeyId?: string;
80
85
  }
@@ -182,7 +187,7 @@ export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
182
187
  */
183
188
  PostCallAnalyticsSettings?: PostCallAnalyticsSettings;
184
189
  /**
185
- * <p>By default, all <code>CategoryEvents</code> will be sent to the insights target. If this parameter is specified, only included categories will be sent to the insights target. </p>
190
+ * <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>
186
191
  */
187
192
  CallAnalyticsStreamCategories?: string[];
188
193
  }
@@ -261,7 +266,7 @@ export interface AmazonTranscribeProcessorConfiguration {
261
266
  * <p>Values must be comma-separated and can include: <code>ADDRESS</code>, <code>BANK_ACCOUNT_NUMBER</code>, <code>BANK_ROUTING</code>, <code>CREDIT_DEBIT_CVV</code>,
262
267
  * <code>CREDIT_DEBIT_EXPIRY</code>, <code>CREDIT_DEBIT_NUMBER</code>, <code>EMAIL</code>,
263
268
  * <code>NAME</code>, <code>PHONE</code>, <code>PIN</code>, <code>SSN</code>, or <code>ALL</code>.</p>
264
- * <p>Length Constraints: Minimum length of 1. Maximum length of 300.</p>
269
+ * <p>If you leave this parameter empty, the default behavior is equivalent to <code>ALL</code>.</p>
265
270
  */
266
271
  PiiEntityTypes?: string;
267
272
  /**
@@ -459,7 +464,7 @@ export declare const PresenterPosition: {
459
464
  export type PresenterPosition = (typeof PresenterPosition)[keyof typeof PresenterPosition];
460
465
  /**
461
466
  * @public
462
- * <p>Defines the configuration for a presenter only video tile.</p>
467
+ * <p>Defines the configuration for a presenter-only video tile.</p>
463
468
  */
464
469
  export interface PresenterOnlyConfiguration {
465
470
  /**
@@ -1185,7 +1190,7 @@ export interface FragmentSelector {
1185
1190
  }
1186
1191
  /**
1187
1192
  * @public
1188
- * <p>A structure the holds the settings for recording audio and video.</p>
1193
+ * <p>A structure that holds the settings for recording media.</p>
1189
1194
  */
1190
1195
  export interface RecordingStreamConfiguration {
1191
1196
  /**
@@ -1286,15 +1291,15 @@ export declare const RecordingFileFormat: {
1286
1291
  export type RecordingFileFormat = (typeof RecordingFileFormat)[keyof typeof RecordingFileFormat];
1287
1292
  /**
1288
1293
  * @public
1289
- * <p>A structure that holds the settings for transmitting audio and video recordings to the runtime Amazon S3 bucket.</p>
1294
+ * <p>A structure that holds the settings for transmitting media files to the Amazon S3 bucket. If specified, the settings in this structure override any settings in <code>S3RecordingSinkConfiguration</code>.</p>
1290
1295
  */
1291
1296
  export interface S3RecordingSinkRuntimeConfiguration {
1292
1297
  /**
1293
- * <p>The URL of the S3 bucket used as the runtime sink.</p>
1298
+ * <p>The URI of the S3 bucket used as the sink.</p>
1294
1299
  */
1295
1300
  Destination: string | undefined;
1296
1301
  /**
1297
- * <p>The file formats for the audio and video files sent to the Amazon S3 bucket.</p>
1302
+ * <p>The file format for the media files sent to the Amazon S3 bucket.</p>
1298
1303
  */
1299
1304
  RecordingFileFormat: RecordingFileFormat | string | undefined;
1300
1305
  }
@@ -1407,7 +1412,7 @@ export declare class NotFoundException extends __BaseException {
1407
1412
  */
1408
1413
  export interface KinesisDataStreamSinkConfiguration {
1409
1414
  /**
1410
- * <p>The URL of the sink, <a href="https://aws.amazon.com/kinesis/data-streams/">https://aws.amazon.com/kinesis/data-streams/</a>.</p>
1415
+ * <p>The ARN of the sink.</p>
1411
1416
  */
1412
1417
  InsightsTarget?: string;
1413
1418
  }
@@ -1417,19 +1422,23 @@ export interface KinesisDataStreamSinkConfiguration {
1417
1422
  */
1418
1423
  export interface LambdaFunctionSinkConfiguration {
1419
1424
  /**
1420
- * <p>The URL of the sink, <a href="https://aws.amazon.com/kinesis/data-streams/">https://aws.amazon.com/kinesis/data-streams/</a>.</p>
1425
+ * <p>The ARN of the sink.</p>
1421
1426
  */
1422
1427
  InsightsTarget?: string;
1423
1428
  }
1424
1429
  /**
1425
1430
  * @public
1426
- * <p>The structure that holds the settings for transmitting audio and video to the Amazon S3 bucket.</p>
1431
+ * <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>
1427
1432
  */
1428
1433
  export interface S3RecordingSinkConfiguration {
1429
1434
  /**
1430
- * <p>The URL of the Amazon S3 bucket used as the recording sink.</p>
1435
+ * <p>The default URI of the Amazon S3 bucket used as the recording sink.</p>
1431
1436
  */
1432
1437
  Destination?: string;
1438
+ /**
1439
+ * <p>The default file format for the media files sent to the Amazon S3 bucket.</p>
1440
+ */
1441
+ RecordingFileFormat?: RecordingFileFormat | string;
1433
1442
  }
1434
1443
  /**
1435
1444
  * @public
@@ -1437,17 +1446,17 @@ export interface S3RecordingSinkConfiguration {
1437
1446
  */
1438
1447
  export interface SnsTopicSinkConfiguration {
1439
1448
  /**
1440
- * <p>The URL of the SNS sink, <a href="https://aws.amazon.com/kinesis/data-streams/">https://aws.amazon.com/kinesis/data-streams/</a>.</p>
1449
+ * <p>The ARN of the SNS sink.</p>
1441
1450
  */
1442
1451
  InsightsTarget?: string;
1443
1452
  }
1444
1453
  /**
1445
1454
  * @public
1446
- * <p>The URL of the SQS sink.</p>
1455
+ * <p>The configuration settings for the SQS sink.</p>
1447
1456
  */
1448
1457
  export interface SqsQueueSinkConfiguration {
1449
1458
  /**
1450
- * <p>The URL of the SQS sink, <a href="https://aws.amazon.com/kinesis/data-streams/">https://aws.amazon.com/kinesis/data-streams/</a>.</p>
1459
+ * <p>The ARN of the SQS sink.</p>
1451
1460
  */
1452
1461
  InsightsTarget?: string;
1453
1462
  }
@@ -481,6 +481,7 @@ export interface LambdaFunctionSinkConfiguration {
481
481
  }
482
482
  export interface S3RecordingSinkConfiguration {
483
483
  Destination?: string;
484
+ RecordingFileFormat?: RecordingFileFormat | string;
484
485
  }
485
486
  export interface SnsTopicSinkConfiguration {
486
487
  InsightsTarget?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-chime-sdk-media-pipelines",
3
3
  "description": "AWS SDK for JavaScript Chime Sdk Media Pipelines Client for Node.js, Browser and React Native",
4
- "version": "3.316.0",
4
+ "version": "3.317.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",