@aws-sdk/client-dax 3.299.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/CreateClusterCommand.d.ts +27 -0
- package/dist-types/commands/CreateParameterGroupCommand.d.ts +4 -0
- package/dist-types/commands/CreateSubnetGroupCommand.d.ts +7 -0
- package/dist-types/commands/DecreaseReplicationFactorCommand.d.ts +10 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +3 -0
- package/dist-types/commands/DeleteParameterGroupCommand.d.ts +3 -0
- package/dist-types/commands/DeleteSubnetGroupCommand.d.ts +3 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +7 -0
- package/dist-types/commands/DescribeDefaultParametersCommand.d.ts +4 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +9 -0
- package/dist-types/commands/DescribeParameterGroupsCommand.d.ts +7 -0
- package/dist-types/commands/DescribeParametersCommand.d.ts +6 -0
- package/dist-types/commands/DescribeSubnetGroupsCommand.d.ts +7 -0
- package/dist-types/commands/IncreaseReplicationFactorCommand.d.ts +7 -0
- package/dist-types/commands/ListTagsCommand.d.ts +4 -0
- package/dist-types/commands/RebootNodeCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +11 -0
- package/dist-types/commands/UpdateParameterGroupCommand.d.ts +9 -0
- package/dist-types/commands/UpdateSubnetGroupCommand.d.ts +7 -0
- package/package.json +8 -8
|
@@ -26,6 +26,33 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
|
|
|
26
26
|
* import { DAXClient, CreateClusterCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
27
27
|
* // const { DAXClient, CreateClusterCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
28
28
|
* const client = new DAXClient(config);
|
|
29
|
+
* const input = { // CreateClusterRequest
|
|
30
|
+
* ClusterName: "STRING_VALUE", // required
|
|
31
|
+
* NodeType: "STRING_VALUE", // required
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* ReplicationFactor: Number("int"), // required
|
|
34
|
+
* AvailabilityZones: [ // AvailabilityZoneList
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* SubnetGroupName: "STRING_VALUE",
|
|
38
|
+
* SecurityGroupIds: [ // SecurityGroupIdentifierList
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* PreferredMaintenanceWindow: "STRING_VALUE",
|
|
42
|
+
* NotificationTopicArn: "STRING_VALUE",
|
|
43
|
+
* IamRoleArn: "STRING_VALUE", // required
|
|
44
|
+
* ParameterGroupName: "STRING_VALUE",
|
|
45
|
+
* Tags: [ // TagList
|
|
46
|
+
* { // Tag
|
|
47
|
+
* Key: "STRING_VALUE",
|
|
48
|
+
* Value: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* SSESpecification: { // SSESpecification
|
|
52
|
+
* Enabled: true || false, // required
|
|
53
|
+
* },
|
|
54
|
+
* ClusterEndpointEncryptionType: "STRING_VALUE",
|
|
55
|
+
* };
|
|
29
56
|
* const command = new CreateClusterCommand(input);
|
|
30
57
|
* const response = await client.send(command);
|
|
31
58
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface CreateParameterGroupCommandOutput extends CreateParameterGroupR
|
|
|
27
27
|
* import { DAXClient, CreateParameterGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, CreateParameterGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
+
* const input = { // CreateParameterGroupRequest
|
|
31
|
+
* ParameterGroupName: "STRING_VALUE", // required
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new CreateParameterGroupCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface CreateSubnetGroupCommandOutput extends CreateSubnetGroupRespons
|
|
|
26
26
|
* import { DAXClient, CreateSubnetGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
27
27
|
* // const { DAXClient, CreateSubnetGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
28
28
|
* const client = new DAXClient(config);
|
|
29
|
+
* const input = { // CreateSubnetGroupRequest
|
|
30
|
+
* SubnetGroupName: "STRING_VALUE", // required
|
|
31
|
+
* Description: "STRING_VALUE",
|
|
32
|
+
* SubnetIds: [ // SubnetIdentifierList // required
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* };
|
|
29
36
|
* const command = new CreateSubnetGroupCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -29,6 +29,16 @@ export interface DecreaseReplicationFactorCommandOutput extends DecreaseReplicat
|
|
|
29
29
|
* import { DAXClient, DecreaseReplicationFactorCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
30
30
|
* // const { DAXClient, DecreaseReplicationFactorCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
31
31
|
* const client = new DAXClient(config);
|
|
32
|
+
* const input = { // DecreaseReplicationFactorRequest
|
|
33
|
+
* ClusterName: "STRING_VALUE", // required
|
|
34
|
+
* NewReplicationFactor: Number("int"), // required
|
|
35
|
+
* AvailabilityZones: [ // AvailabilityZoneList
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* NodeIdsToRemove: [ // NodeIdentifierList
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* };
|
|
32
42
|
* const command = new DecreaseReplicationFactorCommand(input);
|
|
33
43
|
* const response = await client.send(command);
|
|
34
44
|
* ```
|
|
@@ -30,6 +30,9 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
30
30
|
* import { DAXClient, DeleteClusterCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
31
31
|
* // const { DAXClient, DeleteClusterCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
32
32
|
* const client = new DAXClient(config);
|
|
33
|
+
* const input = { // DeleteClusterRequest
|
|
34
|
+
* ClusterName: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
33
36
|
* const command = new DeleteClusterCommand(input);
|
|
34
37
|
* const response = await client.send(command);
|
|
35
38
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteParameterGroupCommandOutput extends DeleteParameterGroupR
|
|
|
27
27
|
* import { DAXClient, DeleteParameterGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, DeleteParameterGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
+
* const input = { // DeleteParameterGroupRequest
|
|
31
|
+
* ParameterGroupName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteParameterGroupCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -30,6 +30,9 @@ export interface DeleteSubnetGroupCommandOutput extends DeleteSubnetGroupRespons
|
|
|
30
30
|
* import { DAXClient, DeleteSubnetGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
31
31
|
* // const { DAXClient, DeleteSubnetGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
32
32
|
* const client = new DAXClient(config);
|
|
33
|
+
* const input = { // DeleteSubnetGroupRequest
|
|
34
|
+
* SubnetGroupName: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
33
36
|
* const command = new DeleteSubnetGroupCommand(input);
|
|
34
37
|
* const response = await client.send(command);
|
|
35
38
|
* ```
|
|
@@ -38,6 +38,13 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse,
|
|
|
38
38
|
* import { DAXClient, DescribeClustersCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
39
39
|
* // const { DAXClient, DescribeClustersCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
40
40
|
* const client = new DAXClient(config);
|
|
41
|
+
* const input = { // DescribeClustersRequest
|
|
42
|
+
* ClusterNames: [ // ClusterNameList
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
45
|
+
* MaxResults: Number("int"),
|
|
46
|
+
* NextToken: "STRING_VALUE",
|
|
47
|
+
* };
|
|
41
48
|
* const command = new DescribeClustersCommand(input);
|
|
42
49
|
* const response = await client.send(command);
|
|
43
50
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DescribeDefaultParametersCommandOutput extends DescribeDefaultP
|
|
|
27
27
|
* import { DAXClient, DescribeDefaultParametersCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, DescribeDefaultParametersCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
+
* const input = { // DescribeDefaultParametersRequest
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DescribeDefaultParametersCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -30,6 +30,15 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M
|
|
|
30
30
|
* import { DAXClient, DescribeEventsCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
31
31
|
* // const { DAXClient, DescribeEventsCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
32
32
|
* const client = new DAXClient(config);
|
|
33
|
+
* const input = { // DescribeEventsRequest
|
|
34
|
+
* SourceName: "STRING_VALUE",
|
|
35
|
+
* SourceType: "STRING_VALUE",
|
|
36
|
+
* StartTime: new Date("TIMESTAMP"),
|
|
37
|
+
* EndTime: new Date("TIMESTAMP"),
|
|
38
|
+
* Duration: Number("int"),
|
|
39
|
+
* MaxResults: Number("int"),
|
|
40
|
+
* NextToken: "STRING_VALUE",
|
|
41
|
+
* };
|
|
33
42
|
* const command = new DescribeEventsCommand(input);
|
|
34
43
|
* const response = await client.send(command);
|
|
35
44
|
* ```
|
|
@@ -27,6 +27,13 @@ export interface DescribeParameterGroupsCommandOutput extends DescribeParameterG
|
|
|
27
27
|
* import { DAXClient, DescribeParameterGroupsCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, DescribeParameterGroupsCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
+
* const input = { // DescribeParameterGroupsRequest
|
|
31
|
+
* ParameterGroupNames: [ // ParameterGroupNameList
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
30
37
|
* const command = new DescribeParameterGroupsCommand(input);
|
|
31
38
|
* const response = await client.send(command);
|
|
32
39
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface DescribeParametersCommandOutput extends DescribeParametersRespo
|
|
|
26
26
|
* import { DAXClient, DescribeParametersCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
27
27
|
* // const { DAXClient, DescribeParametersCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
28
28
|
* const client = new DAXClient(config);
|
|
29
|
+
* const input = { // DescribeParametersRequest
|
|
30
|
+
* ParameterGroupName: "STRING_VALUE", // required
|
|
31
|
+
* Source: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new DescribeParametersCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -27,6 +27,13 @@ export interface DescribeSubnetGroupsCommandOutput extends DescribeSubnetGroupsR
|
|
|
27
27
|
* import { DAXClient, DescribeSubnetGroupsCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, DescribeSubnetGroupsCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
+
* const input = { // DescribeSubnetGroupsRequest
|
|
31
|
+
* SubnetGroupNames: [ // SubnetGroupNameList
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
30
37
|
* const command = new DescribeSubnetGroupsCommand(input);
|
|
31
38
|
* const response = await client.send(command);
|
|
32
39
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface IncreaseReplicationFactorCommandOutput extends IncreaseReplicat
|
|
|
26
26
|
* import { DAXClient, IncreaseReplicationFactorCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
27
27
|
* // const { DAXClient, IncreaseReplicationFactorCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
28
28
|
* const client = new DAXClient(config);
|
|
29
|
+
* const input = { // IncreaseReplicationFactorRequest
|
|
30
|
+
* ClusterName: "STRING_VALUE", // required
|
|
31
|
+
* NewReplicationFactor: Number("int"), // required
|
|
32
|
+
* AvailabilityZones: [ // AvailabilityZoneList
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* };
|
|
29
36
|
* const command = new IncreaseReplicationFactorCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
27
27
|
* import { DAXClient, ListTagsCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, ListTagsCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
+
* const input = { // ListTagsRequest
|
|
31
|
+
* ResourceName: "STRING_VALUE", // required
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new ListTagsCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -32,6 +32,10 @@ export interface RebootNodeCommandOutput extends RebootNodeResponse, __MetadataB
|
|
|
32
32
|
* import { DAXClient, RebootNodeCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
33
33
|
* // const { DAXClient, RebootNodeCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
34
34
|
* const client = new DAXClient(config);
|
|
35
|
+
* const input = { // RebootNodeRequest
|
|
36
|
+
* ClusterName: "STRING_VALUE", // required
|
|
37
|
+
* NodeId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
35
39
|
* const command = new RebootNodeCommand(input);
|
|
36
40
|
* const response = await client.send(command);
|
|
37
41
|
* ```
|
|
@@ -27,6 +27,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
27
27
|
* import { DAXClient, TagResourceCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, TagResourceCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
+
* const input = { // TagResourceRequest
|
|
31
|
+
* ResourceName: "STRING_VALUE", // required
|
|
32
|
+
* Tags: [ // TagList // required
|
|
33
|
+
* { // Tag
|
|
34
|
+
* Key: "STRING_VALUE",
|
|
35
|
+
* Value: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
30
39
|
* const command = new TagResourceCommand(input);
|
|
31
40
|
* const response = await client.send(command);
|
|
32
41
|
* ```
|
|
@@ -27,6 +27,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
27
27
|
* import { DAXClient, UntagResourceCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, UntagResourceCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
+
* const input = { // UntagResourceRequest
|
|
31
|
+
* ResourceName: "STRING_VALUE", // required
|
|
32
|
+
* TagKeys: [ // KeyList // required
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* };
|
|
30
36
|
* const command = new UntagResourceCommand(input);
|
|
31
37
|
* const response = await client.send(command);
|
|
32
38
|
* ```
|
|
@@ -28,6 +28,17 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met
|
|
|
28
28
|
* import { DAXClient, UpdateClusterCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
29
29
|
* // const { DAXClient, UpdateClusterCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
30
30
|
* const client = new DAXClient(config);
|
|
31
|
+
* const input = { // UpdateClusterRequest
|
|
32
|
+
* ClusterName: "STRING_VALUE", // required
|
|
33
|
+
* Description: "STRING_VALUE",
|
|
34
|
+
* PreferredMaintenanceWindow: "STRING_VALUE",
|
|
35
|
+
* NotificationTopicArn: "STRING_VALUE",
|
|
36
|
+
* NotificationTopicStatus: "STRING_VALUE",
|
|
37
|
+
* ParameterGroupName: "STRING_VALUE",
|
|
38
|
+
* SecurityGroupIds: [ // SecurityGroupIdentifierList
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* };
|
|
31
42
|
* const command = new UpdateClusterCommand(input);
|
|
32
43
|
* const response = await client.send(command);
|
|
33
44
|
* ```
|
|
@@ -28,6 +28,15 @@ export interface UpdateParameterGroupCommandOutput extends UpdateParameterGroupR
|
|
|
28
28
|
* import { DAXClient, UpdateParameterGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
29
29
|
* // const { DAXClient, UpdateParameterGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
30
30
|
* const client = new DAXClient(config);
|
|
31
|
+
* const input = { // UpdateParameterGroupRequest
|
|
32
|
+
* ParameterGroupName: "STRING_VALUE", // required
|
|
33
|
+
* ParameterNameValues: [ // ParameterNameValueList // required
|
|
34
|
+
* { // ParameterNameValue
|
|
35
|
+
* ParameterName: "STRING_VALUE",
|
|
36
|
+
* ParameterValue: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
31
40
|
* const command = new UpdateParameterGroupCommand(input);
|
|
32
41
|
* const response = await client.send(command);
|
|
33
42
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface UpdateSubnetGroupCommandOutput extends UpdateSubnetGroupRespons
|
|
|
26
26
|
* import { DAXClient, UpdateSubnetGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
27
27
|
* // const { DAXClient, UpdateSubnetGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
28
28
|
* const client = new DAXClient(config);
|
|
29
|
+
* const input = { // UpdateSubnetGroupRequest
|
|
30
|
+
* SubnetGroupName: "STRING_VALUE", // required
|
|
31
|
+
* Description: "STRING_VALUE",
|
|
32
|
+
* SubnetIds: [ // SubnetIdentifierList
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* };
|
|
29
36
|
* const command = new UpdateSubnetGroupCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dax",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dax 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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "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",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|