@aws-sdk/client-bedrock 3.758.0 → 3.772.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist-cjs/index.js +378 -308
- package/dist-es/Bedrock.js +4 -0
- package/dist-es/commands/CreatePromptRouterCommand.js +23 -0
- package/dist-es/commands/DeletePromptRouterCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +22 -0
- package/dist-es/protocols/Aws_restJson1.js +65 -0
- package/dist-types/Bedrock.d.ts +14 -0
- package/dist-types/BedrockClient.d.ts +4 -2
- package/dist-types/commands/CreateEvaluationJobCommand.d.ts +11 -0
- package/dist-types/commands/CreatePromptRouterCommand.d.ts +115 -0
- package/dist-types/commands/DeletePromptRouterCommand.d.ts +84 -0
- package/dist-types/commands/GetEvaluationJobCommand.d.ts +11 -0
- package/dist-types/commands/GetPromptRouterCommand.d.ts +2 -2
- package/dist-types/commands/ListEvaluationJobsCommand.d.ts +20 -2
- package/dist-types/commands/ListPromptRoutersCommand.d.ts +3 -2
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +248 -13
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Bedrock.d.ts +34 -0
- package/dist-types/ts3.4/BedrockClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreatePromptRouterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePromptRouterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +102 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +3 -3
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
DeletePromptRouterRequest,
|
|
10
|
+
DeletePromptRouterResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeletePromptRouterCommandInput
|
|
15
|
+
extends DeletePromptRouterRequest {}
|
|
16
|
+
export interface DeletePromptRouterCommandOutput
|
|
17
|
+
extends DeletePromptRouterResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeletePromptRouterCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeletePromptRouterCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeletePromptRouterCommandInput,
|
|
24
|
+
DeletePromptRouterCommandOutput,
|
|
25
|
+
BedrockClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeletePromptRouterCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeletePromptRouterCommandInput,
|
|
33
|
+
DeletePromptRouterCommandOutput,
|
|
34
|
+
BedrockClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeletePromptRouterCommand extends DeletePromptRouterCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeletePromptRouterRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeletePromptRouterCommandInput;
|
|
48
|
+
output: DeletePromptRouterCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -8,6 +8,7 @@ export * from "./CreateModelCopyJobCommand";
|
|
|
8
8
|
export * from "./CreateModelCustomizationJobCommand";
|
|
9
9
|
export * from "./CreateModelImportJobCommand";
|
|
10
10
|
export * from "./CreateModelInvocationJobCommand";
|
|
11
|
+
export * from "./CreatePromptRouterCommand";
|
|
11
12
|
export * from "./CreateProvisionedModelThroughputCommand";
|
|
12
13
|
export * from "./DeleteCustomModelCommand";
|
|
13
14
|
export * from "./DeleteGuardrailCommand";
|
|
@@ -15,6 +16,7 @@ export * from "./DeleteImportedModelCommand";
|
|
|
15
16
|
export * from "./DeleteInferenceProfileCommand";
|
|
16
17
|
export * from "./DeleteMarketplaceModelEndpointCommand";
|
|
17
18
|
export * from "./DeleteModelInvocationLoggingConfigurationCommand";
|
|
19
|
+
export * from "./DeletePromptRouterCommand";
|
|
18
20
|
export * from "./DeleteProvisionedModelThroughputCommand";
|
|
19
21
|
export * from "./DeregisterMarketplaceModelEndpointCommand";
|
|
20
22
|
export * from "./GetCustomModelCommand";
|
|
@@ -309,20 +309,34 @@ export interface EvaluationBedrockModel {
|
|
|
309
309
|
inferenceParams?: string | undefined;
|
|
310
310
|
performanceConfig?: PerformanceConfiguration | undefined;
|
|
311
311
|
}
|
|
312
|
+
export interface EvaluationPrecomputedInferenceSource {
|
|
313
|
+
inferenceSourceIdentifier: string | undefined;
|
|
314
|
+
}
|
|
312
315
|
export type EvaluationModelConfig =
|
|
313
316
|
| EvaluationModelConfig.BedrockModelMember
|
|
317
|
+
| EvaluationModelConfig.PrecomputedInferenceSourceMember
|
|
314
318
|
| EvaluationModelConfig.$UnknownMember;
|
|
315
319
|
export declare namespace EvaluationModelConfig {
|
|
316
320
|
interface BedrockModelMember {
|
|
317
321
|
bedrockModel: EvaluationBedrockModel;
|
|
322
|
+
precomputedInferenceSource?: never;
|
|
323
|
+
$unknown?: never;
|
|
324
|
+
}
|
|
325
|
+
interface PrecomputedInferenceSourceMember {
|
|
326
|
+
bedrockModel?: never;
|
|
327
|
+
precomputedInferenceSource: EvaluationPrecomputedInferenceSource;
|
|
318
328
|
$unknown?: never;
|
|
319
329
|
}
|
|
320
330
|
interface $UnknownMember {
|
|
321
331
|
bedrockModel?: never;
|
|
332
|
+
precomputedInferenceSource?: never;
|
|
322
333
|
$unknown: [string, any];
|
|
323
334
|
}
|
|
324
335
|
interface Visitor<T> {
|
|
325
336
|
bedrockModel: (value: EvaluationBedrockModel) => T;
|
|
337
|
+
precomputedInferenceSource: (
|
|
338
|
+
value: EvaluationPrecomputedInferenceSource
|
|
339
|
+
) => T;
|
|
326
340
|
_: (name: string, value: any) => T;
|
|
327
341
|
}
|
|
328
342
|
const visit: <T>(value: EvaluationModelConfig, visitor: Visitor<T>) => T;
|
|
@@ -407,6 +421,46 @@ export declare const RetrieveAndGenerateType: {
|
|
|
407
421
|
};
|
|
408
422
|
export type RetrieveAndGenerateType =
|
|
409
423
|
(typeof RetrieveAndGenerateType)[keyof typeof RetrieveAndGenerateType];
|
|
424
|
+
export interface EvaluationPrecomputedRetrieveAndGenerateSourceConfig {
|
|
425
|
+
ragSourceIdentifier: string | undefined;
|
|
426
|
+
}
|
|
427
|
+
export interface EvaluationPrecomputedRetrieveSourceConfig {
|
|
428
|
+
ragSourceIdentifier: string | undefined;
|
|
429
|
+
}
|
|
430
|
+
export type EvaluationPrecomputedRagSourceConfig =
|
|
431
|
+
| EvaluationPrecomputedRagSourceConfig.RetrieveAndGenerateSourceConfigMember
|
|
432
|
+
| EvaluationPrecomputedRagSourceConfig.RetrieveSourceConfigMember
|
|
433
|
+
| EvaluationPrecomputedRagSourceConfig.$UnknownMember;
|
|
434
|
+
export declare namespace EvaluationPrecomputedRagSourceConfig {
|
|
435
|
+
interface RetrieveSourceConfigMember {
|
|
436
|
+
retrieveSourceConfig: EvaluationPrecomputedRetrieveSourceConfig;
|
|
437
|
+
retrieveAndGenerateSourceConfig?: never;
|
|
438
|
+
$unknown?: never;
|
|
439
|
+
}
|
|
440
|
+
interface RetrieveAndGenerateSourceConfigMember {
|
|
441
|
+
retrieveSourceConfig?: never;
|
|
442
|
+
retrieveAndGenerateSourceConfig: EvaluationPrecomputedRetrieveAndGenerateSourceConfig;
|
|
443
|
+
$unknown?: never;
|
|
444
|
+
}
|
|
445
|
+
interface $UnknownMember {
|
|
446
|
+
retrieveSourceConfig?: never;
|
|
447
|
+
retrieveAndGenerateSourceConfig?: never;
|
|
448
|
+
$unknown: [string, any];
|
|
449
|
+
}
|
|
450
|
+
interface Visitor<T> {
|
|
451
|
+
retrieveSourceConfig: (
|
|
452
|
+
value: EvaluationPrecomputedRetrieveSourceConfig
|
|
453
|
+
) => T;
|
|
454
|
+
retrieveAndGenerateSourceConfig: (
|
|
455
|
+
value: EvaluationPrecomputedRetrieveAndGenerateSourceConfig
|
|
456
|
+
) => T;
|
|
457
|
+
_: (name: string, value: any) => T;
|
|
458
|
+
}
|
|
459
|
+
const visit: <T>(
|
|
460
|
+
value: EvaluationPrecomputedRagSourceConfig,
|
|
461
|
+
visitor: Visitor<T>
|
|
462
|
+
) => T;
|
|
463
|
+
}
|
|
410
464
|
export interface EvaluationOutputDataConfig {
|
|
411
465
|
s3Uri: string | undefined;
|
|
412
466
|
}
|
|
@@ -442,6 +496,18 @@ export interface ListEvaluationJobsRequest {
|
|
|
442
496
|
sortBy?: SortJobsBy | undefined;
|
|
443
497
|
sortOrder?: SortOrder | undefined;
|
|
444
498
|
}
|
|
499
|
+
export interface EvaluationModelConfigSummary {
|
|
500
|
+
bedrockModelIdentifiers?: string[] | undefined;
|
|
501
|
+
precomputedInferenceSourceIdentifiers?: string[] | undefined;
|
|
502
|
+
}
|
|
503
|
+
export interface EvaluationRagConfigSummary {
|
|
504
|
+
bedrockKnowledgeBaseIdentifiers?: string[] | undefined;
|
|
505
|
+
precomputedRagSourceIdentifiers?: string[] | undefined;
|
|
506
|
+
}
|
|
507
|
+
export interface EvaluationInferenceConfigSummary {
|
|
508
|
+
modelConfigSummary?: EvaluationModelConfigSummary | undefined;
|
|
509
|
+
ragConfigSummary?: EvaluationRagConfigSummary | undefined;
|
|
510
|
+
}
|
|
445
511
|
export interface EvaluationSummary {
|
|
446
512
|
jobArn: string | undefined;
|
|
447
513
|
jobName: string | undefined;
|
|
@@ -452,6 +518,7 @@ export interface EvaluationSummary {
|
|
|
452
518
|
modelIdentifiers?: string[] | undefined;
|
|
453
519
|
ragIdentifiers?: string[] | undefined;
|
|
454
520
|
evaluatorModelIdentifiers?: string[] | undefined;
|
|
521
|
+
inferenceConfigSummary?: EvaluationInferenceConfigSummary | undefined;
|
|
455
522
|
applicationType?: ApplicationType | undefined;
|
|
456
523
|
}
|
|
457
524
|
export interface ListEvaluationJobsResponse {
|
|
@@ -1447,15 +1514,31 @@ export interface FoundationModelSummary {
|
|
|
1447
1514
|
export interface ListFoundationModelsResponse {
|
|
1448
1515
|
modelSummaries?: FoundationModelSummary[] | undefined;
|
|
1449
1516
|
}
|
|
1450
|
-
export interface GetPromptRouterRequest {
|
|
1451
|
-
promptRouterArn: string | undefined;
|
|
1452
|
-
}
|
|
1453
1517
|
export interface PromptRouterTargetModel {
|
|
1454
|
-
modelArn
|
|
1518
|
+
modelArn: string | undefined;
|
|
1455
1519
|
}
|
|
1456
1520
|
export interface RoutingCriteria {
|
|
1457
1521
|
responseQualityDifference: number | undefined;
|
|
1458
1522
|
}
|
|
1523
|
+
export interface CreatePromptRouterRequest {
|
|
1524
|
+
clientRequestToken?: string | undefined;
|
|
1525
|
+
promptRouterName: string | undefined;
|
|
1526
|
+
models: PromptRouterTargetModel[] | undefined;
|
|
1527
|
+
description?: string | undefined;
|
|
1528
|
+
routingCriteria: RoutingCriteria | undefined;
|
|
1529
|
+
fallbackModel: PromptRouterTargetModel | undefined;
|
|
1530
|
+
tags?: Tag[] | undefined;
|
|
1531
|
+
}
|
|
1532
|
+
export interface CreatePromptRouterResponse {
|
|
1533
|
+
promptRouterArn?: string | undefined;
|
|
1534
|
+
}
|
|
1535
|
+
export interface DeletePromptRouterRequest {
|
|
1536
|
+
promptRouterArn: string | undefined;
|
|
1537
|
+
}
|
|
1538
|
+
export interface DeletePromptRouterResponse {}
|
|
1539
|
+
export interface GetPromptRouterRequest {
|
|
1540
|
+
promptRouterArn: string | undefined;
|
|
1541
|
+
}
|
|
1459
1542
|
export declare const PromptRouterStatus: {
|
|
1460
1543
|
readonly AVAILABLE: "AVAILABLE";
|
|
1461
1544
|
};
|
|
@@ -1482,6 +1565,7 @@ export interface GetPromptRouterResponse {
|
|
|
1482
1565
|
export interface ListPromptRoutersRequest {
|
|
1483
1566
|
maxResults?: number | undefined;
|
|
1484
1567
|
nextToken?: string | undefined;
|
|
1568
|
+
type?: PromptRouterType | undefined;
|
|
1485
1569
|
}
|
|
1486
1570
|
export interface PromptRouterSummary {
|
|
1487
1571
|
promptRouterName: string | undefined;
|
|
@@ -2014,18 +2098,29 @@ export declare namespace KnowledgeBaseConfig {
|
|
|
2014
2098
|
}
|
|
2015
2099
|
export type RAGConfig =
|
|
2016
2100
|
| RAGConfig.KnowledgeBaseConfigMember
|
|
2101
|
+
| RAGConfig.PrecomputedRagSourceConfigMember
|
|
2017
2102
|
| RAGConfig.$UnknownMember;
|
|
2018
2103
|
export declare namespace RAGConfig {
|
|
2019
2104
|
interface KnowledgeBaseConfigMember {
|
|
2020
2105
|
knowledgeBaseConfig: KnowledgeBaseConfig;
|
|
2106
|
+
precomputedRagSourceConfig?: never;
|
|
2107
|
+
$unknown?: never;
|
|
2108
|
+
}
|
|
2109
|
+
interface PrecomputedRagSourceConfigMember {
|
|
2110
|
+
knowledgeBaseConfig?: never;
|
|
2111
|
+
precomputedRagSourceConfig: EvaluationPrecomputedRagSourceConfig;
|
|
2021
2112
|
$unknown?: never;
|
|
2022
2113
|
}
|
|
2023
2114
|
interface $UnknownMember {
|
|
2024
2115
|
knowledgeBaseConfig?: never;
|
|
2116
|
+
precomputedRagSourceConfig?: never;
|
|
2025
2117
|
$unknown: [string, any];
|
|
2026
2118
|
}
|
|
2027
2119
|
interface Visitor<T> {
|
|
2028
2120
|
knowledgeBaseConfig: (value: KnowledgeBaseConfig) => T;
|
|
2121
|
+
precomputedRagSourceConfig: (
|
|
2122
|
+
value: EvaluationPrecomputedRagSourceConfig
|
|
2123
|
+
) => T;
|
|
2029
2124
|
_: (name: string, value: any) => T;
|
|
2030
2125
|
}
|
|
2031
2126
|
const visit: <T>(value: RAGConfig, visitor: Visitor<T>) => T;
|
|
@@ -2226,6 +2321,9 @@ export declare const TrainingDataConfigFilterSensitiveLog: (
|
|
|
2226
2321
|
export declare const GetCustomModelResponseFilterSensitiveLog: (
|
|
2227
2322
|
obj: GetCustomModelResponse
|
|
2228
2323
|
) => any;
|
|
2324
|
+
export declare const CreatePromptRouterRequestFilterSensitiveLog: (
|
|
2325
|
+
obj: CreatePromptRouterRequest
|
|
2326
|
+
) => any;
|
|
2229
2327
|
export declare const GetPromptRouterResponseFilterSensitiveLog: (
|
|
2230
2328
|
obj: GetPromptRouterResponse
|
|
2231
2329
|
) => any;
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
CreateModelInvocationJobCommandInput,
|
|
44
44
|
CreateModelInvocationJobCommandOutput,
|
|
45
45
|
} from "../commands/CreateModelInvocationJobCommand";
|
|
46
|
+
import {
|
|
47
|
+
CreatePromptRouterCommandInput,
|
|
48
|
+
CreatePromptRouterCommandOutput,
|
|
49
|
+
} from "../commands/CreatePromptRouterCommand";
|
|
46
50
|
import {
|
|
47
51
|
CreateProvisionedModelThroughputCommandInput,
|
|
48
52
|
CreateProvisionedModelThroughputCommandOutput,
|
|
@@ -71,6 +75,10 @@ import {
|
|
|
71
75
|
DeleteModelInvocationLoggingConfigurationCommandInput,
|
|
72
76
|
DeleteModelInvocationLoggingConfigurationCommandOutput,
|
|
73
77
|
} from "../commands/DeleteModelInvocationLoggingConfigurationCommand";
|
|
78
|
+
import {
|
|
79
|
+
DeletePromptRouterCommandInput,
|
|
80
|
+
DeletePromptRouterCommandOutput,
|
|
81
|
+
} from "../commands/DeletePromptRouterCommand";
|
|
74
82
|
import {
|
|
75
83
|
DeleteProvisionedModelThroughputCommandInput,
|
|
76
84
|
DeleteProvisionedModelThroughputCommandOutput,
|
|
@@ -271,6 +279,10 @@ export declare const se_CreateModelInvocationJobCommand: (
|
|
|
271
279
|
input: CreateModelInvocationJobCommandInput,
|
|
272
280
|
context: __SerdeContext
|
|
273
281
|
) => Promise<__HttpRequest>;
|
|
282
|
+
export declare const se_CreatePromptRouterCommand: (
|
|
283
|
+
input: CreatePromptRouterCommandInput,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<__HttpRequest>;
|
|
274
286
|
export declare const se_CreateProvisionedModelThroughputCommand: (
|
|
275
287
|
input: CreateProvisionedModelThroughputCommandInput,
|
|
276
288
|
context: __SerdeContext
|
|
@@ -299,6 +311,10 @@ export declare const se_DeleteModelInvocationLoggingConfigurationCommand: (
|
|
|
299
311
|
input: DeleteModelInvocationLoggingConfigurationCommandInput,
|
|
300
312
|
context: __SerdeContext
|
|
301
313
|
) => Promise<__HttpRequest>;
|
|
314
|
+
export declare const se_DeletePromptRouterCommand: (
|
|
315
|
+
input: DeletePromptRouterCommandInput,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<__HttpRequest>;
|
|
302
318
|
export declare const se_DeleteProvisionedModelThroughputCommand: (
|
|
303
319
|
input: DeleteProvisionedModelThroughputCommandInput,
|
|
304
320
|
context: __SerdeContext
|
|
@@ -499,6 +515,10 @@ export declare const de_CreateModelInvocationJobCommand: (
|
|
|
499
515
|
output: __HttpResponse,
|
|
500
516
|
context: __SerdeContext
|
|
501
517
|
) => Promise<CreateModelInvocationJobCommandOutput>;
|
|
518
|
+
export declare const de_CreatePromptRouterCommand: (
|
|
519
|
+
output: __HttpResponse,
|
|
520
|
+
context: __SerdeContext
|
|
521
|
+
) => Promise<CreatePromptRouterCommandOutput>;
|
|
502
522
|
export declare const de_CreateProvisionedModelThroughputCommand: (
|
|
503
523
|
output: __HttpResponse,
|
|
504
524
|
context: __SerdeContext
|
|
@@ -527,6 +547,10 @@ export declare const de_DeleteModelInvocationLoggingConfigurationCommand: (
|
|
|
527
547
|
output: __HttpResponse,
|
|
528
548
|
context: __SerdeContext
|
|
529
549
|
) => Promise<DeleteModelInvocationLoggingConfigurationCommandOutput>;
|
|
550
|
+
export declare const de_DeletePromptRouterCommand: (
|
|
551
|
+
output: __HttpResponse,
|
|
552
|
+
context: __SerdeContext
|
|
553
|
+
) => Promise<DeletePromptRouterCommandOutput>;
|
|
530
554
|
export declare const de_DeleteProvisionedModelThroughputCommand: (
|
|
531
555
|
output: __HttpResponse,
|
|
532
556
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.772.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.758.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.772.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.772.0",
|
|
28
28
|
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|