@aws-sdk/client-ivs 3.40.0 → 3.45.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/CHANGELOG.md +41 -0
- package/README.md +10 -1
- package/dist-cjs/Ivs.js +30 -0
- package/dist-cjs/commands/GetStreamSessionCommand.js +36 -0
- package/dist-cjs/commands/ListStreamSessionsCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoints.js +9 -0
- package/dist-cjs/models/models_0.js +68 -2
- package/dist-cjs/pagination/ListStreamSessionsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +282 -2
- package/dist-es/Ivs.js +30 -0
- package/dist-es/commands/GetStreamSessionCommand.js +39 -0
- package/dist-es/commands/ListStreamSessionsCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoints.js +9 -0
- package/dist-es/models/models_0.js +44 -0
- package/dist-es/pagination/ListStreamSessionsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +309 -1
- package/dist-types/Ivs.d.ts +44 -19
- package/dist-types/IvsClient.d.ts +14 -3
- package/dist-types/commands/BatchGetChannelCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetStreamKeyCommand.d.ts +1 -1
- package/dist-types/commands/CreateChannelCommand.d.ts +1 -1
- package/dist-types/commands/CreateRecordingConfigurationCommand.d.ts +10 -10
- package/dist-types/commands/CreateStreamKeyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteChannelCommand.d.ts +3 -2
- package/dist-types/commands/DeletePlaybackKeyPairCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRecordingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteStreamKeyCommand.d.ts +1 -1
- package/dist-types/commands/GetChannelCommand.d.ts +1 -1
- package/dist-types/commands/GetPlaybackKeyPairCommand.d.ts +1 -1
- package/dist-types/commands/GetRecordingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetStreamCommand.d.ts +1 -1
- package/dist-types/commands/GetStreamKeyCommand.d.ts +1 -1
- package/dist-types/commands/GetStreamSessionCommand.d.ts +35 -0
- package/dist-types/commands/ImportPlaybackKeyPairCommand.d.ts +1 -1
- package/dist-types/commands/ListChannelsCommand.d.ts +4 -4
- package/dist-types/commands/ListPlaybackKeyPairsCommand.d.ts +1 -1
- package/dist-types/commands/ListRecordingConfigurationsCommand.d.ts +3 -3
- package/dist-types/commands/ListStreamKeysCommand.d.ts +1 -1
- package/dist-types/commands/ListStreamSessionsCommand.d.ts +36 -0
- package/dist-types/commands/ListStreamsCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutMetadataCommand.d.ts +2 -2
- package/dist-types/commands/StopStreamCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateChannelCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +289 -6
- package/dist-types/pagination/ListStreamSessionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/ts3.4/Ivs.d.ts +10 -0
- package/dist-types/ts3.4/IvsClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetStreamSessionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListStreamSessionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +153 -0
- package/dist-types/ts3.4/pagination/ListStreamSessionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
- package/package.json +6 -6
|
@@ -427,6 +427,8 @@ export interface _Stream {
|
|
|
427
427
|
|
|
428
428
|
channelArn?: string;
|
|
429
429
|
|
|
430
|
+
streamId?: string;
|
|
431
|
+
|
|
430
432
|
playbackUrl?: string;
|
|
431
433
|
|
|
432
434
|
startTime?: Date;
|
|
@@ -465,6 +467,107 @@ export declare namespace GetStreamKeyResponse {
|
|
|
465
467
|
|
|
466
468
|
const filterSensitiveLog: (obj: GetStreamKeyResponse) => any;
|
|
467
469
|
}
|
|
470
|
+
export interface GetStreamSessionRequest {
|
|
471
|
+
|
|
472
|
+
channelArn: string | undefined;
|
|
473
|
+
|
|
474
|
+
streamId?: string;
|
|
475
|
+
}
|
|
476
|
+
export declare namespace GetStreamSessionRequest {
|
|
477
|
+
|
|
478
|
+
const filterSensitiveLog: (obj: GetStreamSessionRequest) => any;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
export interface AudioConfiguration {
|
|
482
|
+
|
|
483
|
+
codec?: string;
|
|
484
|
+
|
|
485
|
+
targetBitrate?: number;
|
|
486
|
+
|
|
487
|
+
sampleRate?: number;
|
|
488
|
+
|
|
489
|
+
channels?: number;
|
|
490
|
+
}
|
|
491
|
+
export declare namespace AudioConfiguration {
|
|
492
|
+
|
|
493
|
+
const filterSensitiveLog: (obj: AudioConfiguration) => any;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
export interface VideoConfiguration {
|
|
497
|
+
|
|
498
|
+
avcProfile?: string;
|
|
499
|
+
|
|
500
|
+
avcLevel?: string;
|
|
501
|
+
|
|
502
|
+
codec?: string;
|
|
503
|
+
|
|
504
|
+
encoder?: string;
|
|
505
|
+
|
|
506
|
+
targetBitrate?: number;
|
|
507
|
+
|
|
508
|
+
targetFramerate?: number;
|
|
509
|
+
|
|
510
|
+
videoHeight?: number;
|
|
511
|
+
|
|
512
|
+
videoWidth?: number;
|
|
513
|
+
}
|
|
514
|
+
export declare namespace VideoConfiguration {
|
|
515
|
+
|
|
516
|
+
const filterSensitiveLog: (obj: VideoConfiguration) => any;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
export interface IngestConfiguration {
|
|
520
|
+
|
|
521
|
+
video?: VideoConfiguration;
|
|
522
|
+
|
|
523
|
+
audio?: AudioConfiguration;
|
|
524
|
+
}
|
|
525
|
+
export declare namespace IngestConfiguration {
|
|
526
|
+
|
|
527
|
+
const filterSensitiveLog: (obj: IngestConfiguration) => any;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
export interface StreamEvent {
|
|
531
|
+
|
|
532
|
+
name?: string;
|
|
533
|
+
|
|
534
|
+
type?: string;
|
|
535
|
+
|
|
536
|
+
eventTime?: Date;
|
|
537
|
+
}
|
|
538
|
+
export declare namespace StreamEvent {
|
|
539
|
+
|
|
540
|
+
const filterSensitiveLog: (obj: StreamEvent) => any;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
export interface StreamSession {
|
|
544
|
+
|
|
545
|
+
streamId?: string;
|
|
546
|
+
|
|
547
|
+
startTime?: Date;
|
|
548
|
+
|
|
549
|
+
endTime?: Date;
|
|
550
|
+
|
|
551
|
+
channel?: Channel;
|
|
552
|
+
|
|
553
|
+
ingestConfiguration?: IngestConfiguration;
|
|
554
|
+
|
|
555
|
+
recordingConfiguration?: RecordingConfiguration;
|
|
556
|
+
|
|
557
|
+
truncatedEvents?: StreamEvent[];
|
|
558
|
+
}
|
|
559
|
+
export declare namespace StreamSession {
|
|
560
|
+
|
|
561
|
+
const filterSensitiveLog: (obj: StreamSession) => any;
|
|
562
|
+
}
|
|
563
|
+
export interface GetStreamSessionResponse {
|
|
564
|
+
|
|
565
|
+
streamSession?: StreamSession;
|
|
566
|
+
}
|
|
567
|
+
export declare namespace GetStreamSessionResponse {
|
|
568
|
+
|
|
569
|
+
const filterSensitiveLog: (obj: GetStreamSessionResponse) => any;
|
|
570
|
+
}
|
|
468
571
|
export interface ImportPlaybackKeyPairRequest {
|
|
469
572
|
|
|
470
573
|
publicKeyMaterial: string | undefined;
|
|
@@ -643,8 +746,19 @@ export declare namespace ListStreamKeysResponse {
|
|
|
643
746
|
|
|
644
747
|
const filterSensitiveLog: (obj: ListStreamKeysResponse) => any;
|
|
645
748
|
}
|
|
749
|
+
|
|
750
|
+
export interface StreamFilters {
|
|
751
|
+
|
|
752
|
+
health?: StreamHealth | string;
|
|
753
|
+
}
|
|
754
|
+
export declare namespace StreamFilters {
|
|
755
|
+
|
|
756
|
+
const filterSensitiveLog: (obj: StreamFilters) => any;
|
|
757
|
+
}
|
|
646
758
|
export interface ListStreamsRequest {
|
|
647
759
|
|
|
760
|
+
filterBy?: StreamFilters;
|
|
761
|
+
|
|
648
762
|
nextToken?: string;
|
|
649
763
|
|
|
650
764
|
maxResults?: number;
|
|
@@ -658,6 +772,8 @@ export interface StreamSummary {
|
|
|
658
772
|
|
|
659
773
|
channelArn?: string;
|
|
660
774
|
|
|
775
|
+
streamId?: string;
|
|
776
|
+
|
|
661
777
|
state?: StreamState | string;
|
|
662
778
|
|
|
663
779
|
health?: StreamHealth | string;
|
|
@@ -680,6 +796,43 @@ export declare namespace ListStreamsResponse {
|
|
|
680
796
|
|
|
681
797
|
const filterSensitiveLog: (obj: ListStreamsResponse) => any;
|
|
682
798
|
}
|
|
799
|
+
export interface ListStreamSessionsRequest {
|
|
800
|
+
|
|
801
|
+
channelArn: string | undefined;
|
|
802
|
+
|
|
803
|
+
nextToken?: string;
|
|
804
|
+
|
|
805
|
+
maxResults?: number;
|
|
806
|
+
}
|
|
807
|
+
export declare namespace ListStreamSessionsRequest {
|
|
808
|
+
|
|
809
|
+
const filterSensitiveLog: (obj: ListStreamSessionsRequest) => any;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
export interface StreamSessionSummary {
|
|
813
|
+
|
|
814
|
+
streamId?: string;
|
|
815
|
+
|
|
816
|
+
startTime?: Date;
|
|
817
|
+
|
|
818
|
+
endTime?: Date;
|
|
819
|
+
|
|
820
|
+
hasErrorEvent?: boolean;
|
|
821
|
+
}
|
|
822
|
+
export declare namespace StreamSessionSummary {
|
|
823
|
+
|
|
824
|
+
const filterSensitiveLog: (obj: StreamSessionSummary) => any;
|
|
825
|
+
}
|
|
826
|
+
export interface ListStreamSessionsResponse {
|
|
827
|
+
|
|
828
|
+
streamSessions: StreamSessionSummary[] | undefined;
|
|
829
|
+
|
|
830
|
+
nextToken?: string;
|
|
831
|
+
}
|
|
832
|
+
export declare namespace ListStreamSessionsResponse {
|
|
833
|
+
|
|
834
|
+
const filterSensitiveLog: (obj: ListStreamSessionsResponse) => any;
|
|
835
|
+
}
|
|
683
836
|
export interface ListTagsForResourceRequest {
|
|
684
837
|
|
|
685
838
|
resourceArn: string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListStreamSessionsCommandInput, ListStreamSessionsCommandOutput } from "../commands/ListStreamSessionsCommand";
|
|
3
|
+
import { IvsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListStreamSessions(config: IvsPaginationConfiguration, input: ListStreamSessionsCommandInput, ...additionalArguments: any): Paginator<ListStreamSessionsCommandOutput>;
|
|
@@ -3,4 +3,5 @@ export * from "./ListChannelsPaginator";
|
|
|
3
3
|
export * from "./ListPlaybackKeyPairsPaginator";
|
|
4
4
|
export * from "./ListRecordingConfigurationsPaginator";
|
|
5
5
|
export * from "./ListStreamKeysPaginator";
|
|
6
|
+
export * from "./ListStreamSessionsPaginator";
|
|
6
7
|
export * from "./ListStreamsPaginator";
|
|
@@ -14,12 +14,14 @@ import { GetPlaybackKeyPairCommandInput, GetPlaybackKeyPairCommandOutput } from
|
|
|
14
14
|
import { GetRecordingConfigurationCommandInput, GetRecordingConfigurationCommandOutput } from "../commands/GetRecordingConfigurationCommand";
|
|
15
15
|
import { GetStreamCommandInput, GetStreamCommandOutput } from "../commands/GetStreamCommand";
|
|
16
16
|
import { GetStreamKeyCommandInput, GetStreamKeyCommandOutput } from "../commands/GetStreamKeyCommand";
|
|
17
|
+
import { GetStreamSessionCommandInput, GetStreamSessionCommandOutput } from "../commands/GetStreamSessionCommand";
|
|
17
18
|
import { ImportPlaybackKeyPairCommandInput, ImportPlaybackKeyPairCommandOutput } from "../commands/ImportPlaybackKeyPairCommand";
|
|
18
19
|
import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
|
|
19
20
|
import { ListPlaybackKeyPairsCommandInput, ListPlaybackKeyPairsCommandOutput } from "../commands/ListPlaybackKeyPairsCommand";
|
|
20
21
|
import { ListRecordingConfigurationsCommandInput, ListRecordingConfigurationsCommandOutput } from "../commands/ListRecordingConfigurationsCommand";
|
|
21
22
|
import { ListStreamKeysCommandInput, ListStreamKeysCommandOutput } from "../commands/ListStreamKeysCommand";
|
|
22
23
|
import { ListStreamsCommandInput, ListStreamsCommandOutput } from "../commands/ListStreamsCommand";
|
|
24
|
+
import { ListStreamSessionsCommandInput, ListStreamSessionsCommandOutput } from "../commands/ListStreamSessionsCommand";
|
|
23
25
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
24
26
|
import { PutMetadataCommandInput, PutMetadataCommandOutput } from "../commands/PutMetadataCommand";
|
|
25
27
|
import { StopStreamCommandInput, StopStreamCommandOutput } from "../commands/StopStreamCommand";
|
|
@@ -40,12 +42,14 @@ export declare const serializeAws_restJson1GetPlaybackKeyPairCommand: (input: Ge
|
|
|
40
42
|
export declare const serializeAws_restJson1GetRecordingConfigurationCommand: (input: GetRecordingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
43
|
export declare const serializeAws_restJson1GetStreamCommand: (input: GetStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
44
|
export declare const serializeAws_restJson1GetStreamKeyCommand: (input: GetStreamKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
+
export declare const serializeAws_restJson1GetStreamSessionCommand: (input: GetStreamSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
46
|
export declare const serializeAws_restJson1ImportPlaybackKeyPairCommand: (input: ImportPlaybackKeyPairCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
47
|
export declare const serializeAws_restJson1ListChannelsCommand: (input: ListChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
48
|
export declare const serializeAws_restJson1ListPlaybackKeyPairsCommand: (input: ListPlaybackKeyPairsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
49
|
export declare const serializeAws_restJson1ListRecordingConfigurationsCommand: (input: ListRecordingConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
50
|
export declare const serializeAws_restJson1ListStreamKeysCommand: (input: ListStreamKeysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
51
|
export declare const serializeAws_restJson1ListStreamsCommand: (input: ListStreamsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
export declare const serializeAws_restJson1ListStreamSessionsCommand: (input: ListStreamSessionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
53
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
54
|
export declare const serializeAws_restJson1PutMetadataCommand: (input: PutMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
55
|
export declare const serializeAws_restJson1StopStreamCommand: (input: StopStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -66,12 +70,14 @@ export declare const deserializeAws_restJson1GetPlaybackKeyPairCommand: (output:
|
|
|
66
70
|
export declare const deserializeAws_restJson1GetRecordingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRecordingConfigurationCommandOutput>;
|
|
67
71
|
export declare const deserializeAws_restJson1GetStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStreamCommandOutput>;
|
|
68
72
|
export declare const deserializeAws_restJson1GetStreamKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStreamKeyCommandOutput>;
|
|
73
|
+
export declare const deserializeAws_restJson1GetStreamSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStreamSessionCommandOutput>;
|
|
69
74
|
export declare const deserializeAws_restJson1ImportPlaybackKeyPairCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportPlaybackKeyPairCommandOutput>;
|
|
70
75
|
export declare const deserializeAws_restJson1ListChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelsCommandOutput>;
|
|
71
76
|
export declare const deserializeAws_restJson1ListPlaybackKeyPairsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPlaybackKeyPairsCommandOutput>;
|
|
72
77
|
export declare const deserializeAws_restJson1ListRecordingConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRecordingConfigurationsCommandOutput>;
|
|
73
78
|
export declare const deserializeAws_restJson1ListStreamKeysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamKeysCommandOutput>;
|
|
74
79
|
export declare const deserializeAws_restJson1ListStreamsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamsCommandOutput>;
|
|
80
|
+
export declare const deserializeAws_restJson1ListStreamSessionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamSessionsCommandOutput>;
|
|
75
81
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
76
82
|
export declare const deserializeAws_restJson1PutMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMetadataCommandOutput>;
|
|
77
83
|
export declare const deserializeAws_restJson1StopStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopStreamCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.45.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.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.45.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.45.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.45.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.40.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
33
|
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
34
|
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.45.0",
|
|
36
36
|
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
37
|
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
38
|
"@aws-sdk/node-config-provider": "3.40.0",
|
|
39
39
|
"@aws-sdk/node-http-handler": "3.40.0",
|
|
40
40
|
"@aws-sdk/protocol-http": "3.40.0",
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
+
"@aws-sdk/smithy-client": "3.41.0",
|
|
42
42
|
"@aws-sdk/types": "3.40.0",
|
|
43
43
|
"@aws-sdk/url-parser": "3.40.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|