@aws-sdk/client-chime-sdk-media-pipelines 3.299.0 → 3.300.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-types/commands/CreateMediaCapturePipelineCommand.d.ts +48 -0
- package/dist-types/commands/CreateMediaConcatenationPipelineCommand.d.ts +50 -0
- package/dist-types/commands/CreateMediaInsightsPipelineCommand.d.ts +50 -0
- package/dist-types/commands/CreateMediaInsightsPipelineConfigurationCommand.d.ts +94 -0
- package/dist-types/commands/CreateMediaLiveConnectorPipelineCommand.d.ts +48 -0
- package/dist-types/commands/DeleteMediaCapturePipelineCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMediaInsightsPipelineConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMediaPipelineCommand.d.ts +3 -0
- package/dist-types/commands/GetMediaCapturePipelineCommand.d.ts +3 -0
- package/dist-types/commands/GetMediaInsightsPipelineConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/GetMediaPipelineCommand.d.ts +3 -0
- package/dist-types/commands/ListMediaCapturePipelinesCommand.d.ts +4 -0
- package/dist-types/commands/ListMediaInsightsPipelineConfigurationsCommand.d.ts +4 -0
- package/dist-types/commands/ListMediaPipelinesCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateMediaInsightsPipelineConfigurationCommand.d.ts +87 -0
- package/dist-types/commands/UpdateMediaInsightsPipelineStatusCommand.d.ts +4 -0
- package/package.json +8 -8
|
@@ -26,6 +26,54 @@ export interface CreateMediaCapturePipelineCommandOutput extends CreateMediaCapt
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, CreateMediaCapturePipelineCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, CreateMediaCapturePipelineCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* SourceType: "ChimeSdkMeeting", // required
|
|
31
|
+
* SourceArn: "STRING_VALUE", // required
|
|
32
|
+
* SinkType: "S3Bucket", // required
|
|
33
|
+
* SinkArn: "STRING_VALUE", // required
|
|
34
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
35
|
+
* ChimeSdkMeetingConfiguration: {
|
|
36
|
+
* SourceConfiguration: {
|
|
37
|
+
* SelectedVideoStreams: {
|
|
38
|
+
* AttendeeIds: [
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* ExternalUserIds: [
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* },
|
|
45
|
+
* },
|
|
46
|
+
* ArtifactsConfiguration: {
|
|
47
|
+
* Audio: {
|
|
48
|
+
* MuxType: "AudioOnly" || "AudioWithActiveSpeakerVideo" || "AudioWithCompositedVideo", // required
|
|
49
|
+
* },
|
|
50
|
+
* Video: {
|
|
51
|
+
* State: "Enabled" || "Disabled", // required
|
|
52
|
+
* MuxType: "VideoOnly",
|
|
53
|
+
* },
|
|
54
|
+
* Content: {
|
|
55
|
+
* State: "Enabled" || "Disabled", // required
|
|
56
|
+
* MuxType: "ContentOnly",
|
|
57
|
+
* },
|
|
58
|
+
* CompositedVideo: {
|
|
59
|
+
* Layout: "GridView",
|
|
60
|
+
* Resolution: "HD" || "FHD",
|
|
61
|
+
* GridViewConfiguration: {
|
|
62
|
+
* ContentShareLayout: "PresenterOnly" || "Horizontal" || "Vertical", // required
|
|
63
|
+
* PresenterOnlyConfiguration: {
|
|
64
|
+
* PresenterPosition: "TopLeft" || "TopRight" || "BottomLeft" || "BottomRight",
|
|
65
|
+
* },
|
|
66
|
+
* },
|
|
67
|
+
* },
|
|
68
|
+
* },
|
|
69
|
+
* },
|
|
70
|
+
* Tags: [
|
|
71
|
+
* {
|
|
72
|
+
* Key: "STRING_VALUE", // required
|
|
73
|
+
* Value: "STRING_VALUE", // required
|
|
74
|
+
* },
|
|
75
|
+
* ],
|
|
76
|
+
* };
|
|
29
77
|
* const command = new CreateMediaCapturePipelineCommand(input);
|
|
30
78
|
* const response = await client.send(command);
|
|
31
79
|
* ```
|
|
@@ -26,6 +26,56 @@ export interface CreateMediaConcatenationPipelineCommandOutput extends CreateMed
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, CreateMediaConcatenationPipelineCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, CreateMediaConcatenationPipelineCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Sources: [ // required
|
|
31
|
+
* {
|
|
32
|
+
* Type: "MediaCapturePipeline", // required
|
|
33
|
+
* MediaCapturePipelineSourceConfiguration: {
|
|
34
|
+
* MediaPipelineArn: "STRING_VALUE", // required
|
|
35
|
+
* ChimeSdkMeetingConfiguration: {
|
|
36
|
+
* ArtifactsConfiguration: {
|
|
37
|
+
* Audio: {
|
|
38
|
+
* State: "Enabled", // required
|
|
39
|
+
* },
|
|
40
|
+
* Video: {
|
|
41
|
+
* State: "Enabled" || "Disabled", // required
|
|
42
|
+
* },
|
|
43
|
+
* Content: {
|
|
44
|
+
* State: "Enabled" || "Disabled", // required
|
|
45
|
+
* },
|
|
46
|
+
* DataChannel: {
|
|
47
|
+
* State: "Enabled" || "Disabled", // required
|
|
48
|
+
* },
|
|
49
|
+
* TranscriptionMessages: {
|
|
50
|
+
* State: "Enabled" || "Disabled", // required
|
|
51
|
+
* },
|
|
52
|
+
* MeetingEvents: {
|
|
53
|
+
* State: "Enabled" || "Disabled", // required
|
|
54
|
+
* },
|
|
55
|
+
* CompositedVideo: {
|
|
56
|
+
* State: "Enabled" || "Disabled", // required
|
|
57
|
+
* },
|
|
58
|
+
* },
|
|
59
|
+
* },
|
|
60
|
+
* },
|
|
61
|
+
* },
|
|
62
|
+
* ],
|
|
63
|
+
* Sinks: [ // required
|
|
64
|
+
* {
|
|
65
|
+
* Type: "S3Bucket", // required
|
|
66
|
+
* S3BucketSinkConfiguration: {
|
|
67
|
+
* Destination: "STRING_VALUE", // required
|
|
68
|
+
* },
|
|
69
|
+
* },
|
|
70
|
+
* ],
|
|
71
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
72
|
+
* Tags: [
|
|
73
|
+
* {
|
|
74
|
+
* Key: "STRING_VALUE", // required
|
|
75
|
+
* Value: "STRING_VALUE", // required
|
|
76
|
+
* },
|
|
77
|
+
* ],
|
|
78
|
+
* };
|
|
29
79
|
* const command = new CreateMediaConcatenationPipelineCommand(input);
|
|
30
80
|
* const response = await client.send(command);
|
|
31
81
|
* ```
|
|
@@ -26,6 +26,56 @@ export interface CreateMediaInsightsPipelineCommandOutput extends CreateMediaIns
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, CreateMediaInsightsPipelineCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, CreateMediaInsightsPipelineCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MediaInsightsPipelineConfigurationArn: "STRING_VALUE", // required
|
|
31
|
+
* KinesisVideoStreamSourceRuntimeConfiguration: {
|
|
32
|
+
* Streams: [ // required
|
|
33
|
+
* {
|
|
34
|
+
* StreamArn: "STRING_VALUE", // required
|
|
35
|
+
* FragmentNumber: "STRING_VALUE",
|
|
36
|
+
* StreamChannelDefinition: {
|
|
37
|
+
* NumberOfChannels: Number("int"), // required
|
|
38
|
+
* ChannelDefinitions: [
|
|
39
|
+
* {
|
|
40
|
+
* ChannelId: Number("int"), // required
|
|
41
|
+
* ParticipantRole: "AGENT" || "CUSTOMER",
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* },
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
47
|
+
* MediaEncoding: "pcm", // required
|
|
48
|
+
* MediaSampleRate: Number("int"), // required
|
|
49
|
+
* },
|
|
50
|
+
* MediaInsightsRuntimeMetadata: {
|
|
51
|
+
* "<keys>": "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* KinesisVideoStreamRecordingSourceRuntimeConfiguration: {
|
|
54
|
+
* Streams: [ // required
|
|
55
|
+
* {
|
|
56
|
+
* StreamArn: "STRING_VALUE",
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* FragmentSelector: {
|
|
60
|
+
* FragmentSelectorType: "ProducerTimestamp" || "ServerTimestamp", // required
|
|
61
|
+
* TimestampRange: {
|
|
62
|
+
* StartTimestamp: new Date("TIMESTAMP"), // required
|
|
63
|
+
* EndTimestamp: new Date("TIMESTAMP"), // required
|
|
64
|
+
* },
|
|
65
|
+
* },
|
|
66
|
+
* },
|
|
67
|
+
* S3RecordingSinkRuntimeConfiguration: {
|
|
68
|
+
* Destination: "STRING_VALUE", // required
|
|
69
|
+
* RecordingFileFormat: "Wav" || "Opus", // required
|
|
70
|
+
* },
|
|
71
|
+
* Tags: [
|
|
72
|
+
* {
|
|
73
|
+
* Key: "STRING_VALUE", // required
|
|
74
|
+
* Value: "STRING_VALUE", // required
|
|
75
|
+
* },
|
|
76
|
+
* ],
|
|
77
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
78
|
+
* };
|
|
29
79
|
* const command = new CreateMediaInsightsPipelineCommand(input);
|
|
30
80
|
* const response = await client.send(command);
|
|
31
81
|
* ```
|
|
@@ -27,6 +27,100 @@ export interface CreateMediaInsightsPipelineConfigurationCommandOutput extends C
|
|
|
27
27
|
* import { ChimeSDKMediaPipelinesClient, CreateMediaInsightsPipelineConfigurationCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
28
28
|
* // const { ChimeSDKMediaPipelinesClient, CreateMediaInsightsPipelineConfigurationCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
29
29
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* MediaInsightsPipelineConfigurationName: "STRING_VALUE", // required
|
|
32
|
+
* ResourceAccessRoleArn: "STRING_VALUE", // required
|
|
33
|
+
* RealTimeAlertConfiguration: {
|
|
34
|
+
* Disabled: true || false,
|
|
35
|
+
* Rules: [
|
|
36
|
+
* {
|
|
37
|
+
* Type: "KeywordMatch" || "Sentiment" || "IssueDetection", // required
|
|
38
|
+
* KeywordMatchConfiguration: {
|
|
39
|
+
* RuleName: "STRING_VALUE", // required
|
|
40
|
+
* Keywords: [ // required
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* Negate: true || false,
|
|
44
|
+
* },
|
|
45
|
+
* SentimentConfiguration: {
|
|
46
|
+
* RuleName: "STRING_VALUE", // required
|
|
47
|
+
* SentimentType: "NEGATIVE", // required
|
|
48
|
+
* TimePeriod: Number("int"), // required
|
|
49
|
+
* },
|
|
50
|
+
* IssueDetectionConfiguration: {
|
|
51
|
+
* RuleName: "STRING_VALUE", // required
|
|
52
|
+
* },
|
|
53
|
+
* },
|
|
54
|
+
* ],
|
|
55
|
+
* },
|
|
56
|
+
* Elements: [ // required
|
|
57
|
+
* {
|
|
58
|
+
* Type: "AmazonTranscribeCallAnalyticsProcessor" || "VoiceAnalyticsProcessor" || "AmazonTranscribeProcessor" || "KinesisDataStreamSink" || "LambdaFunctionSink" || "SqsQueueSink" || "SnsTopicSink" || "S3RecordingSink", // required
|
|
59
|
+
* AmazonTranscribeCallAnalyticsProcessorConfiguration: {
|
|
60
|
+
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR", // required
|
|
61
|
+
* VocabularyName: "STRING_VALUE",
|
|
62
|
+
* VocabularyFilterName: "STRING_VALUE",
|
|
63
|
+
* VocabularyFilterMethod: "remove" || "mask" || "tag",
|
|
64
|
+
* LanguageModelName: "STRING_VALUE",
|
|
65
|
+
* EnablePartialResultsStabilization: true || false,
|
|
66
|
+
* PartialResultsStability: "high" || "medium" || "low",
|
|
67
|
+
* ContentIdentificationType: "PII",
|
|
68
|
+
* ContentRedactionType: "PII",
|
|
69
|
+
* PiiEntityTypes: "STRING_VALUE",
|
|
70
|
+
* FilterPartialResults: true || false,
|
|
71
|
+
* PostCallAnalyticsSettings: {
|
|
72
|
+
* OutputLocation: "STRING_VALUE", // required
|
|
73
|
+
* DataAccessRoleArn: "STRING_VALUE", // required
|
|
74
|
+
* ContentRedactionOutput: "redacted" || "redacted_and_unredacted",
|
|
75
|
+
* OutputEncryptionKMSKeyId: "STRING_VALUE",
|
|
76
|
+
* },
|
|
77
|
+
* CallAnalyticsStreamCategories: [
|
|
78
|
+
* "STRING_VALUE",
|
|
79
|
+
* ],
|
|
80
|
+
* },
|
|
81
|
+
* AmazonTranscribeProcessorConfiguration: {
|
|
82
|
+
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR", // required
|
|
83
|
+
* VocabularyName: "STRING_VALUE",
|
|
84
|
+
* VocabularyFilterName: "STRING_VALUE",
|
|
85
|
+
* VocabularyFilterMethod: "remove" || "mask" || "tag",
|
|
86
|
+
* ShowSpeakerLabel: true || false,
|
|
87
|
+
* EnablePartialResultsStabilization: true || false,
|
|
88
|
+
* PartialResultsStability: "high" || "medium" || "low",
|
|
89
|
+
* ContentIdentificationType: "PII",
|
|
90
|
+
* ContentRedactionType: "PII",
|
|
91
|
+
* PiiEntityTypes: "STRING_VALUE",
|
|
92
|
+
* LanguageModelName: "STRING_VALUE",
|
|
93
|
+
* FilterPartialResults: true || false,
|
|
94
|
+
* },
|
|
95
|
+
* KinesisDataStreamSinkConfiguration: {
|
|
96
|
+
* InsightsTarget: "STRING_VALUE",
|
|
97
|
+
* },
|
|
98
|
+
* S3RecordingSinkConfiguration: {
|
|
99
|
+
* Destination: "STRING_VALUE",
|
|
100
|
+
* },
|
|
101
|
+
* VoiceAnalyticsProcessorConfiguration: {
|
|
102
|
+
* SpeakerSearchStatus: "Enabled" || "Disabled",
|
|
103
|
+
* VoiceToneAnalysisStatus: "Enabled" || "Disabled",
|
|
104
|
+
* },
|
|
105
|
+
* LambdaFunctionSinkConfiguration: {
|
|
106
|
+
* InsightsTarget: "STRING_VALUE",
|
|
107
|
+
* },
|
|
108
|
+
* SqsQueueSinkConfiguration: {
|
|
109
|
+
* InsightsTarget: "STRING_VALUE",
|
|
110
|
+
* },
|
|
111
|
+
* SnsTopicSinkConfiguration: {
|
|
112
|
+
* InsightsTarget: "STRING_VALUE",
|
|
113
|
+
* },
|
|
114
|
+
* },
|
|
115
|
+
* ],
|
|
116
|
+
* Tags: [
|
|
117
|
+
* {
|
|
118
|
+
* Key: "STRING_VALUE", // required
|
|
119
|
+
* Value: "STRING_VALUE", // required
|
|
120
|
+
* },
|
|
121
|
+
* ],
|
|
122
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
123
|
+
* };
|
|
30
124
|
* const command = new CreateMediaInsightsPipelineConfigurationCommand(input);
|
|
31
125
|
* const response = await client.send(command);
|
|
32
126
|
* ```
|
|
@@ -26,6 +26,54 @@ export interface CreateMediaLiveConnectorPipelineCommandOutput extends CreateMed
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, CreateMediaLiveConnectorPipelineCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, CreateMediaLiveConnectorPipelineCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Sources: [ // required
|
|
31
|
+
* {
|
|
32
|
+
* SourceType: "ChimeSdkMeeting", // required
|
|
33
|
+
* ChimeSdkMeetingLiveConnectorConfiguration: {
|
|
34
|
+
* Arn: "STRING_VALUE", // required
|
|
35
|
+
* MuxType: "AudioWithCompositedVideo" || "AudioWithActiveSpeakerVideo", // required
|
|
36
|
+
* CompositedVideo: {
|
|
37
|
+
* Layout: "GridView",
|
|
38
|
+
* Resolution: "HD" || "FHD",
|
|
39
|
+
* GridViewConfiguration: {
|
|
40
|
+
* ContentShareLayout: "PresenterOnly" || "Horizontal" || "Vertical", // required
|
|
41
|
+
* PresenterOnlyConfiguration: {
|
|
42
|
+
* PresenterPosition: "TopLeft" || "TopRight" || "BottomLeft" || "BottomRight",
|
|
43
|
+
* },
|
|
44
|
+
* },
|
|
45
|
+
* },
|
|
46
|
+
* SourceConfiguration: {
|
|
47
|
+
* SelectedVideoStreams: {
|
|
48
|
+
* AttendeeIds: [
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* ExternalUserIds: [
|
|
52
|
+
* "STRING_VALUE",
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* },
|
|
56
|
+
* },
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* Sinks: [ // required
|
|
60
|
+
* {
|
|
61
|
+
* SinkType: "RTMP", // required
|
|
62
|
+
* RTMPConfiguration: {
|
|
63
|
+
* Url: "STRING_VALUE", // required
|
|
64
|
+
* AudioChannels: "Stereo" || "Mono",
|
|
65
|
+
* AudioSampleRate: "STRING_VALUE",
|
|
66
|
+
* },
|
|
67
|
+
* },
|
|
68
|
+
* ],
|
|
69
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
70
|
+
* Tags: [
|
|
71
|
+
* {
|
|
72
|
+
* Key: "STRING_VALUE", // required
|
|
73
|
+
* Value: "STRING_VALUE", // required
|
|
74
|
+
* },
|
|
75
|
+
* ],
|
|
76
|
+
* };
|
|
29
77
|
* const command = new CreateMediaLiveConnectorPipelineCommand(input);
|
|
30
78
|
* const response = await client.send(command);
|
|
31
79
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteMediaCapturePipelineCommandOutput extends __MetadataBeare
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, DeleteMediaCapturePipelineCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, DeleteMediaCapturePipelineCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MediaPipelineId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteMediaCapturePipelineCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteMediaInsightsPipelineConfigurationCommandOutput extends _
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, DeleteMediaInsightsPipelineConfigurationCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, DeleteMediaInsightsPipelineConfigurationCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Identifier: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteMediaInsightsPipelineConfigurationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteMediaPipelineCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, DeleteMediaPipelineCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, DeleteMediaPipelineCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MediaPipelineId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteMediaPipelineCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetMediaCapturePipelineCommandOutput extends GetMediaCapturePip
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, GetMediaCapturePipelineCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, GetMediaCapturePipelineCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MediaPipelineId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetMediaCapturePipelineCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetMediaInsightsPipelineConfigurationCommandOutput extends GetM
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, GetMediaInsightsPipelineConfigurationCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, GetMediaInsightsPipelineConfigurationCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Identifier: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetMediaInsightsPipelineConfigurationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetMediaPipelineCommandOutput extends GetMediaPipelineResponse,
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, GetMediaPipelineCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, GetMediaPipelineCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MediaPipelineId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetMediaPipelineCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListMediaCapturePipelinesCommandOutput extends ListMediaCapture
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, ListMediaCapturePipelinesCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, ListMediaCapturePipelinesCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* NextToken: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListMediaCapturePipelinesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListMediaInsightsPipelineConfigurationsCommandOutput extends Li
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, ListMediaInsightsPipelineConfigurationsCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, ListMediaInsightsPipelineConfigurationsCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* NextToken: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListMediaInsightsPipelineConfigurationsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListMediaPipelinesCommandOutput extends ListMediaPipelinesRespo
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, ListMediaPipelinesCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, ListMediaPipelinesCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* NextToken: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListMediaPipelinesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, ListTagsForResourceCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, ListTagsForResourceCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, TagResourceCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, TagResourceCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
+
* Tags: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* Key: "STRING_VALUE", // required
|
|
34
|
+
* Value: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
29
38
|
* const command = new TagResourceCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, UntagResourceCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, UntagResourceCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,93 @@ export interface UpdateMediaInsightsPipelineConfigurationCommandOutput extends U
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, UpdateMediaInsightsPipelineConfigurationCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, UpdateMediaInsightsPipelineConfigurationCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Identifier: "STRING_VALUE", // required
|
|
31
|
+
* ResourceAccessRoleArn: "STRING_VALUE", // required
|
|
32
|
+
* RealTimeAlertConfiguration: {
|
|
33
|
+
* Disabled: true || false,
|
|
34
|
+
* Rules: [
|
|
35
|
+
* {
|
|
36
|
+
* Type: "KeywordMatch" || "Sentiment" || "IssueDetection", // required
|
|
37
|
+
* KeywordMatchConfiguration: {
|
|
38
|
+
* RuleName: "STRING_VALUE", // required
|
|
39
|
+
* Keywords: [ // required
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* Negate: true || false,
|
|
43
|
+
* },
|
|
44
|
+
* SentimentConfiguration: {
|
|
45
|
+
* RuleName: "STRING_VALUE", // required
|
|
46
|
+
* SentimentType: "NEGATIVE", // required
|
|
47
|
+
* TimePeriod: Number("int"), // required
|
|
48
|
+
* },
|
|
49
|
+
* IssueDetectionConfiguration: {
|
|
50
|
+
* RuleName: "STRING_VALUE", // required
|
|
51
|
+
* },
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* Elements: [ // required
|
|
56
|
+
* {
|
|
57
|
+
* Type: "AmazonTranscribeCallAnalyticsProcessor" || "VoiceAnalyticsProcessor" || "AmazonTranscribeProcessor" || "KinesisDataStreamSink" || "LambdaFunctionSink" || "SqsQueueSink" || "SnsTopicSink" || "S3RecordingSink", // required
|
|
58
|
+
* AmazonTranscribeCallAnalyticsProcessorConfiguration: {
|
|
59
|
+
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR", // required
|
|
60
|
+
* VocabularyName: "STRING_VALUE",
|
|
61
|
+
* VocabularyFilterName: "STRING_VALUE",
|
|
62
|
+
* VocabularyFilterMethod: "remove" || "mask" || "tag",
|
|
63
|
+
* LanguageModelName: "STRING_VALUE",
|
|
64
|
+
* EnablePartialResultsStabilization: true || false,
|
|
65
|
+
* PartialResultsStability: "high" || "medium" || "low",
|
|
66
|
+
* ContentIdentificationType: "PII",
|
|
67
|
+
* ContentRedactionType: "PII",
|
|
68
|
+
* PiiEntityTypes: "STRING_VALUE",
|
|
69
|
+
* FilterPartialResults: true || false,
|
|
70
|
+
* PostCallAnalyticsSettings: {
|
|
71
|
+
* OutputLocation: "STRING_VALUE", // required
|
|
72
|
+
* DataAccessRoleArn: "STRING_VALUE", // required
|
|
73
|
+
* ContentRedactionOutput: "redacted" || "redacted_and_unredacted",
|
|
74
|
+
* OutputEncryptionKMSKeyId: "STRING_VALUE",
|
|
75
|
+
* },
|
|
76
|
+
* CallAnalyticsStreamCategories: [
|
|
77
|
+
* "STRING_VALUE",
|
|
78
|
+
* ],
|
|
79
|
+
* },
|
|
80
|
+
* AmazonTranscribeProcessorConfiguration: {
|
|
81
|
+
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR", // required
|
|
82
|
+
* VocabularyName: "STRING_VALUE",
|
|
83
|
+
* VocabularyFilterName: "STRING_VALUE",
|
|
84
|
+
* VocabularyFilterMethod: "remove" || "mask" || "tag",
|
|
85
|
+
* ShowSpeakerLabel: true || false,
|
|
86
|
+
* EnablePartialResultsStabilization: true || false,
|
|
87
|
+
* PartialResultsStability: "high" || "medium" || "low",
|
|
88
|
+
* ContentIdentificationType: "PII",
|
|
89
|
+
* ContentRedactionType: "PII",
|
|
90
|
+
* PiiEntityTypes: "STRING_VALUE",
|
|
91
|
+
* LanguageModelName: "STRING_VALUE",
|
|
92
|
+
* FilterPartialResults: true || false,
|
|
93
|
+
* },
|
|
94
|
+
* KinesisDataStreamSinkConfiguration: {
|
|
95
|
+
* InsightsTarget: "STRING_VALUE",
|
|
96
|
+
* },
|
|
97
|
+
* S3RecordingSinkConfiguration: {
|
|
98
|
+
* Destination: "STRING_VALUE",
|
|
99
|
+
* },
|
|
100
|
+
* VoiceAnalyticsProcessorConfiguration: {
|
|
101
|
+
* SpeakerSearchStatus: "Enabled" || "Disabled",
|
|
102
|
+
* VoiceToneAnalysisStatus: "Enabled" || "Disabled",
|
|
103
|
+
* },
|
|
104
|
+
* LambdaFunctionSinkConfiguration: {
|
|
105
|
+
* InsightsTarget: "STRING_VALUE",
|
|
106
|
+
* },
|
|
107
|
+
* SqsQueueSinkConfiguration: {
|
|
108
|
+
* InsightsTarget: "STRING_VALUE",
|
|
109
|
+
* },
|
|
110
|
+
* SnsTopicSinkConfiguration: {
|
|
111
|
+
* InsightsTarget: "STRING_VALUE",
|
|
112
|
+
* },
|
|
113
|
+
* },
|
|
114
|
+
* ],
|
|
115
|
+
* };
|
|
29
116
|
* const command = new UpdateMediaInsightsPipelineConfigurationCommand(input);
|
|
30
117
|
* const response = await client.send(command);
|
|
31
118
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface UpdateMediaInsightsPipelineStatusCommandOutput extends __Metada
|
|
|
26
26
|
* import { ChimeSDKMediaPipelinesClient, UpdateMediaInsightsPipelineStatusCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMediaPipelinesClient, UpdateMediaInsightsPipelineStatusCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMediaPipelinesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Identifier: "STRING_VALUE", // required
|
|
31
|
+
* UpdateStatus: "Pause" || "Resume", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new UpdateMediaInsightsPipelineStatusCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
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.300.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,9 +21,9 @@
|
|
|
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/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|