@aws-sdk/client-scheduler 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/CreateScheduleCommand.d.ts +24 -24
- package/dist-types/commands/CreateScheduleGroupCommand.d.ts +3 -3
- package/dist-types/commands/DeleteScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteScheduleGroupCommand.d.ts +1 -1
- package/dist-types/commands/GetScheduleCommand.d.ts +1 -1
- package/dist-types/commands/GetScheduleGroupCommand.d.ts +1 -1
- package/dist-types/commands/ListScheduleGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListSchedulesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.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/UpdateScheduleCommand.d.ts +24 -24
- package/package.json +3 -3
|
@@ -26,7 +26,7 @@ export interface CreateScheduleCommandOutput extends CreateScheduleOutput, __Met
|
|
|
26
26
|
* import { SchedulerClient, CreateScheduleCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
27
27
|
* // const { SchedulerClient, CreateScheduleCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
28
28
|
* const client = new SchedulerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateScheduleInput
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* GroupName: "STRING_VALUE",
|
|
32
32
|
* ScheduleExpression: "STRING_VALUE", // required
|
|
@@ -36,27 +36,27 @@ export interface CreateScheduleCommandOutput extends CreateScheduleOutput, __Met
|
|
|
36
36
|
* ScheduleExpressionTimezone: "STRING_VALUE",
|
|
37
37
|
* State: "STRING_VALUE",
|
|
38
38
|
* KmsKeyArn: "STRING_VALUE",
|
|
39
|
-
* Target: {
|
|
39
|
+
* Target: { // Target
|
|
40
40
|
* Arn: "STRING_VALUE", // required
|
|
41
41
|
* RoleArn: "STRING_VALUE", // required
|
|
42
|
-
* DeadLetterConfig: {
|
|
42
|
+
* DeadLetterConfig: { // DeadLetterConfig
|
|
43
43
|
* Arn: "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
|
-
* RetryPolicy: {
|
|
45
|
+
* RetryPolicy: { // RetryPolicy
|
|
46
46
|
* MaximumEventAgeInSeconds: Number("int"),
|
|
47
47
|
* MaximumRetryAttempts: Number("int"),
|
|
48
48
|
* },
|
|
49
49
|
* Input: "STRING_VALUE",
|
|
50
|
-
* EcsParameters: {
|
|
50
|
+
* EcsParameters: { // EcsParameters
|
|
51
51
|
* TaskDefinitionArn: "STRING_VALUE", // required
|
|
52
52
|
* TaskCount: Number("int"),
|
|
53
53
|
* LaunchType: "STRING_VALUE",
|
|
54
|
-
* NetworkConfiguration: {
|
|
55
|
-
* awsvpcConfiguration: {
|
|
56
|
-
* Subnets: [ // required
|
|
54
|
+
* NetworkConfiguration: { // NetworkConfiguration
|
|
55
|
+
* awsvpcConfiguration: { // AwsVpcConfiguration
|
|
56
|
+
* Subnets: [ // Subnets // required
|
|
57
57
|
* "STRING_VALUE",
|
|
58
58
|
* ],
|
|
59
|
-
* SecurityGroups: [
|
|
59
|
+
* SecurityGroups: [ // SecurityGroups
|
|
60
60
|
* "STRING_VALUE",
|
|
61
61
|
* ],
|
|
62
62
|
* AssignPublicIp: "STRING_VALUE",
|
|
@@ -64,8 +64,8 @@ export interface CreateScheduleCommandOutput extends CreateScheduleOutput, __Met
|
|
|
64
64
|
* },
|
|
65
65
|
* PlatformVersion: "STRING_VALUE",
|
|
66
66
|
* Group: "STRING_VALUE",
|
|
67
|
-
* CapacityProviderStrategy: [
|
|
68
|
-
* {
|
|
67
|
+
* CapacityProviderStrategy: [ // CapacityProviderStrategy
|
|
68
|
+
* { // CapacityProviderStrategyItem
|
|
69
69
|
* capacityProvider: "STRING_VALUE", // required
|
|
70
70
|
* weight: Number("int"),
|
|
71
71
|
* base: Number("int"),
|
|
@@ -73,46 +73,46 @@ export interface CreateScheduleCommandOutput extends CreateScheduleOutput, __Met
|
|
|
73
73
|
* ],
|
|
74
74
|
* EnableECSManagedTags: true || false,
|
|
75
75
|
* EnableExecuteCommand: true || false,
|
|
76
|
-
* PlacementConstraints: [
|
|
77
|
-
* {
|
|
76
|
+
* PlacementConstraints: [ // PlacementConstraints
|
|
77
|
+
* { // PlacementConstraint
|
|
78
78
|
* type: "STRING_VALUE",
|
|
79
79
|
* expression: "STRING_VALUE",
|
|
80
80
|
* },
|
|
81
81
|
* ],
|
|
82
|
-
* PlacementStrategy: [
|
|
83
|
-
* {
|
|
82
|
+
* PlacementStrategy: [ // PlacementStrategies
|
|
83
|
+
* { // PlacementStrategy
|
|
84
84
|
* type: "STRING_VALUE",
|
|
85
85
|
* field: "STRING_VALUE",
|
|
86
86
|
* },
|
|
87
87
|
* ],
|
|
88
88
|
* PropagateTags: "STRING_VALUE",
|
|
89
89
|
* ReferenceId: "STRING_VALUE",
|
|
90
|
-
* Tags: [
|
|
91
|
-
* {
|
|
90
|
+
* Tags: [ // Tags
|
|
91
|
+
* { // TagMap
|
|
92
92
|
* "<keys>": "STRING_VALUE",
|
|
93
93
|
* },
|
|
94
94
|
* ],
|
|
95
95
|
* },
|
|
96
|
-
* EventBridgeParameters: {
|
|
96
|
+
* EventBridgeParameters: { // EventBridgeParameters
|
|
97
97
|
* DetailType: "STRING_VALUE", // required
|
|
98
98
|
* Source: "STRING_VALUE", // required
|
|
99
99
|
* },
|
|
100
|
-
* KinesisParameters: {
|
|
100
|
+
* KinesisParameters: { // KinesisParameters
|
|
101
101
|
* PartitionKey: "STRING_VALUE", // required
|
|
102
102
|
* },
|
|
103
|
-
* SageMakerPipelineParameters: {
|
|
104
|
-
* PipelineParameterList: [
|
|
105
|
-
* {
|
|
103
|
+
* SageMakerPipelineParameters: { // SageMakerPipelineParameters
|
|
104
|
+
* PipelineParameterList: [ // SageMakerPipelineParameterList
|
|
105
|
+
* { // SageMakerPipelineParameter
|
|
106
106
|
* Name: "STRING_VALUE", // required
|
|
107
107
|
* Value: "STRING_VALUE", // required
|
|
108
108
|
* },
|
|
109
109
|
* ],
|
|
110
110
|
* },
|
|
111
|
-
* SqsParameters: {
|
|
111
|
+
* SqsParameters: { // SqsParameters
|
|
112
112
|
* MessageGroupId: "STRING_VALUE",
|
|
113
113
|
* },
|
|
114
114
|
* },
|
|
115
|
-
* FlexibleTimeWindow: {
|
|
115
|
+
* FlexibleTimeWindow: { // FlexibleTimeWindow
|
|
116
116
|
* Mode: "STRING_VALUE", // required
|
|
117
117
|
* MaximumWindowInMinutes: Number("int"),
|
|
118
118
|
* },
|
|
@@ -26,10 +26,10 @@ export interface CreateScheduleGroupCommandOutput extends CreateScheduleGroupOut
|
|
|
26
26
|
* import { SchedulerClient, CreateScheduleGroupCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
27
27
|
* // const { SchedulerClient, CreateScheduleGroupCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
28
28
|
* const client = new SchedulerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateScheduleGroupInput
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
|
-
* Tags: [
|
|
32
|
-
* {
|
|
31
|
+
* Tags: [ // TagList
|
|
32
|
+
* { // Tag
|
|
33
33
|
* Key: "STRING_VALUE", // required
|
|
34
34
|
* Value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -26,7 +26,7 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleOutput, __Met
|
|
|
26
26
|
* import { SchedulerClient, DeleteScheduleCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
27
27
|
* // const { SchedulerClient, DeleteScheduleCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
28
28
|
* const client = new SchedulerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteScheduleInput
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* GroupName: "STRING_VALUE",
|
|
32
32
|
* ClientToken: "STRING_VALUE",
|
|
@@ -34,7 +34,7 @@ export interface DeleteScheduleGroupCommandOutput extends DeleteScheduleGroupOut
|
|
|
34
34
|
* import { SchedulerClient, DeleteScheduleGroupCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
35
35
|
* // const { SchedulerClient, DeleteScheduleGroupCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
36
36
|
* const client = new SchedulerClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // DeleteScheduleGroupInput
|
|
38
38
|
* Name: "STRING_VALUE", // required
|
|
39
39
|
* ClientToken: "STRING_VALUE",
|
|
40
40
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetScheduleCommandOutput extends GetScheduleOutput, __MetadataB
|
|
|
26
26
|
* import { SchedulerClient, GetScheduleCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
27
27
|
* // const { SchedulerClient, GetScheduleCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
28
28
|
* const client = new SchedulerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetScheduleInput
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* GroupName: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetScheduleGroupCommandOutput extends GetScheduleGroupOutput, _
|
|
|
26
26
|
* import { SchedulerClient, GetScheduleGroupCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
27
27
|
* // const { SchedulerClient, GetScheduleGroupCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
28
28
|
* const client = new SchedulerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetScheduleGroupInput
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetScheduleGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListScheduleGroupsCommandOutput extends ListScheduleGroupsOutpu
|
|
|
26
26
|
* import { SchedulerClient, ListScheduleGroupsCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
27
27
|
* // const { SchedulerClient, ListScheduleGroupsCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
28
28
|
* const client = new SchedulerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListScheduleGroupsInput
|
|
30
30
|
* NamePrefix: "STRING_VALUE",
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListSchedulesCommandOutput extends ListSchedulesOutput, __Metad
|
|
|
26
26
|
* import { SchedulerClient, ListSchedulesCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
27
27
|
* // const { SchedulerClient, ListSchedulesCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
28
28
|
* const client = new SchedulerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListSchedulesInput
|
|
30
30
|
* GroupName: "STRING_VALUE",
|
|
31
31
|
* NamePrefix: "STRING_VALUE",
|
|
32
32
|
* State: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
26
26
|
* import { SchedulerClient, ListTagsForResourceCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
27
27
|
* // const { SchedulerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
28
28
|
* const client = new SchedulerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceInput
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
26
26
|
* import { SchedulerClient, TagResourceCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
27
27
|
* // const { SchedulerClient, TagResourceCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
28
28
|
* const client = new SchedulerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceInput
|
|
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
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
26
26
|
* import { SchedulerClient, UntagResourceCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
27
27
|
* // const { SchedulerClient, UntagResourceCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
28
28
|
* const client = new SchedulerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceInput
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -34,7 +34,7 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleOutput, __Met
|
|
|
34
34
|
* import { SchedulerClient, UpdateScheduleCommand } from "@aws-sdk/client-scheduler"; // ES Modules import
|
|
35
35
|
* // const { SchedulerClient, UpdateScheduleCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import
|
|
36
36
|
* const client = new SchedulerClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // UpdateScheduleInput
|
|
38
38
|
* Name: "STRING_VALUE", // required
|
|
39
39
|
* GroupName: "STRING_VALUE",
|
|
40
40
|
* ScheduleExpression: "STRING_VALUE", // required
|
|
@@ -44,27 +44,27 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleOutput, __Met
|
|
|
44
44
|
* ScheduleExpressionTimezone: "STRING_VALUE",
|
|
45
45
|
* State: "STRING_VALUE",
|
|
46
46
|
* KmsKeyArn: "STRING_VALUE",
|
|
47
|
-
* Target: {
|
|
47
|
+
* Target: { // Target
|
|
48
48
|
* Arn: "STRING_VALUE", // required
|
|
49
49
|
* RoleArn: "STRING_VALUE", // required
|
|
50
|
-
* DeadLetterConfig: {
|
|
50
|
+
* DeadLetterConfig: { // DeadLetterConfig
|
|
51
51
|
* Arn: "STRING_VALUE",
|
|
52
52
|
* },
|
|
53
|
-
* RetryPolicy: {
|
|
53
|
+
* RetryPolicy: { // RetryPolicy
|
|
54
54
|
* MaximumEventAgeInSeconds: Number("int"),
|
|
55
55
|
* MaximumRetryAttempts: Number("int"),
|
|
56
56
|
* },
|
|
57
57
|
* Input: "STRING_VALUE",
|
|
58
|
-
* EcsParameters: {
|
|
58
|
+
* EcsParameters: { // EcsParameters
|
|
59
59
|
* TaskDefinitionArn: "STRING_VALUE", // required
|
|
60
60
|
* TaskCount: Number("int"),
|
|
61
61
|
* LaunchType: "STRING_VALUE",
|
|
62
|
-
* NetworkConfiguration: {
|
|
63
|
-
* awsvpcConfiguration: {
|
|
64
|
-
* Subnets: [ // required
|
|
62
|
+
* NetworkConfiguration: { // NetworkConfiguration
|
|
63
|
+
* awsvpcConfiguration: { // AwsVpcConfiguration
|
|
64
|
+
* Subnets: [ // Subnets // required
|
|
65
65
|
* "STRING_VALUE",
|
|
66
66
|
* ],
|
|
67
|
-
* SecurityGroups: [
|
|
67
|
+
* SecurityGroups: [ // SecurityGroups
|
|
68
68
|
* "STRING_VALUE",
|
|
69
69
|
* ],
|
|
70
70
|
* AssignPublicIp: "STRING_VALUE",
|
|
@@ -72,8 +72,8 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleOutput, __Met
|
|
|
72
72
|
* },
|
|
73
73
|
* PlatformVersion: "STRING_VALUE",
|
|
74
74
|
* Group: "STRING_VALUE",
|
|
75
|
-
* CapacityProviderStrategy: [
|
|
76
|
-
* {
|
|
75
|
+
* CapacityProviderStrategy: [ // CapacityProviderStrategy
|
|
76
|
+
* { // CapacityProviderStrategyItem
|
|
77
77
|
* capacityProvider: "STRING_VALUE", // required
|
|
78
78
|
* weight: Number("int"),
|
|
79
79
|
* base: Number("int"),
|
|
@@ -81,46 +81,46 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleOutput, __Met
|
|
|
81
81
|
* ],
|
|
82
82
|
* EnableECSManagedTags: true || false,
|
|
83
83
|
* EnableExecuteCommand: true || false,
|
|
84
|
-
* PlacementConstraints: [
|
|
85
|
-
* {
|
|
84
|
+
* PlacementConstraints: [ // PlacementConstraints
|
|
85
|
+
* { // PlacementConstraint
|
|
86
86
|
* type: "STRING_VALUE",
|
|
87
87
|
* expression: "STRING_VALUE",
|
|
88
88
|
* },
|
|
89
89
|
* ],
|
|
90
|
-
* PlacementStrategy: [
|
|
91
|
-
* {
|
|
90
|
+
* PlacementStrategy: [ // PlacementStrategies
|
|
91
|
+
* { // PlacementStrategy
|
|
92
92
|
* type: "STRING_VALUE",
|
|
93
93
|
* field: "STRING_VALUE",
|
|
94
94
|
* },
|
|
95
95
|
* ],
|
|
96
96
|
* PropagateTags: "STRING_VALUE",
|
|
97
97
|
* ReferenceId: "STRING_VALUE",
|
|
98
|
-
* Tags: [
|
|
99
|
-
* {
|
|
98
|
+
* Tags: [ // Tags
|
|
99
|
+
* { // TagMap
|
|
100
100
|
* "<keys>": "STRING_VALUE",
|
|
101
101
|
* },
|
|
102
102
|
* ],
|
|
103
103
|
* },
|
|
104
|
-
* EventBridgeParameters: {
|
|
104
|
+
* EventBridgeParameters: { // EventBridgeParameters
|
|
105
105
|
* DetailType: "STRING_VALUE", // required
|
|
106
106
|
* Source: "STRING_VALUE", // required
|
|
107
107
|
* },
|
|
108
|
-
* KinesisParameters: {
|
|
108
|
+
* KinesisParameters: { // KinesisParameters
|
|
109
109
|
* PartitionKey: "STRING_VALUE", // required
|
|
110
110
|
* },
|
|
111
|
-
* SageMakerPipelineParameters: {
|
|
112
|
-
* PipelineParameterList: [
|
|
113
|
-
* {
|
|
111
|
+
* SageMakerPipelineParameters: { // SageMakerPipelineParameters
|
|
112
|
+
* PipelineParameterList: [ // SageMakerPipelineParameterList
|
|
113
|
+
* { // SageMakerPipelineParameter
|
|
114
114
|
* Name: "STRING_VALUE", // required
|
|
115
115
|
* Value: "STRING_VALUE", // required
|
|
116
116
|
* },
|
|
117
117
|
* ],
|
|
118
118
|
* },
|
|
119
|
-
* SqsParameters: {
|
|
119
|
+
* SqsParameters: { // SqsParameters
|
|
120
120
|
* MessageGroupId: "STRING_VALUE",
|
|
121
121
|
* },
|
|
122
122
|
* },
|
|
123
|
-
* FlexibleTimeWindow: {
|
|
123
|
+
* FlexibleTimeWindow: { // FlexibleTimeWindow
|
|
124
124
|
* Mode: "STRING_VALUE", // required
|
|
125
125
|
* MaximumWindowInMinutes: Number("int"),
|
|
126
126
|
* },
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-scheduler",
|
|
3
3
|
"description": "AWS SDK for JavaScript Scheduler 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",
|