@aws-sdk/client-chime-sdk-media-pipelines 3.300.0 → 3.301.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 +15 -15
- package/dist-types/commands/CreateMediaConcatenationPipelineCommand.d.ts +18 -18
- package/dist-types/commands/CreateMediaInsightsPipelineCommand.d.ts +16 -16
- package/dist-types/commands/CreateMediaInsightsPipelineConfigurationCommand.d.ts +22 -22
- package/dist-types/commands/CreateMediaLiveConnectorPipelineCommand.d.ts +16 -16
- package/dist-types/commands/DeleteMediaCapturePipelineCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMediaInsightsPipelineConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMediaPipelineCommand.d.ts +1 -1
- package/dist-types/commands/GetMediaCapturePipelineCommand.d.ts +1 -1
- package/dist-types/commands/GetMediaInsightsPipelineConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetMediaPipelineCommand.d.ts +1 -1
- package/dist-types/commands/ListMediaCapturePipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListMediaInsightsPipelineConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListMediaPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMediaInsightsPipelineConfigurationCommand.d.ts +20 -20
- package/dist-types/commands/UpdateMediaInsightsPipelineStatusCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -26,49 +26,49 @@ 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 = {
|
|
29
|
+
* const input = { // CreateMediaCapturePipelineRequest
|
|
30
30
|
* SourceType: "ChimeSdkMeeting", // required
|
|
31
31
|
* SourceArn: "STRING_VALUE", // required
|
|
32
32
|
* SinkType: "S3Bucket", // required
|
|
33
33
|
* SinkArn: "STRING_VALUE", // required
|
|
34
34
|
* ClientRequestToken: "STRING_VALUE",
|
|
35
|
-
* ChimeSdkMeetingConfiguration: {
|
|
36
|
-
* SourceConfiguration: {
|
|
37
|
-
* SelectedVideoStreams: {
|
|
38
|
-
* AttendeeIds: [
|
|
35
|
+
* ChimeSdkMeetingConfiguration: { // ChimeSdkMeetingConfiguration
|
|
36
|
+
* SourceConfiguration: { // SourceConfiguration
|
|
37
|
+
* SelectedVideoStreams: { // SelectedVideoStreams
|
|
38
|
+
* AttendeeIds: [ // AttendeeIdList
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* ExternalUserIds: [
|
|
41
|
+
* ExternalUserIds: [ // ExternalUserIdList
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
45
45
|
* },
|
|
46
|
-
* ArtifactsConfiguration: {
|
|
47
|
-
* Audio: {
|
|
46
|
+
* ArtifactsConfiguration: { // ArtifactsConfiguration
|
|
47
|
+
* Audio: { // AudioArtifactsConfiguration
|
|
48
48
|
* MuxType: "AudioOnly" || "AudioWithActiveSpeakerVideo" || "AudioWithCompositedVideo", // required
|
|
49
49
|
* },
|
|
50
|
-
* Video: {
|
|
50
|
+
* Video: { // VideoArtifactsConfiguration
|
|
51
51
|
* State: "Enabled" || "Disabled", // required
|
|
52
52
|
* MuxType: "VideoOnly",
|
|
53
53
|
* },
|
|
54
|
-
* Content: {
|
|
54
|
+
* Content: { // ContentArtifactsConfiguration
|
|
55
55
|
* State: "Enabled" || "Disabled", // required
|
|
56
56
|
* MuxType: "ContentOnly",
|
|
57
57
|
* },
|
|
58
|
-
* CompositedVideo: {
|
|
58
|
+
* CompositedVideo: { // CompositedVideoArtifactsConfiguration
|
|
59
59
|
* Layout: "GridView",
|
|
60
60
|
* Resolution: "HD" || "FHD",
|
|
61
|
-
* GridViewConfiguration: {
|
|
61
|
+
* GridViewConfiguration: { // GridViewConfiguration
|
|
62
62
|
* ContentShareLayout: "PresenterOnly" || "Horizontal" || "Vertical", // required
|
|
63
|
-
* PresenterOnlyConfiguration: {
|
|
63
|
+
* PresenterOnlyConfiguration: { // PresenterOnlyConfiguration
|
|
64
64
|
* PresenterPosition: "TopLeft" || "TopRight" || "BottomLeft" || "BottomRight",
|
|
65
65
|
* },
|
|
66
66
|
* },
|
|
67
67
|
* },
|
|
68
68
|
* },
|
|
69
69
|
* },
|
|
70
|
-
* Tags: [
|
|
71
|
-
* {
|
|
70
|
+
* Tags: [ // TagList
|
|
71
|
+
* { // Tag
|
|
72
72
|
* Key: "STRING_VALUE", // required
|
|
73
73
|
* Value: "STRING_VALUE", // required
|
|
74
74
|
* },
|
|
@@ -26,33 +26,33 @@ 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
|
-
* {
|
|
29
|
+
* const input = { // CreateMediaConcatenationPipelineRequest
|
|
30
|
+
* Sources: [ // ConcatenationSourceList // required
|
|
31
|
+
* { // ConcatenationSource
|
|
32
32
|
* Type: "MediaCapturePipeline", // required
|
|
33
|
-
* MediaCapturePipelineSourceConfiguration: {
|
|
33
|
+
* MediaCapturePipelineSourceConfiguration: { // MediaCapturePipelineSourceConfiguration
|
|
34
34
|
* MediaPipelineArn: "STRING_VALUE", // required
|
|
35
|
-
* ChimeSdkMeetingConfiguration: {
|
|
36
|
-
* ArtifactsConfiguration: {
|
|
37
|
-
* Audio: {
|
|
35
|
+
* ChimeSdkMeetingConfiguration: { // ChimeSdkMeetingConcatenationConfiguration
|
|
36
|
+
* ArtifactsConfiguration: { // ArtifactsConcatenationConfiguration
|
|
37
|
+
* Audio: { // AudioConcatenationConfiguration
|
|
38
38
|
* State: "Enabled", // required
|
|
39
39
|
* },
|
|
40
|
-
* Video: {
|
|
40
|
+
* Video: { // VideoConcatenationConfiguration
|
|
41
41
|
* State: "Enabled" || "Disabled", // required
|
|
42
42
|
* },
|
|
43
|
-
* Content: {
|
|
43
|
+
* Content: { // ContentConcatenationConfiguration
|
|
44
44
|
* State: "Enabled" || "Disabled", // required
|
|
45
45
|
* },
|
|
46
|
-
* DataChannel: {
|
|
46
|
+
* DataChannel: { // DataChannelConcatenationConfiguration
|
|
47
47
|
* State: "Enabled" || "Disabled", // required
|
|
48
48
|
* },
|
|
49
|
-
* TranscriptionMessages: {
|
|
49
|
+
* TranscriptionMessages: { // TranscriptionMessagesConcatenationConfiguration
|
|
50
50
|
* State: "Enabled" || "Disabled", // required
|
|
51
51
|
* },
|
|
52
|
-
* MeetingEvents: {
|
|
52
|
+
* MeetingEvents: { // MeetingEventsConcatenationConfiguration
|
|
53
53
|
* State: "Enabled" || "Disabled", // required
|
|
54
54
|
* },
|
|
55
|
-
* CompositedVideo: {
|
|
55
|
+
* CompositedVideo: { // CompositedVideoConcatenationConfiguration
|
|
56
56
|
* State: "Enabled" || "Disabled", // required
|
|
57
57
|
* },
|
|
58
58
|
* },
|
|
@@ -60,17 +60,17 @@ export interface CreateMediaConcatenationPipelineCommandOutput extends CreateMed
|
|
|
60
60
|
* },
|
|
61
61
|
* },
|
|
62
62
|
* ],
|
|
63
|
-
* Sinks: [ // required
|
|
64
|
-
* {
|
|
63
|
+
* Sinks: [ // ConcatenationSinkList // required
|
|
64
|
+
* { // ConcatenationSink
|
|
65
65
|
* Type: "S3Bucket", // required
|
|
66
|
-
* S3BucketSinkConfiguration: {
|
|
66
|
+
* S3BucketSinkConfiguration: { // S3BucketSinkConfiguration
|
|
67
67
|
* Destination: "STRING_VALUE", // required
|
|
68
68
|
* },
|
|
69
69
|
* },
|
|
70
70
|
* ],
|
|
71
71
|
* ClientRequestToken: "STRING_VALUE",
|
|
72
|
-
* Tags: [
|
|
73
|
-
* {
|
|
72
|
+
* Tags: [ // TagList
|
|
73
|
+
* { // Tag
|
|
74
74
|
* Key: "STRING_VALUE", // required
|
|
75
75
|
* Value: "STRING_VALUE", // required
|
|
76
76
|
* },
|
|
@@ -26,17 +26,17 @@ 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 = {
|
|
29
|
+
* const input = { // CreateMediaInsightsPipelineRequest
|
|
30
30
|
* MediaInsightsPipelineConfigurationArn: "STRING_VALUE", // required
|
|
31
|
-
* KinesisVideoStreamSourceRuntimeConfiguration: {
|
|
32
|
-
* Streams: [ // required
|
|
33
|
-
* {
|
|
31
|
+
* KinesisVideoStreamSourceRuntimeConfiguration: { // KinesisVideoStreamSourceRuntimeConfiguration
|
|
32
|
+
* Streams: [ // Streams // required
|
|
33
|
+
* { // StreamConfiguration
|
|
34
34
|
* StreamArn: "STRING_VALUE", // required
|
|
35
35
|
* FragmentNumber: "STRING_VALUE",
|
|
36
|
-
* StreamChannelDefinition: {
|
|
36
|
+
* StreamChannelDefinition: { // StreamChannelDefinition
|
|
37
37
|
* NumberOfChannels: Number("int"), // required
|
|
38
|
-
* ChannelDefinitions: [
|
|
39
|
-
* {
|
|
38
|
+
* ChannelDefinitions: [ // ChannelDefinitions
|
|
39
|
+
* { // ChannelDefinition
|
|
40
40
|
* ChannelId: Number("int"), // required
|
|
41
41
|
* ParticipantRole: "AGENT" || "CUSTOMER",
|
|
42
42
|
* },
|
|
@@ -47,29 +47,29 @@ export interface CreateMediaInsightsPipelineCommandOutput extends CreateMediaIns
|
|
|
47
47
|
* MediaEncoding: "pcm", // required
|
|
48
48
|
* MediaSampleRate: Number("int"), // required
|
|
49
49
|
* },
|
|
50
|
-
* MediaInsightsRuntimeMetadata: {
|
|
50
|
+
* MediaInsightsRuntimeMetadata: { // MediaInsightsRuntimeMetadata
|
|
51
51
|
* "<keys>": "STRING_VALUE",
|
|
52
52
|
* },
|
|
53
|
-
* KinesisVideoStreamRecordingSourceRuntimeConfiguration: {
|
|
54
|
-
* Streams: [ // required
|
|
55
|
-
* {
|
|
53
|
+
* KinesisVideoStreamRecordingSourceRuntimeConfiguration: { // KinesisVideoStreamRecordingSourceRuntimeConfiguration
|
|
54
|
+
* Streams: [ // RecordingStreamList // required
|
|
55
|
+
* { // RecordingStreamConfiguration
|
|
56
56
|
* StreamArn: "STRING_VALUE",
|
|
57
57
|
* },
|
|
58
58
|
* ],
|
|
59
|
-
* FragmentSelector: {
|
|
59
|
+
* FragmentSelector: { // FragmentSelector
|
|
60
60
|
* FragmentSelectorType: "ProducerTimestamp" || "ServerTimestamp", // required
|
|
61
|
-
* TimestampRange: {
|
|
61
|
+
* TimestampRange: { // TimestampRange
|
|
62
62
|
* StartTimestamp: new Date("TIMESTAMP"), // required
|
|
63
63
|
* EndTimestamp: new Date("TIMESTAMP"), // required
|
|
64
64
|
* },
|
|
65
65
|
* },
|
|
66
66
|
* },
|
|
67
|
-
* S3RecordingSinkRuntimeConfiguration: {
|
|
67
|
+
* S3RecordingSinkRuntimeConfiguration: { // S3RecordingSinkRuntimeConfiguration
|
|
68
68
|
* Destination: "STRING_VALUE", // required
|
|
69
69
|
* RecordingFileFormat: "Wav" || "Opus", // required
|
|
70
70
|
* },
|
|
71
|
-
* Tags: [
|
|
72
|
-
* {
|
|
71
|
+
* Tags: [ // TagList
|
|
72
|
+
* { // Tag
|
|
73
73
|
* Key: "STRING_VALUE", // required
|
|
74
74
|
* Value: "STRING_VALUE", // required
|
|
75
75
|
* },
|
|
@@ -27,36 +27,36 @@ 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 = {
|
|
30
|
+
* const input = { // CreateMediaInsightsPipelineConfigurationRequest
|
|
31
31
|
* MediaInsightsPipelineConfigurationName: "STRING_VALUE", // required
|
|
32
32
|
* ResourceAccessRoleArn: "STRING_VALUE", // required
|
|
33
|
-
* RealTimeAlertConfiguration: {
|
|
33
|
+
* RealTimeAlertConfiguration: { // RealTimeAlertConfiguration
|
|
34
34
|
* Disabled: true || false,
|
|
35
|
-
* Rules: [
|
|
36
|
-
* {
|
|
35
|
+
* Rules: [ // RealTimeAlertRuleList
|
|
36
|
+
* { // RealTimeAlertRule
|
|
37
37
|
* Type: "KeywordMatch" || "Sentiment" || "IssueDetection", // required
|
|
38
|
-
* KeywordMatchConfiguration: {
|
|
38
|
+
* KeywordMatchConfiguration: { // KeywordMatchConfiguration
|
|
39
39
|
* RuleName: "STRING_VALUE", // required
|
|
40
|
-
* Keywords: [ // required
|
|
40
|
+
* Keywords: [ // KeywordMatchWordList // required
|
|
41
41
|
* "STRING_VALUE",
|
|
42
42
|
* ],
|
|
43
43
|
* Negate: true || false,
|
|
44
44
|
* },
|
|
45
|
-
* SentimentConfiguration: {
|
|
45
|
+
* SentimentConfiguration: { // SentimentConfiguration
|
|
46
46
|
* RuleName: "STRING_VALUE", // required
|
|
47
47
|
* SentimentType: "NEGATIVE", // required
|
|
48
48
|
* TimePeriod: Number("int"), // required
|
|
49
49
|
* },
|
|
50
|
-
* IssueDetectionConfiguration: {
|
|
50
|
+
* IssueDetectionConfiguration: { // IssueDetectionConfiguration
|
|
51
51
|
* RuleName: "STRING_VALUE", // required
|
|
52
52
|
* },
|
|
53
53
|
* },
|
|
54
54
|
* ],
|
|
55
55
|
* },
|
|
56
|
-
* Elements: [ // required
|
|
57
|
-
* {
|
|
56
|
+
* Elements: [ // MediaInsightsPipelineConfigurationElements // required
|
|
57
|
+
* { // MediaInsightsPipelineConfigurationElement
|
|
58
58
|
* Type: "AmazonTranscribeCallAnalyticsProcessor" || "VoiceAnalyticsProcessor" || "AmazonTranscribeProcessor" || "KinesisDataStreamSink" || "LambdaFunctionSink" || "SqsQueueSink" || "SnsTopicSink" || "S3RecordingSink", // required
|
|
59
|
-
* AmazonTranscribeCallAnalyticsProcessorConfiguration: {
|
|
59
|
+
* AmazonTranscribeCallAnalyticsProcessorConfiguration: { // AmazonTranscribeCallAnalyticsProcessorConfiguration
|
|
60
60
|
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR", // required
|
|
61
61
|
* VocabularyName: "STRING_VALUE",
|
|
62
62
|
* VocabularyFilterName: "STRING_VALUE",
|
|
@@ -68,17 +68,17 @@ export interface CreateMediaInsightsPipelineConfigurationCommandOutput extends C
|
|
|
68
68
|
* ContentRedactionType: "PII",
|
|
69
69
|
* PiiEntityTypes: "STRING_VALUE",
|
|
70
70
|
* FilterPartialResults: true || false,
|
|
71
|
-
* PostCallAnalyticsSettings: {
|
|
71
|
+
* PostCallAnalyticsSettings: { // PostCallAnalyticsSettings
|
|
72
72
|
* OutputLocation: "STRING_VALUE", // required
|
|
73
73
|
* DataAccessRoleArn: "STRING_VALUE", // required
|
|
74
74
|
* ContentRedactionOutput: "redacted" || "redacted_and_unredacted",
|
|
75
75
|
* OutputEncryptionKMSKeyId: "STRING_VALUE",
|
|
76
76
|
* },
|
|
77
|
-
* CallAnalyticsStreamCategories: [
|
|
77
|
+
* CallAnalyticsStreamCategories: [ // CategoryNameList
|
|
78
78
|
* "STRING_VALUE",
|
|
79
79
|
* ],
|
|
80
80
|
* },
|
|
81
|
-
* AmazonTranscribeProcessorConfiguration: {
|
|
81
|
+
* AmazonTranscribeProcessorConfiguration: { // AmazonTranscribeProcessorConfiguration
|
|
82
82
|
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR", // required
|
|
83
83
|
* VocabularyName: "STRING_VALUE",
|
|
84
84
|
* VocabularyFilterName: "STRING_VALUE",
|
|
@@ -92,29 +92,29 @@ export interface CreateMediaInsightsPipelineConfigurationCommandOutput extends C
|
|
|
92
92
|
* LanguageModelName: "STRING_VALUE",
|
|
93
93
|
* FilterPartialResults: true || false,
|
|
94
94
|
* },
|
|
95
|
-
* KinesisDataStreamSinkConfiguration: {
|
|
95
|
+
* KinesisDataStreamSinkConfiguration: { // KinesisDataStreamSinkConfiguration
|
|
96
96
|
* InsightsTarget: "STRING_VALUE",
|
|
97
97
|
* },
|
|
98
|
-
* S3RecordingSinkConfiguration: {
|
|
98
|
+
* S3RecordingSinkConfiguration: { // S3RecordingSinkConfiguration
|
|
99
99
|
* Destination: "STRING_VALUE",
|
|
100
100
|
* },
|
|
101
|
-
* VoiceAnalyticsProcessorConfiguration: {
|
|
101
|
+
* VoiceAnalyticsProcessorConfiguration: { // VoiceAnalyticsProcessorConfiguration
|
|
102
102
|
* SpeakerSearchStatus: "Enabled" || "Disabled",
|
|
103
103
|
* VoiceToneAnalysisStatus: "Enabled" || "Disabled",
|
|
104
104
|
* },
|
|
105
|
-
* LambdaFunctionSinkConfiguration: {
|
|
105
|
+
* LambdaFunctionSinkConfiguration: { // LambdaFunctionSinkConfiguration
|
|
106
106
|
* InsightsTarget: "STRING_VALUE",
|
|
107
107
|
* },
|
|
108
|
-
* SqsQueueSinkConfiguration: {
|
|
108
|
+
* SqsQueueSinkConfiguration: { // SqsQueueSinkConfiguration
|
|
109
109
|
* InsightsTarget: "STRING_VALUE",
|
|
110
110
|
* },
|
|
111
|
-
* SnsTopicSinkConfiguration: {
|
|
111
|
+
* SnsTopicSinkConfiguration: { // SnsTopicSinkConfiguration
|
|
112
112
|
* InsightsTarget: "STRING_VALUE",
|
|
113
113
|
* },
|
|
114
114
|
* },
|
|
115
115
|
* ],
|
|
116
|
-
* Tags: [
|
|
117
|
-
* {
|
|
116
|
+
* Tags: [ // TagList
|
|
117
|
+
* { // Tag
|
|
118
118
|
* Key: "STRING_VALUE", // required
|
|
119
119
|
* Value: "STRING_VALUE", // required
|
|
120
120
|
* },
|
|
@@ -26,29 +26,29 @@ 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
|
-
* {
|
|
29
|
+
* const input = { // CreateMediaLiveConnectorPipelineRequest
|
|
30
|
+
* Sources: [ // LiveConnectorSourceList // required
|
|
31
|
+
* { // LiveConnectorSourceConfiguration
|
|
32
32
|
* SourceType: "ChimeSdkMeeting", // required
|
|
33
|
-
* ChimeSdkMeetingLiveConnectorConfiguration: {
|
|
33
|
+
* ChimeSdkMeetingLiveConnectorConfiguration: { // ChimeSdkMeetingLiveConnectorConfiguration
|
|
34
34
|
* Arn: "STRING_VALUE", // required
|
|
35
35
|
* MuxType: "AudioWithCompositedVideo" || "AudioWithActiveSpeakerVideo", // required
|
|
36
|
-
* CompositedVideo: {
|
|
36
|
+
* CompositedVideo: { // CompositedVideoArtifactsConfiguration
|
|
37
37
|
* Layout: "GridView",
|
|
38
38
|
* Resolution: "HD" || "FHD",
|
|
39
|
-
* GridViewConfiguration: {
|
|
39
|
+
* GridViewConfiguration: { // GridViewConfiguration
|
|
40
40
|
* ContentShareLayout: "PresenterOnly" || "Horizontal" || "Vertical", // required
|
|
41
|
-
* PresenterOnlyConfiguration: {
|
|
41
|
+
* PresenterOnlyConfiguration: { // PresenterOnlyConfiguration
|
|
42
42
|
* PresenterPosition: "TopLeft" || "TopRight" || "BottomLeft" || "BottomRight",
|
|
43
43
|
* },
|
|
44
44
|
* },
|
|
45
45
|
* },
|
|
46
|
-
* SourceConfiguration: {
|
|
47
|
-
* SelectedVideoStreams: {
|
|
48
|
-
* AttendeeIds: [
|
|
46
|
+
* SourceConfiguration: { // SourceConfiguration
|
|
47
|
+
* SelectedVideoStreams: { // SelectedVideoStreams
|
|
48
|
+
* AttendeeIds: [ // AttendeeIdList
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
|
-
* ExternalUserIds: [
|
|
51
|
+
* ExternalUserIds: [ // ExternalUserIdList
|
|
52
52
|
* "STRING_VALUE",
|
|
53
53
|
* ],
|
|
54
54
|
* },
|
|
@@ -56,10 +56,10 @@ export interface CreateMediaLiveConnectorPipelineCommandOutput extends CreateMed
|
|
|
56
56
|
* },
|
|
57
57
|
* },
|
|
58
58
|
* ],
|
|
59
|
-
* Sinks: [ // required
|
|
60
|
-
* {
|
|
59
|
+
* Sinks: [ // LiveConnectorSinkList // required
|
|
60
|
+
* { // LiveConnectorSinkConfiguration
|
|
61
61
|
* SinkType: "RTMP", // required
|
|
62
|
-
* RTMPConfiguration: {
|
|
62
|
+
* RTMPConfiguration: { // LiveConnectorRTMPConfiguration
|
|
63
63
|
* Url: "STRING_VALUE", // required
|
|
64
64
|
* AudioChannels: "Stereo" || "Mono",
|
|
65
65
|
* AudioSampleRate: "STRING_VALUE",
|
|
@@ -67,8 +67,8 @@ export interface CreateMediaLiveConnectorPipelineCommandOutput extends CreateMed
|
|
|
67
67
|
* },
|
|
68
68
|
* ],
|
|
69
69
|
* ClientRequestToken: "STRING_VALUE",
|
|
70
|
-
* Tags: [
|
|
71
|
-
* {
|
|
70
|
+
* Tags: [ // TagList
|
|
71
|
+
* { // Tag
|
|
72
72
|
* Key: "STRING_VALUE", // required
|
|
73
73
|
* Value: "STRING_VALUE", // required
|
|
74
74
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteMediaCapturePipelineRequest
|
|
30
30
|
* MediaPipelineId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteMediaCapturePipelineCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteMediaInsightsPipelineConfigurationRequest
|
|
30
30
|
* Identifier: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteMediaInsightsPipelineConfigurationCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteMediaPipelineRequest
|
|
30
30
|
* MediaPipelineId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteMediaPipelineCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetMediaCapturePipelineRequest
|
|
30
30
|
* MediaPipelineId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetMediaCapturePipelineCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetMediaInsightsPipelineConfigurationRequest
|
|
30
30
|
* Identifier: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetMediaInsightsPipelineConfigurationCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetMediaPipelineRequest
|
|
30
30
|
* MediaPipelineId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetMediaPipelineCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListMediaCapturePipelinesRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListMediaInsightsPipelineConfigurationsRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListMediaPipelinesRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,10 +26,10 @@ 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 = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
-
* Tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* Tags: [ // TagList // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* Key: "STRING_VALUE", // required
|
|
34
34
|
* Value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,36 +26,36 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateMediaInsightsPipelineConfigurationRequest
|
|
30
30
|
* Identifier: "STRING_VALUE", // required
|
|
31
31
|
* ResourceAccessRoleArn: "STRING_VALUE", // required
|
|
32
|
-
* RealTimeAlertConfiguration: {
|
|
32
|
+
* RealTimeAlertConfiguration: { // RealTimeAlertConfiguration
|
|
33
33
|
* Disabled: true || false,
|
|
34
|
-
* Rules: [
|
|
35
|
-
* {
|
|
34
|
+
* Rules: [ // RealTimeAlertRuleList
|
|
35
|
+
* { // RealTimeAlertRule
|
|
36
36
|
* Type: "KeywordMatch" || "Sentiment" || "IssueDetection", // required
|
|
37
|
-
* KeywordMatchConfiguration: {
|
|
37
|
+
* KeywordMatchConfiguration: { // KeywordMatchConfiguration
|
|
38
38
|
* RuleName: "STRING_VALUE", // required
|
|
39
|
-
* Keywords: [ // required
|
|
39
|
+
* Keywords: [ // KeywordMatchWordList // required
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* Negate: true || false,
|
|
43
43
|
* },
|
|
44
|
-
* SentimentConfiguration: {
|
|
44
|
+
* SentimentConfiguration: { // SentimentConfiguration
|
|
45
45
|
* RuleName: "STRING_VALUE", // required
|
|
46
46
|
* SentimentType: "NEGATIVE", // required
|
|
47
47
|
* TimePeriod: Number("int"), // required
|
|
48
48
|
* },
|
|
49
|
-
* IssueDetectionConfiguration: {
|
|
49
|
+
* IssueDetectionConfiguration: { // IssueDetectionConfiguration
|
|
50
50
|
* RuleName: "STRING_VALUE", // required
|
|
51
51
|
* },
|
|
52
52
|
* },
|
|
53
53
|
* ],
|
|
54
54
|
* },
|
|
55
|
-
* Elements: [ // required
|
|
56
|
-
* {
|
|
55
|
+
* Elements: [ // MediaInsightsPipelineConfigurationElements // required
|
|
56
|
+
* { // MediaInsightsPipelineConfigurationElement
|
|
57
57
|
* Type: "AmazonTranscribeCallAnalyticsProcessor" || "VoiceAnalyticsProcessor" || "AmazonTranscribeProcessor" || "KinesisDataStreamSink" || "LambdaFunctionSink" || "SqsQueueSink" || "SnsTopicSink" || "S3RecordingSink", // required
|
|
58
|
-
* AmazonTranscribeCallAnalyticsProcessorConfiguration: {
|
|
58
|
+
* AmazonTranscribeCallAnalyticsProcessorConfiguration: { // AmazonTranscribeCallAnalyticsProcessorConfiguration
|
|
59
59
|
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR", // required
|
|
60
60
|
* VocabularyName: "STRING_VALUE",
|
|
61
61
|
* VocabularyFilterName: "STRING_VALUE",
|
|
@@ -67,17 +67,17 @@ export interface UpdateMediaInsightsPipelineConfigurationCommandOutput extends U
|
|
|
67
67
|
* ContentRedactionType: "PII",
|
|
68
68
|
* PiiEntityTypes: "STRING_VALUE",
|
|
69
69
|
* FilterPartialResults: true || false,
|
|
70
|
-
* PostCallAnalyticsSettings: {
|
|
70
|
+
* PostCallAnalyticsSettings: { // PostCallAnalyticsSettings
|
|
71
71
|
* OutputLocation: "STRING_VALUE", // required
|
|
72
72
|
* DataAccessRoleArn: "STRING_VALUE", // required
|
|
73
73
|
* ContentRedactionOutput: "redacted" || "redacted_and_unredacted",
|
|
74
74
|
* OutputEncryptionKMSKeyId: "STRING_VALUE",
|
|
75
75
|
* },
|
|
76
|
-
* CallAnalyticsStreamCategories: [
|
|
76
|
+
* CallAnalyticsStreamCategories: [ // CategoryNameList
|
|
77
77
|
* "STRING_VALUE",
|
|
78
78
|
* ],
|
|
79
79
|
* },
|
|
80
|
-
* AmazonTranscribeProcessorConfiguration: {
|
|
80
|
+
* AmazonTranscribeProcessorConfiguration: { // AmazonTranscribeProcessorConfiguration
|
|
81
81
|
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR", // required
|
|
82
82
|
* VocabularyName: "STRING_VALUE",
|
|
83
83
|
* VocabularyFilterName: "STRING_VALUE",
|
|
@@ -91,23 +91,23 @@ export interface UpdateMediaInsightsPipelineConfigurationCommandOutput extends U
|
|
|
91
91
|
* LanguageModelName: "STRING_VALUE",
|
|
92
92
|
* FilterPartialResults: true || false,
|
|
93
93
|
* },
|
|
94
|
-
* KinesisDataStreamSinkConfiguration: {
|
|
94
|
+
* KinesisDataStreamSinkConfiguration: { // KinesisDataStreamSinkConfiguration
|
|
95
95
|
* InsightsTarget: "STRING_VALUE",
|
|
96
96
|
* },
|
|
97
|
-
* S3RecordingSinkConfiguration: {
|
|
97
|
+
* S3RecordingSinkConfiguration: { // S3RecordingSinkConfiguration
|
|
98
98
|
* Destination: "STRING_VALUE",
|
|
99
99
|
* },
|
|
100
|
-
* VoiceAnalyticsProcessorConfiguration: {
|
|
100
|
+
* VoiceAnalyticsProcessorConfiguration: { // VoiceAnalyticsProcessorConfiguration
|
|
101
101
|
* SpeakerSearchStatus: "Enabled" || "Disabled",
|
|
102
102
|
* VoiceToneAnalysisStatus: "Enabled" || "Disabled",
|
|
103
103
|
* },
|
|
104
|
-
* LambdaFunctionSinkConfiguration: {
|
|
104
|
+
* LambdaFunctionSinkConfiguration: { // LambdaFunctionSinkConfiguration
|
|
105
105
|
* InsightsTarget: "STRING_VALUE",
|
|
106
106
|
* },
|
|
107
|
-
* SqsQueueSinkConfiguration: {
|
|
107
|
+
* SqsQueueSinkConfiguration: { // SqsQueueSinkConfiguration
|
|
108
108
|
* InsightsTarget: "STRING_VALUE",
|
|
109
109
|
* },
|
|
110
|
-
* SnsTopicSinkConfiguration: {
|
|
110
|
+
* SnsTopicSinkConfiguration: { // SnsTopicSinkConfiguration
|
|
111
111
|
* InsightsTarget: "STRING_VALUE",
|
|
112
112
|
* },
|
|
113
113
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateMediaInsightsPipelineStatusRequest
|
|
30
30
|
* Identifier: "STRING_VALUE", // required
|
|
31
31
|
* UpdateStatus: "Pause" || "Resume", // required
|
|
32
32
|
* };
|
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.301.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.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",
|