@aws-sdk/client-chime-sdk-media-pipelines 3.404.0 → 3.408.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/models/models_0.js +23 -1
- package/dist-cjs/protocols/Aws_restJson1.js +478 -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/models/models_0.js +20 -0
- package/dist-es/protocols/Aws_restJson1.js +465 -0
- package/dist-types/ChimeSDKMediaPipelines.d.ts +42 -0
- package/dist-types/ChimeSDKMediaPipelinesClient.d.ts +8 -2
- package/dist-types/commands/DeleteMediaPipelineCommand.d.ts +4 -0
- 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/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +263 -2
- 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 +78 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +15 -15
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ChimeSDKMediaPipelinesClient";
|
|
14
|
+
import {
|
|
15
|
+
StartSpeakerSearchTaskRequest,
|
|
16
|
+
StartSpeakerSearchTaskResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartSpeakerSearchTaskCommandInput
|
|
20
|
+
extends StartSpeakerSearchTaskRequest {}
|
|
21
|
+
export interface StartSpeakerSearchTaskCommandOutput
|
|
22
|
+
extends StartSpeakerSearchTaskResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class StartSpeakerSearchTaskCommand extends $Command<
|
|
25
|
+
StartSpeakerSearchTaskCommandInput,
|
|
26
|
+
StartSpeakerSearchTaskCommandOutput,
|
|
27
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: StartSpeakerSearchTaskCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: StartSpeakerSearchTaskCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
StartSpeakerSearchTaskCommandInput,
|
|
38
|
+
StartSpeakerSearchTaskCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ChimeSDKMediaPipelinesClient";
|
|
14
|
+
import {
|
|
15
|
+
StartVoiceToneAnalysisTaskRequest,
|
|
16
|
+
StartVoiceToneAnalysisTaskResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartVoiceToneAnalysisTaskCommandInput
|
|
20
|
+
extends StartVoiceToneAnalysisTaskRequest {}
|
|
21
|
+
export interface StartVoiceToneAnalysisTaskCommandOutput
|
|
22
|
+
extends StartVoiceToneAnalysisTaskResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class StartVoiceToneAnalysisTaskCommand extends $Command<
|
|
25
|
+
StartVoiceToneAnalysisTaskCommandInput,
|
|
26
|
+
StartVoiceToneAnalysisTaskCommandOutput,
|
|
27
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: StartVoiceToneAnalysisTaskCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: StartVoiceToneAnalysisTaskCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
StartVoiceToneAnalysisTaskCommandInput,
|
|
38
|
+
StartVoiceToneAnalysisTaskCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ChimeSDKMediaPipelinesClient";
|
|
14
|
+
import { StopSpeakerSearchTaskRequest } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface StopSpeakerSearchTaskCommandInput
|
|
17
|
+
extends StopSpeakerSearchTaskRequest {}
|
|
18
|
+
export interface StopSpeakerSearchTaskCommandOutput extends __MetadataBearer {}
|
|
19
|
+
export declare class StopSpeakerSearchTaskCommand extends $Command<
|
|
20
|
+
StopSpeakerSearchTaskCommandInput,
|
|
21
|
+
StopSpeakerSearchTaskCommandOutput,
|
|
22
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StopSpeakerSearchTaskCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: StopSpeakerSearchTaskCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
StopSpeakerSearchTaskCommandInput,
|
|
33
|
+
StopSpeakerSearchTaskCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ChimeSDKMediaPipelinesClient";
|
|
14
|
+
import { StopVoiceToneAnalysisTaskRequest } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface StopVoiceToneAnalysisTaskCommandInput
|
|
17
|
+
extends StopVoiceToneAnalysisTaskRequest {}
|
|
18
|
+
export interface StopVoiceToneAnalysisTaskCommandOutput
|
|
19
|
+
extends __MetadataBearer {}
|
|
20
|
+
export declare class StopVoiceToneAnalysisTaskCommand extends $Command<
|
|
21
|
+
StopVoiceToneAnalysisTaskCommandInput,
|
|
22
|
+
StopVoiceToneAnalysisTaskCommandOutput,
|
|
23
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: StopVoiceToneAnalysisTaskCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: StopVoiceToneAnalysisTaskCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<
|
|
33
|
+
StopVoiceToneAnalysisTaskCommandInput,
|
|
34
|
+
StopVoiceToneAnalysisTaskCommandOutput
|
|
35
|
+
>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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";
|
|
@@ -778,6 +778,42 @@ export interface MediaPipeline {
|
|
|
778
778
|
export interface GetMediaPipelineResponse {
|
|
779
779
|
MediaPipeline?: MediaPipeline;
|
|
780
780
|
}
|
|
781
|
+
export interface GetSpeakerSearchTaskRequest {
|
|
782
|
+
Identifier: string | undefined;
|
|
783
|
+
SpeakerSearchTaskId: string | undefined;
|
|
784
|
+
}
|
|
785
|
+
export declare const MediaPipelineTaskStatus: {
|
|
786
|
+
readonly Failed: "Failed";
|
|
787
|
+
readonly InProgress: "InProgress";
|
|
788
|
+
readonly Initializing: "Initializing";
|
|
789
|
+
readonly NotStarted: "NotStarted";
|
|
790
|
+
readonly Stopped: "Stopped";
|
|
791
|
+
readonly Stopping: "Stopping";
|
|
792
|
+
};
|
|
793
|
+
export type MediaPipelineTaskStatus =
|
|
794
|
+
(typeof MediaPipelineTaskStatus)[keyof typeof MediaPipelineTaskStatus];
|
|
795
|
+
export interface SpeakerSearchTask {
|
|
796
|
+
SpeakerSearchTaskId?: string;
|
|
797
|
+
SpeakerSearchTaskStatus?: MediaPipelineTaskStatus | string;
|
|
798
|
+
CreatedTimestamp?: Date;
|
|
799
|
+
UpdatedTimestamp?: Date;
|
|
800
|
+
}
|
|
801
|
+
export interface GetSpeakerSearchTaskResponse {
|
|
802
|
+
SpeakerSearchTask?: SpeakerSearchTask;
|
|
803
|
+
}
|
|
804
|
+
export interface GetVoiceToneAnalysisTaskRequest {
|
|
805
|
+
Identifier: string | undefined;
|
|
806
|
+
VoiceToneAnalysisTaskId: string | undefined;
|
|
807
|
+
}
|
|
808
|
+
export interface VoiceToneAnalysisTask {
|
|
809
|
+
VoiceToneAnalysisTaskId?: string;
|
|
810
|
+
VoiceToneAnalysisTaskStatus?: MediaPipelineTaskStatus | string;
|
|
811
|
+
CreatedTimestamp?: Date;
|
|
812
|
+
UpdatedTimestamp?: Date;
|
|
813
|
+
}
|
|
814
|
+
export interface GetVoiceToneAnalysisTaskResponse {
|
|
815
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
816
|
+
}
|
|
781
817
|
export interface ListMediaCapturePipelinesRequest {
|
|
782
818
|
NextToken?: string;
|
|
783
819
|
MaxResults?: number;
|
|
@@ -821,6 +857,42 @@ export interface ListTagsForResourceRequest {
|
|
|
821
857
|
export interface ListTagsForResourceResponse {
|
|
822
858
|
Tags?: Tag[];
|
|
823
859
|
}
|
|
860
|
+
export interface KinesisVideoStreamSourceTaskConfiguration {
|
|
861
|
+
StreamArn: string | undefined;
|
|
862
|
+
ChannelId: number | undefined;
|
|
863
|
+
FragmentNumber?: string;
|
|
864
|
+
}
|
|
865
|
+
export interface StartSpeakerSearchTaskRequest {
|
|
866
|
+
Identifier: string | undefined;
|
|
867
|
+
VoiceProfileDomainArn: string | undefined;
|
|
868
|
+
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
|
|
869
|
+
ClientRequestToken?: string;
|
|
870
|
+
}
|
|
871
|
+
export interface StartSpeakerSearchTaskResponse {
|
|
872
|
+
SpeakerSearchTask?: SpeakerSearchTask;
|
|
873
|
+
}
|
|
874
|
+
export declare const VoiceAnalyticsLanguageCode: {
|
|
875
|
+
readonly EN_US: "en-US";
|
|
876
|
+
};
|
|
877
|
+
export type VoiceAnalyticsLanguageCode =
|
|
878
|
+
(typeof VoiceAnalyticsLanguageCode)[keyof typeof VoiceAnalyticsLanguageCode];
|
|
879
|
+
export interface StartVoiceToneAnalysisTaskRequest {
|
|
880
|
+
Identifier: string | undefined;
|
|
881
|
+
LanguageCode: VoiceAnalyticsLanguageCode | string | undefined;
|
|
882
|
+
KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
|
|
883
|
+
ClientRequestToken?: string;
|
|
884
|
+
}
|
|
885
|
+
export interface StartVoiceToneAnalysisTaskResponse {
|
|
886
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
887
|
+
}
|
|
888
|
+
export interface StopSpeakerSearchTaskRequest {
|
|
889
|
+
Identifier: string | undefined;
|
|
890
|
+
SpeakerSearchTaskId: string | undefined;
|
|
891
|
+
}
|
|
892
|
+
export interface StopVoiceToneAnalysisTaskRequest {
|
|
893
|
+
Identifier: string | undefined;
|
|
894
|
+
VoiceToneAnalysisTaskId: string | undefined;
|
|
895
|
+
}
|
|
824
896
|
export interface TagResourceRequest {
|
|
825
897
|
ResourceARN: string | undefined;
|
|
826
898
|
Tags: Tag[] | undefined;
|
|
@@ -967,6 +1039,12 @@ export declare const MediaInsightsPipelineConfigurationSummaryFilterSensitiveLog
|
|
|
967
1039
|
export declare const ListMediaInsightsPipelineConfigurationsResponseFilterSensitiveLog: (
|
|
968
1040
|
obj: ListMediaInsightsPipelineConfigurationsResponse
|
|
969
1041
|
) => any;
|
|
1042
|
+
export declare const StartSpeakerSearchTaskRequestFilterSensitiveLog: (
|
|
1043
|
+
obj: StartSpeakerSearchTaskRequest
|
|
1044
|
+
) => any;
|
|
1045
|
+
export declare const StartVoiceToneAnalysisTaskRequestFilterSensitiveLog: (
|
|
1046
|
+
obj: StartVoiceToneAnalysisTaskRequest
|
|
1047
|
+
) => any;
|
|
970
1048
|
export declare const UpdateMediaInsightsPipelineConfigurationRequestFilterSensitiveLog: (
|
|
971
1049
|
obj: UpdateMediaInsightsPipelineConfigurationRequest
|
|
972
1050
|
) => any;
|
|
@@ -47,6 +47,14 @@ import {
|
|
|
47
47
|
GetMediaPipelineCommandInput,
|
|
48
48
|
GetMediaPipelineCommandOutput,
|
|
49
49
|
} from "../commands/GetMediaPipelineCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetSpeakerSearchTaskCommandInput,
|
|
52
|
+
GetSpeakerSearchTaskCommandOutput,
|
|
53
|
+
} from "../commands/GetSpeakerSearchTaskCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetVoiceToneAnalysisTaskCommandInput,
|
|
56
|
+
GetVoiceToneAnalysisTaskCommandOutput,
|
|
57
|
+
} from "../commands/GetVoiceToneAnalysisTaskCommand";
|
|
50
58
|
import {
|
|
51
59
|
ListMediaCapturePipelinesCommandInput,
|
|
52
60
|
ListMediaCapturePipelinesCommandOutput,
|
|
@@ -63,6 +71,22 @@ import {
|
|
|
63
71
|
ListTagsForResourceCommandInput,
|
|
64
72
|
ListTagsForResourceCommandOutput,
|
|
65
73
|
} from "../commands/ListTagsForResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
StartSpeakerSearchTaskCommandInput,
|
|
76
|
+
StartSpeakerSearchTaskCommandOutput,
|
|
77
|
+
} from "../commands/StartSpeakerSearchTaskCommand";
|
|
78
|
+
import {
|
|
79
|
+
StartVoiceToneAnalysisTaskCommandInput,
|
|
80
|
+
StartVoiceToneAnalysisTaskCommandOutput,
|
|
81
|
+
} from "../commands/StartVoiceToneAnalysisTaskCommand";
|
|
82
|
+
import {
|
|
83
|
+
StopSpeakerSearchTaskCommandInput,
|
|
84
|
+
StopSpeakerSearchTaskCommandOutput,
|
|
85
|
+
} from "../commands/StopSpeakerSearchTaskCommand";
|
|
86
|
+
import {
|
|
87
|
+
StopVoiceToneAnalysisTaskCommandInput,
|
|
88
|
+
StopVoiceToneAnalysisTaskCommandOutput,
|
|
89
|
+
} from "../commands/StopVoiceToneAnalysisTaskCommand";
|
|
66
90
|
import {
|
|
67
91
|
TagResourceCommandInput,
|
|
68
92
|
TagResourceCommandOutput,
|
|
@@ -123,6 +147,14 @@ export declare const se_GetMediaPipelineCommand: (
|
|
|
123
147
|
input: GetMediaPipelineCommandInput,
|
|
124
148
|
context: __SerdeContext
|
|
125
149
|
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_GetSpeakerSearchTaskCommand: (
|
|
151
|
+
input: GetSpeakerSearchTaskCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const se_GetVoiceToneAnalysisTaskCommand: (
|
|
155
|
+
input: GetVoiceToneAnalysisTaskCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
126
158
|
export declare const se_ListMediaCapturePipelinesCommand: (
|
|
127
159
|
input: ListMediaCapturePipelinesCommandInput,
|
|
128
160
|
context: __SerdeContext
|
|
@@ -139,6 +171,22 @@ export declare const se_ListTagsForResourceCommand: (
|
|
|
139
171
|
input: ListTagsForResourceCommandInput,
|
|
140
172
|
context: __SerdeContext
|
|
141
173
|
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_StartSpeakerSearchTaskCommand: (
|
|
175
|
+
input: StartSpeakerSearchTaskCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_StartVoiceToneAnalysisTaskCommand: (
|
|
179
|
+
input: StartVoiceToneAnalysisTaskCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const se_StopSpeakerSearchTaskCommand: (
|
|
183
|
+
input: StopSpeakerSearchTaskCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const se_StopVoiceToneAnalysisTaskCommand: (
|
|
187
|
+
input: StopVoiceToneAnalysisTaskCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
142
190
|
export declare const se_TagResourceCommand: (
|
|
143
191
|
input: TagResourceCommandInput,
|
|
144
192
|
context: __SerdeContext
|
|
@@ -199,6 +247,14 @@ export declare const de_GetMediaPipelineCommand: (
|
|
|
199
247
|
output: __HttpResponse,
|
|
200
248
|
context: __SerdeContext
|
|
201
249
|
) => Promise<GetMediaPipelineCommandOutput>;
|
|
250
|
+
export declare const de_GetSpeakerSearchTaskCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<GetSpeakerSearchTaskCommandOutput>;
|
|
254
|
+
export declare const de_GetVoiceToneAnalysisTaskCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<GetVoiceToneAnalysisTaskCommandOutput>;
|
|
202
258
|
export declare const de_ListMediaCapturePipelinesCommand: (
|
|
203
259
|
output: __HttpResponse,
|
|
204
260
|
context: __SerdeContext
|
|
@@ -215,6 +271,22 @@ export declare const de_ListTagsForResourceCommand: (
|
|
|
215
271
|
output: __HttpResponse,
|
|
216
272
|
context: __SerdeContext
|
|
217
273
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
274
|
+
export declare const de_StartSpeakerSearchTaskCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<StartSpeakerSearchTaskCommandOutput>;
|
|
278
|
+
export declare const de_StartVoiceToneAnalysisTaskCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<StartVoiceToneAnalysisTaskCommandOutput>;
|
|
282
|
+
export declare const de_StopSpeakerSearchTaskCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<StopSpeakerSearchTaskCommandOutput>;
|
|
286
|
+
export declare const de_StopVoiceToneAnalysisTaskCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<StopVoiceToneAnalysisTaskCommandOutput>;
|
|
218
290
|
export declare const de_TagResourceCommand: (
|
|
219
291
|
output: __HttpResponse,
|
|
220
292
|
context: __SerdeContext
|
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.
|
|
4
|
+
"version": "3.408.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",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.408.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.408.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.408.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.408.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.408.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.408.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.408.0",
|
|
31
|
+
"@aws-sdk/types": "3.408.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.408.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.408.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.408.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^2.0.5",
|
|
37
37
|
"@smithy/hash-node": "^2.0.5",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@smithy/middleware-retry": "^2.0.5",
|
|
42
42
|
"@smithy/middleware-serde": "^2.0.5",
|
|
43
43
|
"@smithy/middleware-stack": "^2.0.0",
|
|
44
|
-
"@smithy/node-config-provider": "^2.0.
|
|
44
|
+
"@smithy/node-config-provider": "^2.0.6",
|
|
45
45
|
"@smithy/node-http-handler": "^2.0.5",
|
|
46
46
|
"@smithy/protocol-http": "^2.0.5",
|
|
47
47
|
"@smithy/smithy-client": "^2.0.5",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"@smithy/util-base64": "^2.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^2.0.6",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^2.0.6",
|
|
55
55
|
"@smithy/util-retry": "^2.0.0",
|
|
56
56
|
"@smithy/util-utf8": "^2.0.0",
|
|
57
57
|
"tslib": "^2.5.0",
|