@aws-sdk/client-machine-learning 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.
Files changed (29) hide show
  1. package/dist-types/commands/AddTagsCommand.d.ts +3 -3
  2. package/dist-types/commands/CreateBatchPredictionCommand.d.ts +1 -1
  3. package/dist-types/commands/CreateDataSourceFromRDSCommand.d.ts +5 -5
  4. package/dist-types/commands/CreateDataSourceFromRedshiftCommand.d.ts +4 -4
  5. package/dist-types/commands/CreateDataSourceFromS3Command.d.ts +2 -2
  6. package/dist-types/commands/CreateEvaluationCommand.d.ts +1 -1
  7. package/dist-types/commands/CreateMLModelCommand.d.ts +2 -2
  8. package/dist-types/commands/CreateRealtimeEndpointCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteBatchPredictionCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteDataSourceCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteEvaluationCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteMLModelCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteRealtimeEndpointCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
  15. package/dist-types/commands/DescribeBatchPredictionsCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeDataSourcesCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeEvaluationsCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeMLModelsCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeTagsCommand.d.ts +1 -1
  20. package/dist-types/commands/GetBatchPredictionCommand.d.ts +1 -1
  21. package/dist-types/commands/GetDataSourceCommand.d.ts +1 -1
  22. package/dist-types/commands/GetEvaluationCommand.d.ts +1 -1
  23. package/dist-types/commands/GetMLModelCommand.d.ts +1 -1
  24. package/dist-types/commands/PredictCommand.d.ts +2 -2
  25. package/dist-types/commands/UpdateBatchPredictionCommand.d.ts +1 -1
  26. package/dist-types/commands/UpdateDataSourceCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateEvaluationCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateMLModelCommand.d.ts +1 -1
  29. package/package.json +3 -3
@@ -28,9 +28,9 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
28
28
  * import { MachineLearningClient, AddTagsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
29
29
  * // const { MachineLearningClient, AddTagsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
30
30
  * const client = new MachineLearningClient(config);
31
- * const input = {
32
- * Tags: [ // required
33
- * {
31
+ * const input = { // AddTagsInput
32
+ * Tags: [ // TagList // required
33
+ * { // Tag
34
34
  * Key: "STRING_VALUE",
35
35
  * Value: "STRING_VALUE",
36
36
  * },
@@ -37,7 +37,7 @@ export interface CreateBatchPredictionCommandOutput extends CreateBatchPredictio
37
37
  * import { MachineLearningClient, CreateBatchPredictionCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
38
38
  * // const { MachineLearningClient, CreateBatchPredictionCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
39
39
  * const client = new MachineLearningClient(config);
40
- * const input = {
40
+ * const input = { // CreateBatchPredictionInput
41
41
  * BatchPredictionId: "STRING_VALUE", // required
42
42
  * BatchPredictionName: "STRING_VALUE",
43
43
  * MLModelId: "STRING_VALUE", // required
@@ -37,16 +37,16 @@ export interface CreateDataSourceFromRDSCommandOutput extends CreateDataSourceFr
37
37
  * import { MachineLearningClient, CreateDataSourceFromRDSCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
38
38
  * // const { MachineLearningClient, CreateDataSourceFromRDSCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
39
39
  * const client = new MachineLearningClient(config);
40
- * const input = {
40
+ * const input = { // CreateDataSourceFromRDSInput
41
41
  * DataSourceId: "STRING_VALUE", // required
42
42
  * DataSourceName: "STRING_VALUE",
43
- * RDSData: {
44
- * DatabaseInformation: {
43
+ * RDSData: { // RDSDataSpec
44
+ * DatabaseInformation: { // RDSDatabase
45
45
  * InstanceIdentifier: "STRING_VALUE", // required
46
46
  * DatabaseName: "STRING_VALUE", // required
47
47
  * },
48
48
  * SelectSqlQuery: "STRING_VALUE", // required
49
- * DatabaseCredentials: {
49
+ * DatabaseCredentials: { // RDSDatabaseCredentials
50
50
  * Username: "STRING_VALUE", // required
51
51
  * Password: "STRING_VALUE", // required
52
52
  * },
@@ -57,7 +57,7 @@ export interface CreateDataSourceFromRDSCommandOutput extends CreateDataSourceFr
57
57
  * ResourceRole: "STRING_VALUE", // required
58
58
  * ServiceRole: "STRING_VALUE", // required
59
59
  * SubnetId: "STRING_VALUE", // required
60
- * SecurityGroupIds: [ // required
60
+ * SecurityGroupIds: [ // EDPSecurityGroupIds // required
61
61
  * "STRING_VALUE",
62
62
  * ],
63
63
  * },
@@ -58,16 +58,16 @@ export interface CreateDataSourceFromRedshiftCommandOutput extends CreateDataSou
58
58
  * import { MachineLearningClient, CreateDataSourceFromRedshiftCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
59
59
  * // const { MachineLearningClient, CreateDataSourceFromRedshiftCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
60
60
  * const client = new MachineLearningClient(config);
61
- * const input = {
61
+ * const input = { // CreateDataSourceFromRedshiftInput
62
62
  * DataSourceId: "STRING_VALUE", // required
63
63
  * DataSourceName: "STRING_VALUE",
64
- * DataSpec: {
65
- * DatabaseInformation: {
64
+ * DataSpec: { // RedshiftDataSpec
65
+ * DatabaseInformation: { // RedshiftDatabase
66
66
  * DatabaseName: "STRING_VALUE", // required
67
67
  * ClusterIdentifier: "STRING_VALUE", // required
68
68
  * },
69
69
  * SelectSqlQuery: "STRING_VALUE", // required
70
- * DatabaseCredentials: {
70
+ * DatabaseCredentials: { // RedshiftDatabaseCredentials
71
71
  * Username: "STRING_VALUE", // required
72
72
  * Password: "STRING_VALUE", // required
73
73
  * },
@@ -56,10 +56,10 @@ export interface CreateDataSourceFromS3CommandOutput extends CreateDataSourceFro
56
56
  * import { MachineLearningClient, CreateDataSourceFromS3Command } from "@aws-sdk/client-machine-learning"; // ES Modules import
57
57
  * // const { MachineLearningClient, CreateDataSourceFromS3Command } = require("@aws-sdk/client-machine-learning"); // CommonJS import
58
58
  * const client = new MachineLearningClient(config);
59
- * const input = {
59
+ * const input = { // CreateDataSourceFromS3Input
60
60
  * DataSourceId: "STRING_VALUE", // required
61
61
  * DataSourceName: "STRING_VALUE",
62
- * DataSpec: {
62
+ * DataSpec: { // S3DataSpec
63
63
  * DataLocationS3: "STRING_VALUE", // required
64
64
  * DataRearrangement: "STRING_VALUE",
65
65
  * DataSchema: "STRING_VALUE",
@@ -37,7 +37,7 @@ export interface CreateEvaluationCommandOutput extends CreateEvaluationOutput, _
37
37
  * import { MachineLearningClient, CreateEvaluationCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
38
38
  * // const { MachineLearningClient, CreateEvaluationCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
39
39
  * const client = new MachineLearningClient(config);
40
- * const input = {
40
+ * const input = { // CreateEvaluationInput
41
41
  * EvaluationId: "STRING_VALUE", // required
42
42
  * EvaluationName: "STRING_VALUE",
43
43
  * MLModelId: "STRING_VALUE", // required
@@ -45,11 +45,11 @@ export interface CreateMLModelCommandOutput extends CreateMLModelOutput, __Metad
45
45
  * import { MachineLearningClient, CreateMLModelCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
46
46
  * // const { MachineLearningClient, CreateMLModelCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
47
47
  * const client = new MachineLearningClient(config);
48
- * const input = {
48
+ * const input = { // CreateMLModelInput
49
49
  * MLModelId: "STRING_VALUE", // required
50
50
  * MLModelName: "STRING_VALUE",
51
51
  * MLModelType: "STRING_VALUE", // required
52
- * Parameters: {
52
+ * Parameters: { // TrainingParameters
53
53
  * "<keys>": "STRING_VALUE",
54
54
  * },
55
55
  * TrainingDataSourceId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface CreateRealtimeEndpointCommandOutput extends CreateRealtimeEndpo
26
26
  * import { MachineLearningClient, CreateRealtimeEndpointCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
27
27
  * // const { MachineLearningClient, CreateRealtimeEndpointCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
28
28
  * const client = new MachineLearningClient(config);
29
- * const input = {
29
+ * const input = { // CreateRealtimeEndpointInput
30
30
  * MLModelId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new CreateRealtimeEndpointCommand(input);
@@ -31,7 +31,7 @@ export interface DeleteBatchPredictionCommandOutput extends DeleteBatchPredictio
31
31
  * import { MachineLearningClient, DeleteBatchPredictionCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
32
32
  * // const { MachineLearningClient, DeleteBatchPredictionCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
33
33
  * const client = new MachineLearningClient(config);
34
- * const input = {
34
+ * const input = { // DeleteBatchPredictionInput
35
35
  * BatchPredictionId: "STRING_VALUE", // required
36
36
  * };
37
37
  * const command = new DeleteBatchPredictionCommand(input);
@@ -29,7 +29,7 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceOutput, _
29
29
  * import { MachineLearningClient, DeleteDataSourceCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
30
30
  * // const { MachineLearningClient, DeleteDataSourceCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
31
31
  * const client = new MachineLearningClient(config);
32
- * const input = {
32
+ * const input = { // DeleteDataSourceInput
33
33
  * DataSourceId: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new DeleteDataSourceCommand(input);
@@ -31,7 +31,7 @@ export interface DeleteEvaluationCommandOutput extends DeleteEvaluationOutput, _
31
31
  * import { MachineLearningClient, DeleteEvaluationCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
32
32
  * // const { MachineLearningClient, DeleteEvaluationCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
33
33
  * const client = new MachineLearningClient(config);
34
- * const input = {
34
+ * const input = { // DeleteEvaluationInput
35
35
  * EvaluationId: "STRING_VALUE", // required
36
36
  * };
37
37
  * const command = new DeleteEvaluationCommand(input);
@@ -31,7 +31,7 @@ export interface DeleteMLModelCommandOutput extends DeleteMLModelOutput, __Metad
31
31
  * import { MachineLearningClient, DeleteMLModelCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
32
32
  * // const { MachineLearningClient, DeleteMLModelCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
33
33
  * const client = new MachineLearningClient(config);
34
- * const input = {
34
+ * const input = { // DeleteMLModelInput
35
35
  * MLModelId: "STRING_VALUE", // required
36
36
  * };
37
37
  * const command = new DeleteMLModelCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteRealtimeEndpointCommandOutput extends DeleteRealtimeEndpo
26
26
  * import { MachineLearningClient, DeleteRealtimeEndpointCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
27
27
  * // const { MachineLearningClient, DeleteRealtimeEndpointCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
28
28
  * const client = new MachineLearningClient(config);
29
- * const input = {
29
+ * const input = { // DeleteRealtimeEndpointInput
30
30
  * MLModelId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteRealtimeEndpointCommand(input);
@@ -27,8 +27,8 @@ export interface DeleteTagsCommandOutput extends DeleteTagsOutput, __MetadataBea
27
27
  * import { MachineLearningClient, DeleteTagsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, DeleteTagsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
31
- * TagKeys: [ // required
30
+ * const input = { // DeleteTagsInput
31
+ * TagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * ResourceId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DescribeBatchPredictionsCommandOutput extends DescribeBatchPred
26
26
  * import { MachineLearningClient, DescribeBatchPredictionsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
27
27
  * // const { MachineLearningClient, DescribeBatchPredictionsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
28
28
  * const client = new MachineLearningClient(config);
29
- * const input = {
29
+ * const input = { // DescribeBatchPredictionsInput
30
30
  * FilterVariable: "STRING_VALUE",
31
31
  * EQ: "STRING_VALUE",
32
32
  * GT: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface DescribeDataSourcesCommandOutput extends DescribeDataSourcesOut
26
26
  * import { MachineLearningClient, DescribeDataSourcesCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
27
27
  * // const { MachineLearningClient, DescribeDataSourcesCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
28
28
  * const client = new MachineLearningClient(config);
29
- * const input = {
29
+ * const input = { // DescribeDataSourcesInput
30
30
  * FilterVariable: "STRING_VALUE",
31
31
  * EQ: "STRING_VALUE",
32
32
  * GT: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface DescribeEvaluationsCommandOutput extends DescribeEvaluationsOut
26
26
  * import { MachineLearningClient, DescribeEvaluationsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
27
27
  * // const { MachineLearningClient, DescribeEvaluationsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
28
28
  * const client = new MachineLearningClient(config);
29
- * const input = {
29
+ * const input = { // DescribeEvaluationsInput
30
30
  * FilterVariable: "STRING_VALUE",
31
31
  * EQ: "STRING_VALUE",
32
32
  * GT: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface DescribeMLModelsCommandOutput extends DescribeMLModelsOutput, _
26
26
  * import { MachineLearningClient, DescribeMLModelsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
27
27
  * // const { MachineLearningClient, DescribeMLModelsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
28
28
  * const client = new MachineLearningClient(config);
29
- * const input = {
29
+ * const input = { // DescribeMLModelsInput
30
30
  * FilterVariable: "STRING_VALUE",
31
31
  * EQ: "STRING_VALUE",
32
32
  * GT: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat
26
26
  * import { MachineLearningClient, DescribeTagsCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
27
27
  * // const { MachineLearningClient, DescribeTagsCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
28
28
  * const client = new MachineLearningClient(config);
29
- * const input = {
29
+ * const input = { // DescribeTagsInput
30
30
  * ResourceId: "STRING_VALUE", // required
31
31
  * ResourceType: "STRING_VALUE", // required
32
32
  * };
@@ -27,7 +27,7 @@ export interface GetBatchPredictionCommandOutput extends GetBatchPredictionOutpu
27
27
  * import { MachineLearningClient, GetBatchPredictionCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, GetBatchPredictionCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
30
+ * const input = { // GetBatchPredictionInput
31
31
  * BatchPredictionId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetBatchPredictionCommand(input);
@@ -29,7 +29,7 @@ export interface GetDataSourceCommandOutput extends GetDataSourceOutput, __Metad
29
29
  * import { MachineLearningClient, GetDataSourceCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
30
30
  * // const { MachineLearningClient, GetDataSourceCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
31
31
  * const client = new MachineLearningClient(config);
32
- * const input = {
32
+ * const input = { // GetDataSourceInput
33
33
  * DataSourceId: "STRING_VALUE", // required
34
34
  * Verbose: true || false,
35
35
  * };
@@ -26,7 +26,7 @@ export interface GetEvaluationCommandOutput extends GetEvaluationOutput, __Metad
26
26
  * import { MachineLearningClient, GetEvaluationCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
27
27
  * // const { MachineLearningClient, GetEvaluationCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
28
28
  * const client = new MachineLearningClient(config);
29
- * const input = {
29
+ * const input = { // GetEvaluationInput
30
30
  * EvaluationId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetEvaluationCommand(input);
@@ -28,7 +28,7 @@ export interface GetMLModelCommandOutput extends GetMLModelOutput, __MetadataBea
28
28
  * import { MachineLearningClient, GetMLModelCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
29
29
  * // const { MachineLearningClient, GetMLModelCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
30
30
  * const client = new MachineLearningClient(config);
31
- * const input = {
31
+ * const input = { // GetMLModelInput
32
32
  * MLModelId: "STRING_VALUE", // required
33
33
  * Verbose: true || false,
34
34
  * };
@@ -29,9 +29,9 @@ export interface PredictCommandOutput extends PredictOutput, __MetadataBearer {
29
29
  * import { MachineLearningClient, PredictCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
30
30
  * // const { MachineLearningClient, PredictCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
31
31
  * const client = new MachineLearningClient(config);
32
- * const input = {
32
+ * const input = { // PredictInput
33
33
  * MLModelId: "STRING_VALUE", // required
34
- * Record: { // required
34
+ * Record: { // Record // required
35
35
  * "<keys>": "STRING_VALUE",
36
36
  * },
37
37
  * PredictEndpoint: "STRING_VALUE", // required
@@ -27,7 +27,7 @@ export interface UpdateBatchPredictionCommandOutput extends UpdateBatchPredictio
27
27
  * import { MachineLearningClient, UpdateBatchPredictionCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, UpdateBatchPredictionCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
30
+ * const input = { // UpdateBatchPredictionInput
31
31
  * BatchPredictionId: "STRING_VALUE", // required
32
32
  * BatchPredictionName: "STRING_VALUE", // required
33
33
  * };
@@ -27,7 +27,7 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceOutput, _
27
27
  * import { MachineLearningClient, UpdateDataSourceCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, UpdateDataSourceCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
30
+ * const input = { // UpdateDataSourceInput
31
31
  * DataSourceId: "STRING_VALUE", // required
32
32
  * DataSourceName: "STRING_VALUE", // required
33
33
  * };
@@ -27,7 +27,7 @@ export interface UpdateEvaluationCommandOutput extends UpdateEvaluationOutput, _
27
27
  * import { MachineLearningClient, UpdateEvaluationCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, UpdateEvaluationCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
30
+ * const input = { // UpdateEvaluationInput
31
31
  * EvaluationId: "STRING_VALUE", // required
32
32
  * EvaluationName: "STRING_VALUE", // required
33
33
  * };
@@ -27,7 +27,7 @@ export interface UpdateMLModelCommandOutput extends UpdateMLModelOutput, __Metad
27
27
  * import { MachineLearningClient, UpdateMLModelCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, UpdateMLModelCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
30
+ * const input = { // UpdateMLModelInput
31
31
  * MLModelId: "STRING_VALUE", // required
32
32
  * MLModelName: "STRING_VALUE",
33
33
  * ScoreThreshold: Number("float"),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-machine-learning",
3
3
  "description": "AWS SDK for JavaScript Machine Learning Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
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.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
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",