@aws-sdk/client-chime-sdk-meetings 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/BatchCreateAttendeeCommand.d.ts +4 -4
- package/dist-types/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +4 -4
- package/dist-types/commands/CreateAttendeeCommand.d.ts +2 -2
- package/dist-types/commands/CreateMeetingCommand.d.ts +7 -7
- package/dist-types/commands/CreateMeetingWithAttendeesCommand.d.ts +10 -10
- package/dist-types/commands/DeleteAttendeeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMeetingCommand.d.ts +1 -1
- package/dist-types/commands/GetAttendeeCommand.d.ts +1 -1
- package/dist-types/commands/GetMeetingCommand.d.ts +1 -1
- package/dist-types/commands/ListAttendeesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartMeetingTranscriptionCommand.d.ts +4 -4
- package/dist-types/commands/StopMeetingTranscriptionCommand.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/UpdateAttendeeCapabilitiesCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -27,12 +27,12 @@ export interface BatchCreateAttendeeCommandOutput extends BatchCreateAttendeeRes
|
|
|
27
27
|
* import { ChimeSDKMeetingsClient, BatchCreateAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
28
28
|
* // const { ChimeSDKMeetingsClient, BatchCreateAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
29
29
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // BatchCreateAttendeeRequest
|
|
31
31
|
* MeetingId: "STRING_VALUE", // required
|
|
32
|
-
* Attendees: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* Attendees: [ // CreateAttendeeRequestItemList // required
|
|
33
|
+
* { // CreateAttendeeRequestItem
|
|
34
34
|
* ExternalUserId: "STRING_VALUE", // required
|
|
35
|
-
* Capabilities: {
|
|
35
|
+
* Capabilities: { // AttendeeCapabilities
|
|
36
36
|
* Audio: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
37
37
|
* Video: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
38
38
|
* Content: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
@@ -46,14 +46,14 @@ export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __Me
|
|
|
46
46
|
* import { ChimeSDKMeetingsClient, BatchUpdateAttendeeCapabilitiesExceptCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
47
47
|
* // const { ChimeSDKMeetingsClient, BatchUpdateAttendeeCapabilitiesExceptCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
48
48
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
49
|
-
* const input = {
|
|
49
|
+
* const input = { // BatchUpdateAttendeeCapabilitiesExceptRequest
|
|
50
50
|
* MeetingId: "STRING_VALUE", // required
|
|
51
|
-
* ExcludedAttendeeIds: [ // required
|
|
52
|
-
* {
|
|
51
|
+
* ExcludedAttendeeIds: [ // AttendeeIdsList // required
|
|
52
|
+
* { // AttendeeIdItem
|
|
53
53
|
* AttendeeId: "STRING_VALUE", // required
|
|
54
54
|
* },
|
|
55
55
|
* ],
|
|
56
|
-
* Capabilities: {
|
|
56
|
+
* Capabilities: { // AttendeeCapabilities
|
|
57
57
|
* Audio: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
58
58
|
* Video: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
59
59
|
* Content: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
@@ -31,10 +31,10 @@ export interface CreateAttendeeCommandOutput extends CreateAttendeeResponse, __M
|
|
|
31
31
|
* import { ChimeSDKMeetingsClient, CreateAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
32
32
|
* // const { ChimeSDKMeetingsClient, CreateAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
33
33
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // CreateAttendeeRequest
|
|
35
35
|
* MeetingId: "STRING_VALUE", // required
|
|
36
36
|
* ExternalUserId: "STRING_VALUE", // required
|
|
37
|
-
* Capabilities: {
|
|
37
|
+
* Capabilities: { // AttendeeCapabilities
|
|
38
38
|
* Audio: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
39
39
|
* Video: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
40
40
|
* Content: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
@@ -32,27 +32,27 @@ export interface CreateMeetingCommandOutput extends CreateMeetingResponse, __Met
|
|
|
32
32
|
* import { ChimeSDKMeetingsClient, CreateMeetingCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
33
33
|
* // const { ChimeSDKMeetingsClient, CreateMeetingCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
34
34
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // CreateMeetingRequest
|
|
36
36
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
37
37
|
* MediaRegion: "STRING_VALUE", // required
|
|
38
38
|
* MeetingHostId: "STRING_VALUE",
|
|
39
39
|
* ExternalMeetingId: "STRING_VALUE", // required
|
|
40
|
-
* NotificationsConfiguration: {
|
|
40
|
+
* NotificationsConfiguration: { // NotificationsConfiguration
|
|
41
41
|
* LambdaFunctionArn: "STRING_VALUE",
|
|
42
42
|
* SnsTopicArn: "STRING_VALUE",
|
|
43
43
|
* SqsQueueArn: "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
|
-
* MeetingFeatures: {
|
|
46
|
-
* Audio: {
|
|
45
|
+
* MeetingFeatures: { // MeetingFeaturesConfiguration
|
|
46
|
+
* Audio: { // AudioFeatures
|
|
47
47
|
* EchoReduction: "AVAILABLE" || "UNAVAILABLE",
|
|
48
48
|
* },
|
|
49
49
|
* },
|
|
50
50
|
* PrimaryMeetingId: "STRING_VALUE",
|
|
51
|
-
* TenantIds: [
|
|
51
|
+
* TenantIds: [ // TenantIdList
|
|
52
52
|
* "STRING_VALUE",
|
|
53
53
|
* ],
|
|
54
|
-
* Tags: [
|
|
55
|
-
* {
|
|
54
|
+
* Tags: [ // TagList
|
|
55
|
+
* { // Tag
|
|
56
56
|
* Key: "STRING_VALUE", // required
|
|
57
57
|
* Value: "STRING_VALUE", // required
|
|
58
58
|
* },
|
|
@@ -32,25 +32,25 @@ export interface CreateMeetingWithAttendeesCommandOutput extends CreateMeetingWi
|
|
|
32
32
|
* import { ChimeSDKMeetingsClient, CreateMeetingWithAttendeesCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
33
33
|
* // const { ChimeSDKMeetingsClient, CreateMeetingWithAttendeesCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
34
34
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // CreateMeetingWithAttendeesRequest
|
|
36
36
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
37
37
|
* MediaRegion: "STRING_VALUE", // required
|
|
38
38
|
* MeetingHostId: "STRING_VALUE",
|
|
39
39
|
* ExternalMeetingId: "STRING_VALUE", // required
|
|
40
|
-
* MeetingFeatures: {
|
|
41
|
-
* Audio: {
|
|
40
|
+
* MeetingFeatures: { // MeetingFeaturesConfiguration
|
|
41
|
+
* Audio: { // AudioFeatures
|
|
42
42
|
* EchoReduction: "AVAILABLE" || "UNAVAILABLE",
|
|
43
43
|
* },
|
|
44
44
|
* },
|
|
45
|
-
* NotificationsConfiguration: {
|
|
45
|
+
* NotificationsConfiguration: { // NotificationsConfiguration
|
|
46
46
|
* LambdaFunctionArn: "STRING_VALUE",
|
|
47
47
|
* SnsTopicArn: "STRING_VALUE",
|
|
48
48
|
* SqsQueueArn: "STRING_VALUE",
|
|
49
49
|
* },
|
|
50
|
-
* Attendees: [ // required
|
|
51
|
-
* {
|
|
50
|
+
* Attendees: [ // CreateMeetingWithAttendeesRequestItemList // required
|
|
51
|
+
* { // CreateAttendeeRequestItem
|
|
52
52
|
* ExternalUserId: "STRING_VALUE", // required
|
|
53
|
-
* Capabilities: {
|
|
53
|
+
* Capabilities: { // AttendeeCapabilities
|
|
54
54
|
* Audio: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
55
55
|
* Video: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
56
56
|
* Content: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
@@ -58,11 +58,11 @@ export interface CreateMeetingWithAttendeesCommandOutput extends CreateMeetingWi
|
|
|
58
58
|
* },
|
|
59
59
|
* ],
|
|
60
60
|
* PrimaryMeetingId: "STRING_VALUE",
|
|
61
|
-
* TenantIds: [
|
|
61
|
+
* TenantIds: [ // TenantIdList
|
|
62
62
|
* "STRING_VALUE",
|
|
63
63
|
* ],
|
|
64
|
-
* Tags: [
|
|
65
|
-
* {
|
|
64
|
+
* Tags: [ // TagList
|
|
65
|
+
* { // Tag
|
|
66
66
|
* Key: "STRING_VALUE", // required
|
|
67
67
|
* Value: "STRING_VALUE", // required
|
|
68
68
|
* },
|
|
@@ -29,7 +29,7 @@ export interface DeleteAttendeeCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { ChimeSDKMeetingsClient, DeleteAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
30
30
|
* // const { ChimeSDKMeetingsClient, DeleteAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
31
31
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeleteAttendeeRequest
|
|
33
33
|
* MeetingId: "STRING_VALUE", // required
|
|
34
34
|
* AttendeeId: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
@@ -29,7 +29,7 @@ export interface DeleteMeetingCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { ChimeSDKMeetingsClient, DeleteMeetingCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
30
30
|
* // const { ChimeSDKMeetingsClient, DeleteMeetingCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
31
31
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeleteMeetingRequest
|
|
33
33
|
* MeetingId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteMeetingCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface GetAttendeeCommandOutput extends GetAttendeeResponse, __Metadat
|
|
|
30
30
|
* import { ChimeSDKMeetingsClient, GetAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
31
31
|
* // const { ChimeSDKMeetingsClient, GetAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
32
32
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // GetAttendeeRequest
|
|
34
34
|
* MeetingId: "STRING_VALUE", // required
|
|
35
35
|
* AttendeeId: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
@@ -28,7 +28,7 @@ export interface GetMeetingCommandOutput extends GetMeetingResponse, __MetadataB
|
|
|
28
28
|
* import { ChimeSDKMeetingsClient, GetMeetingCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
29
29
|
* // const { ChimeSDKMeetingsClient, GetMeetingCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
30
30
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetMeetingRequest
|
|
32
32
|
* MeetingId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetMeetingCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface ListAttendeesCommandOutput extends ListAttendeesResponse, __Met
|
|
|
30
30
|
* import { ChimeSDKMeetingsClient, ListAttendeesCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
31
31
|
* // const { ChimeSDKMeetingsClient, ListAttendeesCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
32
32
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListAttendeesRequest
|
|
34
34
|
* MeetingId: "STRING_VALUE", // required
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
36
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { ChimeSDKMeetingsClient, ListTagsForResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMeetingsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -32,10 +32,10 @@ export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer
|
|
|
32
32
|
* import { ChimeSDKMeetingsClient, StartMeetingTranscriptionCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
33
33
|
* // const { ChimeSDKMeetingsClient, StartMeetingTranscriptionCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
34
34
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // StartMeetingTranscriptionRequest
|
|
36
36
|
* MeetingId: "STRING_VALUE", // required
|
|
37
|
-
* TranscriptionConfiguration: {
|
|
38
|
-
* EngineTranscribeSettings: {
|
|
37
|
+
* TranscriptionConfiguration: { // TranscriptionConfiguration
|
|
38
|
+
* EngineTranscribeSettings: { // EngineTranscribeSettings
|
|
39
39
|
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
40
40
|
* VocabularyFilterMethod: "remove" || "mask" || "tag",
|
|
41
41
|
* VocabularyFilterName: "STRING_VALUE",
|
|
@@ -51,7 +51,7 @@ export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer
|
|
|
51
51
|
* LanguageOptions: "STRING_VALUE",
|
|
52
52
|
* PreferredLanguage: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
53
53
|
* },
|
|
54
|
-
* EngineTranscribeMedicalSettings: {
|
|
54
|
+
* EngineTranscribeMedicalSettings: { // EngineTranscribeMedicalSettings
|
|
55
55
|
* LanguageCode: "en-US", // required
|
|
56
56
|
* Specialty: "PRIMARYCARE" || "CARDIOLOGY" || "NEUROLOGY" || "ONCOLOGY" || "RADIOLOGY" || "UROLOGY", // required
|
|
57
57
|
* Type: "CONVERSATION" || "DICTATION", // required
|
|
@@ -32,7 +32,7 @@ export interface StopMeetingTranscriptionCommandOutput extends __MetadataBearer
|
|
|
32
32
|
* import { ChimeSDKMeetingsClient, StopMeetingTranscriptionCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
33
33
|
* // const { ChimeSDKMeetingsClient, StopMeetingTranscriptionCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
34
34
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // StopMeetingTranscriptionRequest
|
|
36
36
|
* MeetingId: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new StopMeetingTranscriptionCommand(input);
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { ChimeSDKMeetingsClient, TagResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMeetingsClient, TagResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMeetingsClient(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
|
* },
|
|
@@ -47,9 +47,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
47
47
|
* import { ChimeSDKMeetingsClient, UntagResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
48
48
|
* // const { ChimeSDKMeetingsClient, UntagResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
49
49
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
50
|
-
* const input = {
|
|
50
|
+
* const input = { // UntagResourceRequest
|
|
51
51
|
* ResourceARN: "STRING_VALUE", // required
|
|
52
|
-
* TagKeys: [ // required
|
|
52
|
+
* TagKeys: [ // TagKeyList // required
|
|
53
53
|
* "STRING_VALUE",
|
|
54
54
|
* ],
|
|
55
55
|
* };
|
|
@@ -46,10 +46,10 @@ export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeC
|
|
|
46
46
|
* import { ChimeSDKMeetingsClient, UpdateAttendeeCapabilitiesCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
47
47
|
* // const { ChimeSDKMeetingsClient, UpdateAttendeeCapabilitiesCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
48
48
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
49
|
-
* const input = {
|
|
49
|
+
* const input = { // UpdateAttendeeCapabilitiesRequest
|
|
50
50
|
* MeetingId: "STRING_VALUE", // required
|
|
51
51
|
* AttendeeId: "STRING_VALUE", // required
|
|
52
|
-
* Capabilities: {
|
|
52
|
+
* Capabilities: { // AttendeeCapabilities
|
|
53
53
|
* Audio: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
54
54
|
* Video: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
55
55
|
* Content: "SendReceive" || "Send" || "Receive" || "None", // required
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-meetings",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Meetings 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",
|