@aws-sdk/client-chime-sdk-media-pipelines 3.398.0 → 3.405.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/README.md +48 -0
- package/dist-cjs/ChimeSDKMediaPipelines.js +12 -0
- package/dist-cjs/commands/GetSpeakerSearchTaskCommand.js +46 -0
- package/dist-cjs/commands/GetVoiceToneAnalysisTaskCommand.js +46 -0
- package/dist-cjs/commands/StartSpeakerSearchTaskCommand.js +47 -0
- package/dist-cjs/commands/StartVoiceToneAnalysisTaskCommand.js +47 -0
- package/dist-cjs/commands/StopSpeakerSearchTaskCommand.js +46 -0
- package/dist-cjs/commands/StopVoiceToneAnalysisTaskCommand.js +46 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +46 -12
- package/dist-cjs/protocols/Aws_restJson1.js +479 -1
- package/dist-es/ChimeSDKMediaPipelines.js +12 -0
- package/dist-es/commands/GetSpeakerSearchTaskCommand.js +42 -0
- package/dist-es/commands/GetVoiceToneAnalysisTaskCommand.js +42 -0
- package/dist-es/commands/StartSpeakerSearchTaskCommand.js +43 -0
- package/dist-es/commands/StartVoiceToneAnalysisTaskCommand.js +43 -0
- package/dist-es/commands/StopSpeakerSearchTaskCommand.js +42 -0
- package/dist-es/commands/StopVoiceToneAnalysisTaskCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +42 -10
- package/dist-es/protocols/Aws_restJson1.js +466 -0
- package/dist-types/ChimeSDKMediaPipelines.d.ts +42 -0
- package/dist-types/ChimeSDKMediaPipelinesClient.d.ts +8 -2
- package/dist-types/commands/CreateMediaCapturePipelineCommand.d.ts +1 -1
- package/dist-types/commands/CreateMediaConcatenationPipelineCommand.d.ts +1 -1
- package/dist-types/commands/CreateMediaInsightsPipelineCommand.d.ts +7 -1
- package/dist-types/commands/CreateMediaInsightsPipelineConfigurationCommand.d.ts +8 -2
- package/dist-types/commands/CreateMediaLiveConnectorPipelineCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMediaPipelineCommand.d.ts +4 -0
- package/dist-types/commands/GetMediaCapturePipelineCommand.d.ts +1 -1
- package/dist-types/commands/GetMediaInsightsPipelineConfigurationCommand.d.ts +4 -1
- package/dist-types/commands/GetMediaPipelineCommand.d.ts +10 -4
- package/dist-types/commands/GetSpeakerSearchTaskCommand.d.ts +100 -0
- package/dist-types/commands/GetVoiceToneAnalysisTaskCommand.d.ts +100 -0
- package/dist-types/commands/StartSpeakerSearchTaskCommand.d.ts +114 -0
- package/dist-types/commands/StartVoiceToneAnalysisTaskCommand.d.ts +116 -0
- package/dist-types/commands/StopSpeakerSearchTaskCommand.d.ts +97 -0
- package/dist-types/commands/StopVoiceToneAnalysisTaskCommand.d.ts +97 -0
- package/dist-types/commands/UpdateMediaInsightsPipelineConfigurationCommand.d.ts +8 -2
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +338 -20
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/ChimeSDKMediaPipelines.d.ts +102 -0
- package/dist-types/ts3.4/ChimeSDKMediaPipelinesClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetSpeakerSearchTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetVoiceToneAnalysisTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartSpeakerSearchTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartVoiceToneAnalysisTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StopSpeakerSearchTaskCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/StopVoiceToneAnalysisTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +113 -12
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +7 -7
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
|
|
5
|
+
import { StopSpeakerSearchTaskRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StopSpeakerSearchTaskCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StopSpeakerSearchTaskCommandInput extends StopSpeakerSearchTaskRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StopSpeakerSearchTaskCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StopSpeakerSearchTaskCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Stops a speaker search task.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { ChimeSDKMediaPipelinesClient, StopSpeakerSearchTaskCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
31
|
+
* // const { ChimeSDKMediaPipelinesClient, StopSpeakerSearchTaskCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
32
|
+
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
33
|
+
* const input = { // StopSpeakerSearchTaskRequest
|
|
34
|
+
* Identifier: "STRING_VALUE", // required
|
|
35
|
+
* SpeakerSearchTaskId: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
37
|
+
* const command = new StopSpeakerSearchTaskCommand(input);
|
|
38
|
+
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* @param StopSpeakerSearchTaskCommandInput - {@link StopSpeakerSearchTaskCommandInput}
|
|
44
|
+
* @returns {@link StopSpeakerSearchTaskCommandOutput}
|
|
45
|
+
* @see {@link StopSpeakerSearchTaskCommandInput} for command's `input` shape.
|
|
46
|
+
* @see {@link StopSpeakerSearchTaskCommandOutput} for command's `response` shape.
|
|
47
|
+
* @see {@link ChimeSDKMediaPipelinesClientResolvedConfig | config} for ChimeSDKMediaPipelinesClient's `config` shape.
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link BadRequestException} (client fault)
|
|
50
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ConflictException} (client fault)
|
|
53
|
+
* <p>The request could not be processed because of conflict in the current state of the
|
|
54
|
+
* resource.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
57
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link NotFoundException} (client fault)
|
|
60
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
63
|
+
* <p>The service encountered an unexpected error.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
66
|
+
* <p>The service is currently unavailable.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ThrottledClientException} (client fault)
|
|
69
|
+
* <p>The client exceeded its request rate limit.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link UnauthorizedClientException} (client fault)
|
|
72
|
+
* <p>The client is not currently authorized to make the request.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ChimeSDKMediaPipelinesServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from ChimeSDKMediaPipelines service.</p>
|
|
76
|
+
*
|
|
77
|
+
*/
|
|
78
|
+
export declare class StopSpeakerSearchTaskCommand extends $Command<StopSpeakerSearchTaskCommandInput, StopSpeakerSearchTaskCommandOutput, ChimeSDKMediaPipelinesClientResolvedConfig> {
|
|
79
|
+
readonly input: StopSpeakerSearchTaskCommandInput;
|
|
80
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
constructor(input: StopSpeakerSearchTaskCommandInput);
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopSpeakerSearchTaskCommandInput, StopSpeakerSearchTaskCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
private deserialize;
|
|
97
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
|
|
5
|
+
import { StopVoiceToneAnalysisTaskRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StopVoiceToneAnalysisTaskCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StopVoiceToneAnalysisTaskCommandInput extends StopVoiceToneAnalysisTaskRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StopVoiceToneAnalysisTaskCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StopVoiceToneAnalysisTaskCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Stops a voice tone analysis task.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { ChimeSDKMediaPipelinesClient, StopVoiceToneAnalysisTaskCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
31
|
+
* // const { ChimeSDKMediaPipelinesClient, StopVoiceToneAnalysisTaskCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
32
|
+
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
33
|
+
* const input = { // StopVoiceToneAnalysisTaskRequest
|
|
34
|
+
* Identifier: "STRING_VALUE", // required
|
|
35
|
+
* VoiceToneAnalysisTaskId: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
37
|
+
* const command = new StopVoiceToneAnalysisTaskCommand(input);
|
|
38
|
+
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* @param StopVoiceToneAnalysisTaskCommandInput - {@link StopVoiceToneAnalysisTaskCommandInput}
|
|
44
|
+
* @returns {@link StopVoiceToneAnalysisTaskCommandOutput}
|
|
45
|
+
* @see {@link StopVoiceToneAnalysisTaskCommandInput} for command's `input` shape.
|
|
46
|
+
* @see {@link StopVoiceToneAnalysisTaskCommandOutput} for command's `response` shape.
|
|
47
|
+
* @see {@link ChimeSDKMediaPipelinesClientResolvedConfig | config} for ChimeSDKMediaPipelinesClient's `config` shape.
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link BadRequestException} (client fault)
|
|
50
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ConflictException} (client fault)
|
|
53
|
+
* <p>The request could not be processed because of conflict in the current state of the
|
|
54
|
+
* resource.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
57
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link NotFoundException} (client fault)
|
|
60
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
63
|
+
* <p>The service encountered an unexpected error.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
66
|
+
* <p>The service is currently unavailable.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ThrottledClientException} (client fault)
|
|
69
|
+
* <p>The client exceeded its request rate limit.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link UnauthorizedClientException} (client fault)
|
|
72
|
+
* <p>The client is not currently authorized to make the request.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ChimeSDKMediaPipelinesServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from ChimeSDKMediaPipelines service.</p>
|
|
76
|
+
*
|
|
77
|
+
*/
|
|
78
|
+
export declare class StopVoiceToneAnalysisTaskCommand extends $Command<StopVoiceToneAnalysisTaskCommandInput, StopVoiceToneAnalysisTaskCommandOutput, ChimeSDKMediaPipelinesClientResolvedConfig> {
|
|
79
|
+
readonly input: StopVoiceToneAnalysisTaskCommandInput;
|
|
80
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
constructor(input: StopVoiceToneAnalysisTaskCommandInput);
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopVoiceToneAnalysisTaskCommandInput, StopVoiceToneAnalysisTaskCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
private deserialize;
|
|
97
|
+
}
|
|
@@ -58,7 +58,7 @@ export interface UpdateMediaInsightsPipelineConfigurationCommandOutput extends U
|
|
|
58
58
|
* },
|
|
59
59
|
* Elements: [ // MediaInsightsPipelineConfigurationElements // required
|
|
60
60
|
* { // MediaInsightsPipelineConfigurationElement
|
|
61
|
-
* Type: "AmazonTranscribeCallAnalyticsProcessor" || "VoiceAnalyticsProcessor" || "AmazonTranscribeProcessor" || "KinesisDataStreamSink" || "LambdaFunctionSink" || "SqsQueueSink" || "SnsTopicSink" || "S3RecordingSink", // required
|
|
61
|
+
* Type: "AmazonTranscribeCallAnalyticsProcessor" || "VoiceAnalyticsProcessor" || "AmazonTranscribeProcessor" || "KinesisDataStreamSink" || "LambdaFunctionSink" || "SqsQueueSink" || "SnsTopicSink" || "S3RecordingSink" || "VoiceEnhancementSink", // required
|
|
62
62
|
* AmazonTranscribeCallAnalyticsProcessorConfiguration: { // AmazonTranscribeCallAnalyticsProcessorConfiguration
|
|
63
63
|
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR", // required
|
|
64
64
|
* VocabularyName: "STRING_VALUE",
|
|
@@ -120,6 +120,9 @@ export interface UpdateMediaInsightsPipelineConfigurationCommandOutput extends U
|
|
|
120
120
|
* SnsTopicSinkConfiguration: { // SnsTopicSinkConfiguration
|
|
121
121
|
* InsightsTarget: "STRING_VALUE",
|
|
122
122
|
* },
|
|
123
|
+
* VoiceEnhancementSinkConfiguration: { // VoiceEnhancementSinkConfiguration
|
|
124
|
+
* Disabled: true || false,
|
|
125
|
+
* },
|
|
123
126
|
* },
|
|
124
127
|
* ],
|
|
125
128
|
* };
|
|
@@ -155,7 +158,7 @@ export interface UpdateMediaInsightsPipelineConfigurationCommandOutput extends U
|
|
|
155
158
|
* // },
|
|
156
159
|
* // Elements: [ // MediaInsightsPipelineConfigurationElements
|
|
157
160
|
* // { // MediaInsightsPipelineConfigurationElement
|
|
158
|
-
* // Type: "AmazonTranscribeCallAnalyticsProcessor" || "VoiceAnalyticsProcessor" || "AmazonTranscribeProcessor" || "KinesisDataStreamSink" || "LambdaFunctionSink" || "SqsQueueSink" || "SnsTopicSink" || "S3RecordingSink", // required
|
|
161
|
+
* // Type: "AmazonTranscribeCallAnalyticsProcessor" || "VoiceAnalyticsProcessor" || "AmazonTranscribeProcessor" || "KinesisDataStreamSink" || "LambdaFunctionSink" || "SqsQueueSink" || "SnsTopicSink" || "S3RecordingSink" || "VoiceEnhancementSink", // required
|
|
159
162
|
* // AmazonTranscribeCallAnalyticsProcessorConfiguration: { // AmazonTranscribeCallAnalyticsProcessorConfiguration
|
|
160
163
|
* // LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR", // required
|
|
161
164
|
* // VocabularyName: "STRING_VALUE",
|
|
@@ -217,6 +220,9 @@ export interface UpdateMediaInsightsPipelineConfigurationCommandOutput extends U
|
|
|
217
220
|
* // SnsTopicSinkConfiguration: { // SnsTopicSinkConfiguration
|
|
218
221
|
* // InsightsTarget: "STRING_VALUE",
|
|
219
222
|
* // },
|
|
223
|
+
* // VoiceEnhancementSinkConfiguration: { // VoiceEnhancementSinkConfiguration
|
|
224
|
+
* // Disabled: true || false,
|
|
225
|
+
* // },
|
|
220
226
|
* // },
|
|
221
227
|
* // ],
|
|
222
228
|
* // MediaInsightsPipelineConfigurationId: "STRING_VALUE",
|
|
@@ -9,10 +9,16 @@ export * from "./DeleteMediaPipelineCommand";
|
|
|
9
9
|
export * from "./GetMediaCapturePipelineCommand";
|
|
10
10
|
export * from "./GetMediaInsightsPipelineConfigurationCommand";
|
|
11
11
|
export * from "./GetMediaPipelineCommand";
|
|
12
|
+
export * from "./GetSpeakerSearchTaskCommand";
|
|
13
|
+
export * from "./GetVoiceToneAnalysisTaskCommand";
|
|
12
14
|
export * from "./ListMediaCapturePipelinesCommand";
|
|
13
15
|
export * from "./ListMediaInsightsPipelineConfigurationsCommand";
|
|
14
16
|
export * from "./ListMediaPipelinesCommand";
|
|
15
17
|
export * from "./ListTagsForResourceCommand";
|
|
18
|
+
export * from "./StartSpeakerSearchTaskCommand";
|
|
19
|
+
export * from "./StartVoiceToneAnalysisTaskCommand";
|
|
20
|
+
export * from "./StopSpeakerSearchTaskCommand";
|
|
21
|
+
export * from "./StopVoiceToneAnalysisTaskCommand";
|
|
16
22
|
export * from "./TagResourceCommand";
|
|
17
23
|
export * from "./UntagResourceCommand";
|
|
18
24
|
export * from "./UpdateMediaInsightsPipelineConfigurationCommand";
|
|
@@ -644,7 +644,7 @@ export declare const VerticalTilePosition: {
|
|
|
644
644
|
export type VerticalTilePosition = (typeof VerticalTilePosition)[keyof typeof VerticalTilePosition];
|
|
645
645
|
/**
|
|
646
646
|
* @public
|
|
647
|
-
* <p>Defines the configuration settings for a
|
|
647
|
+
* <p>Defines the configuration settings for a vertical layout.</p>
|
|
648
648
|
*/
|
|
649
649
|
export interface VerticalLayoutConfiguration {
|
|
650
650
|
/**
|
|
@@ -1112,6 +1112,7 @@ export declare const MediaPipelineStatus: {
|
|
|
1112
1112
|
readonly Failed: "Failed";
|
|
1113
1113
|
readonly InProgress: "InProgress";
|
|
1114
1114
|
readonly Initializing: "Initializing";
|
|
1115
|
+
readonly NotStarted: "NotStarted";
|
|
1115
1116
|
readonly Paused: "Paused";
|
|
1116
1117
|
readonly Stopped: "Stopped";
|
|
1117
1118
|
readonly Stopping: "Stopping";
|
|
@@ -1529,7 +1530,7 @@ export interface FragmentSelector {
|
|
|
1529
1530
|
/**
|
|
1530
1531
|
* @public
|
|
1531
1532
|
* <p>The origin of the timestamps to use, <code>Server</code> or <code>Producer</code>. For more information, see
|
|
1532
|
-
* <a href="kinesisvideostreams/latest/dg/API_dataplane_StartSelector.html
|
|
1533
|
+
* <a href="https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_dataplane_StartSelector.html">StartSelectorType</a> in the <i>Amazon Kinesis Video Streams Developer Guide</i>.</p>
|
|
1533
1534
|
*/
|
|
1534
1535
|
FragmentSelectorType: FragmentSelectorType | string | undefined;
|
|
1535
1536
|
/**
|
|
@@ -1707,6 +1708,59 @@ export interface CreateMediaInsightsPipelineRequest {
|
|
|
1707
1708
|
*/
|
|
1708
1709
|
ClientRequestToken?: string;
|
|
1709
1710
|
}
|
|
1711
|
+
/**
|
|
1712
|
+
* @public
|
|
1713
|
+
* @enum
|
|
1714
|
+
*/
|
|
1715
|
+
export declare const MediaPipelineElementStatus: {
|
|
1716
|
+
readonly Failed: "Failed";
|
|
1717
|
+
readonly InProgress: "InProgress";
|
|
1718
|
+
readonly Initializing: "Initializing";
|
|
1719
|
+
readonly NotStarted: "NotStarted";
|
|
1720
|
+
readonly NotSupported: "NotSupported";
|
|
1721
|
+
readonly Paused: "Paused";
|
|
1722
|
+
readonly Stopped: "Stopped";
|
|
1723
|
+
readonly Stopping: "Stopping";
|
|
1724
|
+
};
|
|
1725
|
+
/**
|
|
1726
|
+
* @public
|
|
1727
|
+
*/
|
|
1728
|
+
export type MediaPipelineElementStatus = (typeof MediaPipelineElementStatus)[keyof typeof MediaPipelineElementStatus];
|
|
1729
|
+
/**
|
|
1730
|
+
* @public
|
|
1731
|
+
* @enum
|
|
1732
|
+
*/
|
|
1733
|
+
export declare const MediaInsightsPipelineConfigurationElementType: {
|
|
1734
|
+
readonly AMAZON_TRANSCRIBE_CALL_ANALYTICS_PROCESSOR: "AmazonTranscribeCallAnalyticsProcessor";
|
|
1735
|
+
readonly AMAZON_TRANSCRIBE_PROCESSOR: "AmazonTranscribeProcessor";
|
|
1736
|
+
readonly KINESIS_DATA_STREAM_SINK: "KinesisDataStreamSink";
|
|
1737
|
+
readonly LAMBDA_FUNCTION_SINK: "LambdaFunctionSink";
|
|
1738
|
+
readonly S3_RECORDING_SINK: "S3RecordingSink";
|
|
1739
|
+
readonly SNS_TOPIC_SINK: "SnsTopicSink";
|
|
1740
|
+
readonly SQS_QUEUE_SINK: "SqsQueueSink";
|
|
1741
|
+
readonly VOICE_ANALYTICS_PROCESSOR: "VoiceAnalyticsProcessor";
|
|
1742
|
+
readonly VOICE_ENHANCEMENT_SINK: "VoiceEnhancementSink";
|
|
1743
|
+
};
|
|
1744
|
+
/**
|
|
1745
|
+
* @public
|
|
1746
|
+
*/
|
|
1747
|
+
export type MediaInsightsPipelineConfigurationElementType = (typeof MediaInsightsPipelineConfigurationElementType)[keyof typeof MediaInsightsPipelineConfigurationElementType];
|
|
1748
|
+
/**
|
|
1749
|
+
* @public
|
|
1750
|
+
* <p>The status of the pipeline element.</p>
|
|
1751
|
+
*/
|
|
1752
|
+
export interface MediaInsightsPipelineElementStatus {
|
|
1753
|
+
/**
|
|
1754
|
+
* @public
|
|
1755
|
+
* <p>The type of status.</p>
|
|
1756
|
+
*/
|
|
1757
|
+
Type?: MediaInsightsPipelineConfigurationElementType | string;
|
|
1758
|
+
/**
|
|
1759
|
+
* @public
|
|
1760
|
+
* <p>The element's status.</p>
|
|
1761
|
+
*/
|
|
1762
|
+
Status?: MediaPipelineElementStatus | string;
|
|
1763
|
+
}
|
|
1710
1764
|
/**
|
|
1711
1765
|
* @public
|
|
1712
1766
|
* <p>A media pipeline that streams call analytics data.</p>
|
|
@@ -1757,6 +1811,11 @@ export interface MediaInsightsPipeline {
|
|
|
1757
1811
|
* <p>The time at which the media insights pipeline was created.</p>
|
|
1758
1812
|
*/
|
|
1759
1813
|
CreatedTimestamp?: Date;
|
|
1814
|
+
/**
|
|
1815
|
+
* @public
|
|
1816
|
+
* <p>The statuses that the elements in a media insights pipeline can have during data processing.</p>
|
|
1817
|
+
*/
|
|
1818
|
+
ElementStatuses?: MediaInsightsPipelineElementStatus[];
|
|
1760
1819
|
}
|
|
1761
1820
|
/**
|
|
1762
1821
|
* @public
|
|
@@ -1847,24 +1906,6 @@ export interface SqsQueueSinkConfiguration {
|
|
|
1847
1906
|
*/
|
|
1848
1907
|
InsightsTarget?: string;
|
|
1849
1908
|
}
|
|
1850
|
-
/**
|
|
1851
|
-
* @public
|
|
1852
|
-
* @enum
|
|
1853
|
-
*/
|
|
1854
|
-
export declare const MediaInsightsPipelineConfigurationElementType: {
|
|
1855
|
-
readonly AMAZON_TRANSCRIBE_CALL_ANALYTICS_PROCESSOR: "AmazonTranscribeCallAnalyticsProcessor";
|
|
1856
|
-
readonly AMAZON_TRANSCRIBE_PROCESSOR: "AmazonTranscribeProcessor";
|
|
1857
|
-
readonly KINESIS_DATA_STREAM_SINK: "KinesisDataStreamSink";
|
|
1858
|
-
readonly LAMBDA_FUNCTION_SINK: "LambdaFunctionSink";
|
|
1859
|
-
readonly S3_RECORDING_SINK: "S3RecordingSink";
|
|
1860
|
-
readonly SNS_TOPIC_SINK: "SnsTopicSink";
|
|
1861
|
-
readonly SQS_QUEUE_SINK: "SqsQueueSink";
|
|
1862
|
-
readonly VOICE_ANALYTICS_PROCESSOR: "VoiceAnalyticsProcessor";
|
|
1863
|
-
};
|
|
1864
|
-
/**
|
|
1865
|
-
* @public
|
|
1866
|
-
*/
|
|
1867
|
-
export type MediaInsightsPipelineConfigurationElementType = (typeof MediaInsightsPipelineConfigurationElementType)[keyof typeof MediaInsightsPipelineConfigurationElementType];
|
|
1868
1909
|
/**
|
|
1869
1910
|
* @public
|
|
1870
1911
|
* @enum
|
|
@@ -1893,6 +1934,17 @@ export interface VoiceAnalyticsProcessorConfiguration {
|
|
|
1893
1934
|
*/
|
|
1894
1935
|
VoiceToneAnalysisStatus?: VoiceAnalyticsConfigurationStatus | string;
|
|
1895
1936
|
}
|
|
1937
|
+
/**
|
|
1938
|
+
* @public
|
|
1939
|
+
* <p>A static structure that contains the configuration data for a <code>VoiceEnhancementSinkConfiguration</code> element.</p>
|
|
1940
|
+
*/
|
|
1941
|
+
export interface VoiceEnhancementSinkConfiguration {
|
|
1942
|
+
/**
|
|
1943
|
+
* @public
|
|
1944
|
+
* <p>Disables the <code>VoiceEnhancementSinkConfiguration</code> element.</p>
|
|
1945
|
+
*/
|
|
1946
|
+
Disabled?: boolean;
|
|
1947
|
+
}
|
|
1896
1948
|
/**
|
|
1897
1949
|
* @public
|
|
1898
1950
|
* <p>An element in a media insights pipeline configuration.</p>
|
|
@@ -1944,6 +1996,11 @@ export interface MediaInsightsPipelineConfigurationElement {
|
|
|
1944
1996
|
* <p>The configuration settings for an SNS topic sink in a media insights pipeline configuration element.</p>
|
|
1945
1997
|
*/
|
|
1946
1998
|
SnsTopicSinkConfiguration?: SnsTopicSinkConfiguration;
|
|
1999
|
+
/**
|
|
2000
|
+
* @public
|
|
2001
|
+
* <p>The configuration settings for voice enhancement sink in a media insights pipeline configuration element.</p>
|
|
2002
|
+
*/
|
|
2003
|
+
VoiceEnhancementSinkConfiguration?: VoiceEnhancementSinkConfiguration;
|
|
1947
2004
|
}
|
|
1948
2005
|
/**
|
|
1949
2006
|
* @public
|
|
@@ -2483,6 +2540,125 @@ export interface GetMediaPipelineResponse {
|
|
|
2483
2540
|
*/
|
|
2484
2541
|
MediaPipeline?: MediaPipeline;
|
|
2485
2542
|
}
|
|
2543
|
+
/**
|
|
2544
|
+
* @public
|
|
2545
|
+
*/
|
|
2546
|
+
export interface GetSpeakerSearchTaskRequest {
|
|
2547
|
+
/**
|
|
2548
|
+
* @public
|
|
2549
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2550
|
+
*/
|
|
2551
|
+
Identifier: string | undefined;
|
|
2552
|
+
/**
|
|
2553
|
+
* @public
|
|
2554
|
+
* <p>The ID of the speaker search task.</p>
|
|
2555
|
+
*/
|
|
2556
|
+
SpeakerSearchTaskId: string | undefined;
|
|
2557
|
+
}
|
|
2558
|
+
/**
|
|
2559
|
+
* @public
|
|
2560
|
+
* @enum
|
|
2561
|
+
*/
|
|
2562
|
+
export declare const MediaPipelineTaskStatus: {
|
|
2563
|
+
readonly Failed: "Failed";
|
|
2564
|
+
readonly InProgress: "InProgress";
|
|
2565
|
+
readonly Initializing: "Initializing";
|
|
2566
|
+
readonly NotStarted: "NotStarted";
|
|
2567
|
+
readonly Stopped: "Stopped";
|
|
2568
|
+
readonly Stopping: "Stopping";
|
|
2569
|
+
};
|
|
2570
|
+
/**
|
|
2571
|
+
* @public
|
|
2572
|
+
*/
|
|
2573
|
+
export type MediaPipelineTaskStatus = (typeof MediaPipelineTaskStatus)[keyof typeof MediaPipelineTaskStatus];
|
|
2574
|
+
/**
|
|
2575
|
+
* @public
|
|
2576
|
+
* <p>A representation of an asynchronous request to perform speaker search analysis on a
|
|
2577
|
+
* media insights pipeline.</p>
|
|
2578
|
+
*/
|
|
2579
|
+
export interface SpeakerSearchTask {
|
|
2580
|
+
/**
|
|
2581
|
+
* @public
|
|
2582
|
+
* <p>The speaker search task ID.</p>
|
|
2583
|
+
*/
|
|
2584
|
+
SpeakerSearchTaskId?: string;
|
|
2585
|
+
/**
|
|
2586
|
+
* @public
|
|
2587
|
+
* <p>The status of the speaker search task.</p>
|
|
2588
|
+
*/
|
|
2589
|
+
SpeakerSearchTaskStatus?: MediaPipelineTaskStatus | string;
|
|
2590
|
+
/**
|
|
2591
|
+
* @public
|
|
2592
|
+
* <p>The time at which a speaker search task was created.</p>
|
|
2593
|
+
*/
|
|
2594
|
+
CreatedTimestamp?: Date;
|
|
2595
|
+
/**
|
|
2596
|
+
* @public
|
|
2597
|
+
* <p>The time at which a speaker search task was updated.</p>
|
|
2598
|
+
*/
|
|
2599
|
+
UpdatedTimestamp?: Date;
|
|
2600
|
+
}
|
|
2601
|
+
/**
|
|
2602
|
+
* @public
|
|
2603
|
+
*/
|
|
2604
|
+
export interface GetSpeakerSearchTaskResponse {
|
|
2605
|
+
/**
|
|
2606
|
+
* @public
|
|
2607
|
+
* <p>The details of the speaker search task.</p>
|
|
2608
|
+
*/
|
|
2609
|
+
SpeakerSearchTask?: SpeakerSearchTask;
|
|
2610
|
+
}
|
|
2611
|
+
/**
|
|
2612
|
+
* @public
|
|
2613
|
+
*/
|
|
2614
|
+
export interface GetVoiceToneAnalysisTaskRequest {
|
|
2615
|
+
/**
|
|
2616
|
+
* @public
|
|
2617
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2618
|
+
*/
|
|
2619
|
+
Identifier: string | undefined;
|
|
2620
|
+
/**
|
|
2621
|
+
* @public
|
|
2622
|
+
* <p>The ID of the voice tone anlysis task.</p>
|
|
2623
|
+
*/
|
|
2624
|
+
VoiceToneAnalysisTaskId: string | undefined;
|
|
2625
|
+
}
|
|
2626
|
+
/**
|
|
2627
|
+
* @public
|
|
2628
|
+
* <p>A representation of an asynchronous request to perform voice tone analysis on a media insights pipeline.</p>
|
|
2629
|
+
*/
|
|
2630
|
+
export interface VoiceToneAnalysisTask {
|
|
2631
|
+
/**
|
|
2632
|
+
* @public
|
|
2633
|
+
* <p>The ID of the voice tone analysis task.</p>
|
|
2634
|
+
*/
|
|
2635
|
+
VoiceToneAnalysisTaskId?: string;
|
|
2636
|
+
/**
|
|
2637
|
+
* @public
|
|
2638
|
+
* <p>The status of a voice tone analysis task.</p>
|
|
2639
|
+
*/
|
|
2640
|
+
VoiceToneAnalysisTaskStatus?: MediaPipelineTaskStatus | string;
|
|
2641
|
+
/**
|
|
2642
|
+
* @public
|
|
2643
|
+
* <p>The time at which a voice tone analysis task was created.</p>
|
|
2644
|
+
*/
|
|
2645
|
+
CreatedTimestamp?: Date;
|
|
2646
|
+
/**
|
|
2647
|
+
* @public
|
|
2648
|
+
* <p>The time at which a voice tone analysis task was updated.</p>
|
|
2649
|
+
*/
|
|
2650
|
+
UpdatedTimestamp?: Date;
|
|
2651
|
+
}
|
|
2652
|
+
/**
|
|
2653
|
+
* @public
|
|
2654
|
+
*/
|
|
2655
|
+
export interface GetVoiceToneAnalysisTaskResponse {
|
|
2656
|
+
/**
|
|
2657
|
+
* @public
|
|
2658
|
+
* <p>The details of the voice tone analysis task.</p>
|
|
2659
|
+
*/
|
|
2660
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
2661
|
+
}
|
|
2486
2662
|
/**
|
|
2487
2663
|
* @public
|
|
2488
2664
|
*/
|
|
@@ -2646,6 +2822,140 @@ export interface ListTagsForResourceResponse {
|
|
|
2646
2822
|
*/
|
|
2647
2823
|
Tags?: Tag[];
|
|
2648
2824
|
}
|
|
2825
|
+
/**
|
|
2826
|
+
* @public
|
|
2827
|
+
* <p>The task configuration settings for the Kinesis video stream source.</p>
|
|
2828
|
+
*/
|
|
2829
|
+
export interface KinesisVideoStreamSourceTaskConfiguration {
|
|
2830
|
+
/**
|
|
2831
|
+
* @public
|
|
2832
|
+
* <p>The ARN of the stream.</p>
|
|
2833
|
+
*/
|
|
2834
|
+
StreamArn: string | undefined;
|
|
2835
|
+
/**
|
|
2836
|
+
* @public
|
|
2837
|
+
* <p>The channel ID.</p>
|
|
2838
|
+
*/
|
|
2839
|
+
ChannelId: number | undefined;
|
|
2840
|
+
/**
|
|
2841
|
+
* @public
|
|
2842
|
+
* <p>The unique identifier of the fragment to begin processing.</p>
|
|
2843
|
+
*/
|
|
2844
|
+
FragmentNumber?: string;
|
|
2845
|
+
}
|
|
2846
|
+
/**
|
|
2847
|
+
* @public
|
|
2848
|
+
*/
|
|
2849
|
+
export interface StartSpeakerSearchTaskRequest {
|
|
2850
|
+
/**
|
|
2851
|
+
* @public
|
|
2852
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2853
|
+
*/
|
|
2854
|
+
Identifier: string | undefined;
|
|
2855
|
+
/**
|
|
2856
|
+
* @public
|
|
2857
|
+
* <p>The ARN of the voice profile domain that will store the voice profile.</p>
|
|
2858
|
+
*/
|
|
2859
|
+
VoiceProfileDomainArn: string | undefined;
|
|
2860
|
+
/**
|
|
2861
|
+
* @public
|
|
2862
|
+
* <p>The task configuration for the Kinesis video stream source of the media insights
|
|
2863
|
+
* pipeline.</p>
|
|
2864
|
+
*/
|
|
2865
|
+
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
|
|
2866
|
+
/**
|
|
2867
|
+
* @public
|
|
2868
|
+
* <p>The unique identifier for the client request. Use a different token for different speaker search tasks.</p>
|
|
2869
|
+
*/
|
|
2870
|
+
ClientRequestToken?: string;
|
|
2871
|
+
}
|
|
2872
|
+
/**
|
|
2873
|
+
* @public
|
|
2874
|
+
*/
|
|
2875
|
+
export interface StartSpeakerSearchTaskResponse {
|
|
2876
|
+
/**
|
|
2877
|
+
* @public
|
|
2878
|
+
* <p>The details of the speaker search task.</p>
|
|
2879
|
+
*/
|
|
2880
|
+
SpeakerSearchTask?: SpeakerSearchTask;
|
|
2881
|
+
}
|
|
2882
|
+
/**
|
|
2883
|
+
* @public
|
|
2884
|
+
* @enum
|
|
2885
|
+
*/
|
|
2886
|
+
export declare const VoiceAnalyticsLanguageCode: {
|
|
2887
|
+
readonly EN_US: "en-US";
|
|
2888
|
+
};
|
|
2889
|
+
/**
|
|
2890
|
+
* @public
|
|
2891
|
+
*/
|
|
2892
|
+
export type VoiceAnalyticsLanguageCode = (typeof VoiceAnalyticsLanguageCode)[keyof typeof VoiceAnalyticsLanguageCode];
|
|
2893
|
+
/**
|
|
2894
|
+
* @public
|
|
2895
|
+
*/
|
|
2896
|
+
export interface StartVoiceToneAnalysisTaskRequest {
|
|
2897
|
+
/**
|
|
2898
|
+
* @public
|
|
2899
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2900
|
+
*/
|
|
2901
|
+
Identifier: string | undefined;
|
|
2902
|
+
/**
|
|
2903
|
+
* @public
|
|
2904
|
+
* <p>The language code.</p>
|
|
2905
|
+
*/
|
|
2906
|
+
LanguageCode: VoiceAnalyticsLanguageCode | string | undefined;
|
|
2907
|
+
/**
|
|
2908
|
+
* @public
|
|
2909
|
+
* <p>The task configuration for the Kinesis video stream source of the media insights
|
|
2910
|
+
* pipeline.</p>
|
|
2911
|
+
*/
|
|
2912
|
+
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
|
|
2913
|
+
/**
|
|
2914
|
+
* @public
|
|
2915
|
+
* <p>The unique identifier for the client request. Use a different token for different voice tone analysis tasks.</p>
|
|
2916
|
+
*/
|
|
2917
|
+
ClientRequestToken?: string;
|
|
2918
|
+
}
|
|
2919
|
+
/**
|
|
2920
|
+
* @public
|
|
2921
|
+
*/
|
|
2922
|
+
export interface StartVoiceToneAnalysisTaskResponse {
|
|
2923
|
+
/**
|
|
2924
|
+
* @public
|
|
2925
|
+
* <p>The details of the voice tone analysis task.</p>
|
|
2926
|
+
*/
|
|
2927
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
2928
|
+
}
|
|
2929
|
+
/**
|
|
2930
|
+
* @public
|
|
2931
|
+
*/
|
|
2932
|
+
export interface StopSpeakerSearchTaskRequest {
|
|
2933
|
+
/**
|
|
2934
|
+
* @public
|
|
2935
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2936
|
+
*/
|
|
2937
|
+
Identifier: string | undefined;
|
|
2938
|
+
/**
|
|
2939
|
+
* @public
|
|
2940
|
+
* <p>The speaker search task ID.</p>
|
|
2941
|
+
*/
|
|
2942
|
+
SpeakerSearchTaskId: string | undefined;
|
|
2943
|
+
}
|
|
2944
|
+
/**
|
|
2945
|
+
* @public
|
|
2946
|
+
*/
|
|
2947
|
+
export interface StopVoiceToneAnalysisTaskRequest {
|
|
2948
|
+
/**
|
|
2949
|
+
* @public
|
|
2950
|
+
* <p>The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.</p>
|
|
2951
|
+
*/
|
|
2952
|
+
Identifier: string | undefined;
|
|
2953
|
+
/**
|
|
2954
|
+
* @public
|
|
2955
|
+
* <p>The ID of the voice tone analysis task.</p>
|
|
2956
|
+
*/
|
|
2957
|
+
VoiceToneAnalysisTaskId: string | undefined;
|
|
2958
|
+
}
|
|
2649
2959
|
/**
|
|
2650
2960
|
* @public
|
|
2651
2961
|
*/
|
|
@@ -2904,6 +3214,14 @@ export declare const MediaInsightsPipelineConfigurationSummaryFilterSensitiveLog
|
|
|
2904
3214
|
* @internal
|
|
2905
3215
|
*/
|
|
2906
3216
|
export declare const ListMediaInsightsPipelineConfigurationsResponseFilterSensitiveLog: (obj: ListMediaInsightsPipelineConfigurationsResponse) => any;
|
|
3217
|
+
/**
|
|
3218
|
+
* @internal
|
|
3219
|
+
*/
|
|
3220
|
+
export declare const StartSpeakerSearchTaskRequestFilterSensitiveLog: (obj: StartSpeakerSearchTaskRequest) => any;
|
|
3221
|
+
/**
|
|
3222
|
+
* @internal
|
|
3223
|
+
*/
|
|
3224
|
+
export declare const StartVoiceToneAnalysisTaskRequestFilterSensitiveLog: (obj: StartVoiceToneAnalysisTaskRequest) => any;
|
|
2907
3225
|
/**
|
|
2908
3226
|
* @internal
|
|
2909
3227
|
*/
|