@aws-sdk/client-codedeploy 3.289.0 → 3.290.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 (48) hide show
  1. package/dist-types/commands/AddTagsToOnPremisesInstancesCommand.d.ts +23 -0
  2. package/dist-types/commands/BatchGetApplicationRevisionsCommand.d.ts +19 -0
  3. package/dist-types/commands/BatchGetApplicationsCommand.d.ts +13 -0
  4. package/dist-types/commands/BatchGetDeploymentGroupsCommand.d.ts +23 -0
  5. package/dist-types/commands/BatchGetDeploymentInstancesCommand.d.ts +23 -0
  6. package/dist-types/commands/BatchGetDeploymentTargetsCommand.d.ts +32 -0
  7. package/dist-types/commands/BatchGetDeploymentsCommand.d.ts +10 -0
  8. package/dist-types/commands/BatchGetOnPremisesInstancesCommand.d.ts +10 -0
  9. package/dist-types/commands/ContinueDeploymentCommand.d.ts +26 -0
  10. package/dist-types/commands/CreateApplicationCommand.d.ts +19 -0
  11. package/dist-types/commands/CreateDeploymentCommand.d.ts +124 -0
  12. package/dist-types/commands/CreateDeploymentConfigCommand.d.ts +24 -0
  13. package/dist-types/commands/CreateDeploymentGroupCommand.d.ts +131 -0
  14. package/dist-types/commands/DeleteApplicationCommand.d.ts +12 -0
  15. package/dist-types/commands/DeleteDeploymentConfigCommand.d.ts +13 -0
  16. package/dist-types/commands/DeleteDeploymentGroupCommand.d.ts +18 -0
  17. package/dist-types/commands/DeleteGitHubAccountTokenCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteResourcesByExternalIdCommand.d.ts +1 -0
  19. package/dist-types/commands/DeregisterOnPremisesInstanceCommand.d.ts +7 -0
  20. package/dist-types/commands/GetApplicationCommand.d.ts +10 -0
  21. package/dist-types/commands/GetApplicationRevisionCommand.d.ts +19 -0
  22. package/dist-types/commands/GetDeploymentCommand.d.ts +11 -0
  23. package/dist-types/commands/GetDeploymentConfigCommand.d.ts +14 -0
  24. package/dist-types/commands/GetDeploymentGroupCommand.d.ts +23 -0
  25. package/dist-types/commands/GetDeploymentInstanceCommand.d.ts +23 -0
  26. package/dist-types/commands/GetDeploymentTargetCommand.d.ts +26 -0
  27. package/dist-types/commands/GetOnPremisesInstanceCommand.d.ts +10 -0
  28. package/dist-types/commands/ListApplicationRevisionsCommand.d.ts +32 -0
  29. package/dist-types/commands/ListApplicationsCommand.d.ts +4 -0
  30. package/dist-types/commands/ListDeploymentConfigsCommand.d.ts +4 -0
  31. package/dist-types/commands/ListDeploymentGroupsCommand.d.ts +13 -0
  32. package/dist-types/commands/ListDeploymentInstancesCommand.d.ts +35 -0
  33. package/dist-types/commands/ListDeploymentTargetsCommand.d.ts +29 -0
  34. package/dist-types/commands/ListDeploymentsCommand.d.ts +34 -0
  35. package/dist-types/commands/ListGitHubAccountTokenNamesCommand.d.ts +10 -0
  36. package/dist-types/commands/ListOnPremisesInstancesCommand.d.ts +10 -0
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  38. package/dist-types/commands/PutLifecycleEventHookExecutionStatusCommand.d.ts +27 -0
  39. package/dist-types/commands/RegisterApplicationRevisionCommand.d.ts +19 -0
  40. package/dist-types/commands/RegisterOnPremisesInstanceCommand.d.ts +34 -0
  41. package/dist-types/commands/RemoveTagsFromOnPremisesInstancesCommand.d.ts +23 -0
  42. package/dist-types/commands/SkipWaitTimeForInstanceTerminationCommand.d.ts +20 -0
  43. package/dist-types/commands/StopDeploymentCommand.d.ts +20 -0
  44. package/dist-types/commands/TagResourceCommand.d.ts +27 -0
  45. package/dist-types/commands/UntagResourceCommand.d.ts +27 -0
  46. package/dist-types/commands/UpdateApplicationCommand.d.ts +13 -0
  47. package/dist-types/commands/UpdateDeploymentGroupCommand.d.ts +125 -0
  48. package/package.json +30 -30
@@ -32,6 +32,26 @@ export interface SkipWaitTimeForInstanceTerminationCommandOutput extends __Metad
32
32
  * @see {@link SkipWaitTimeForInstanceTerminationCommandOutput} for command's `response` shape.
33
33
  * @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
34
34
  *
35
+ * @throws {@link DeploymentAlreadyCompletedException} (client fault)
36
+ * <p>The deployment is already complete.</p>
37
+ *
38
+ * @throws {@link DeploymentDoesNotExistException} (client fault)
39
+ * <p>The deployment with the IAM user or Amazon Web Services account does not
40
+ * exist.</p>
41
+ *
42
+ * @throws {@link DeploymentIdRequiredException} (client fault)
43
+ * <p>At least one deployment ID must be specified.</p>
44
+ *
45
+ * @throws {@link DeploymentNotStartedException} (client fault)
46
+ * <p>The specified deployment has not started.</p>
47
+ *
48
+ * @throws {@link InvalidDeploymentIdException} (client fault)
49
+ * <p>At least one of the deployment IDs was specified in an invalid format.</p>
50
+ *
51
+ * @throws {@link UnsupportedActionForDeploymentTypeException} (client fault)
52
+ * <p>A call was submitted that is not supported for the specified deployment type.</p>
53
+ *
54
+ *
35
55
  */
36
56
  export declare class SkipWaitTimeForInstanceTerminationCommand extends $Command<SkipWaitTimeForInstanceTerminationCommandInput, SkipWaitTimeForInstanceTerminationCommandOutput, CodeDeployClientResolvedConfig> {
37
57
  readonly input: SkipWaitTimeForInstanceTerminationCommandInput;
@@ -29,6 +29,26 @@ export interface StopDeploymentCommandOutput extends StopDeploymentOutput, __Met
29
29
  * @see {@link StopDeploymentCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
31
31
  *
32
+ * @throws {@link DeploymentAlreadyCompletedException} (client fault)
33
+ * <p>The deployment is already complete.</p>
34
+ *
35
+ * @throws {@link DeploymentDoesNotExistException} (client fault)
36
+ * <p>The deployment with the IAM user or Amazon Web Services account does not
37
+ * exist.</p>
38
+ *
39
+ * @throws {@link DeploymentGroupDoesNotExistException} (client fault)
40
+ * <p>The named deployment group with the IAM user or Amazon Web Services account does not exist.</p>
41
+ *
42
+ * @throws {@link DeploymentIdRequiredException} (client fault)
43
+ * <p>At least one deployment ID must be specified.</p>
44
+ *
45
+ * @throws {@link InvalidDeploymentIdException} (client fault)
46
+ * <p>At least one of the deployment IDs was specified in an invalid format.</p>
47
+ *
48
+ * @throws {@link UnsupportedActionForDeploymentTypeException} (client fault)
49
+ * <p>A call was submitted that is not supported for the specified deployment type.</p>
50
+ *
51
+ *
32
52
  */
33
53
  export declare class StopDeploymentCommand extends $Command<StopDeploymentCommandInput, StopDeploymentCommandOutput, CodeDeployClientResolvedConfig> {
34
54
  readonly input: StopDeploymentCommandInput;
@@ -30,6 +30,33 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
30
30
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
31
31
  * @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
32
32
  *
33
+ * @throws {@link ApplicationDoesNotExistException} (client fault)
34
+ * <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
35
+ *
36
+ * @throws {@link ArnNotSupportedException} (client fault)
37
+ * <p> The specified ARN is not supported. For example, it might be an ARN for a resource
38
+ * that is not expected. </p>
39
+ *
40
+ * @throws {@link DeploymentConfigDoesNotExistException} (client fault)
41
+ * <p>The deployment configuration does not exist with the IAM user or
42
+ * Amazon Web Services account.</p>
43
+ *
44
+ * @throws {@link DeploymentGroupDoesNotExistException} (client fault)
45
+ * <p>The named deployment group with the IAM user or Amazon Web Services account does not exist.</p>
46
+ *
47
+ * @throws {@link InvalidArnException} (client fault)
48
+ * <p> The specified ARN is not in a valid format. </p>
49
+ *
50
+ * @throws {@link InvalidTagsToAddException} (client fault)
51
+ * <p> The specified tags are not valid. </p>
52
+ *
53
+ * @throws {@link ResourceArnRequiredException} (client fault)
54
+ * <p> The ARN of a resource is required, but was not found. </p>
55
+ *
56
+ * @throws {@link TagRequiredException} (client fault)
57
+ * <p>A tag was not specified.</p>
58
+ *
59
+ *
33
60
  */
34
61
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodeDeployClientResolvedConfig> {
35
62
  readonly input: TagResourceCommandInput;
@@ -31,6 +31,33 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
31
31
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
32
32
  * @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
33
33
  *
34
+ * @throws {@link ApplicationDoesNotExistException} (client fault)
35
+ * <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
36
+ *
37
+ * @throws {@link ArnNotSupportedException} (client fault)
38
+ * <p> The specified ARN is not supported. For example, it might be an ARN for a resource
39
+ * that is not expected. </p>
40
+ *
41
+ * @throws {@link DeploymentConfigDoesNotExistException} (client fault)
42
+ * <p>The deployment configuration does not exist with the IAM user or
43
+ * Amazon Web Services account.</p>
44
+ *
45
+ * @throws {@link DeploymentGroupDoesNotExistException} (client fault)
46
+ * <p>The named deployment group with the IAM user or Amazon Web Services account does not exist.</p>
47
+ *
48
+ * @throws {@link InvalidArnException} (client fault)
49
+ * <p> The specified ARN is not in a valid format. </p>
50
+ *
51
+ * @throws {@link InvalidTagsToAddException} (client fault)
52
+ * <p> The specified tags are not valid. </p>
53
+ *
54
+ * @throws {@link ResourceArnRequiredException} (client fault)
55
+ * <p> The ARN of a resource is required, but was not found. </p>
56
+ *
57
+ * @throws {@link TagRequiredException} (client fault)
58
+ * <p>A tag was not specified.</p>
59
+ *
60
+ *
34
61
  */
35
62
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodeDeployClientResolvedConfig> {
36
63
  readonly input: UntagResourceCommandInput;
@@ -29,6 +29,19 @@ export interface UpdateApplicationCommandOutput extends __MetadataBearer {
29
29
  * @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
31
31
  *
32
+ * @throws {@link ApplicationAlreadyExistsException} (client fault)
33
+ * <p>An application with the specified name with the IAM user or Amazon Web Services account already exists.</p>
34
+ *
35
+ * @throws {@link ApplicationDoesNotExistException} (client fault)
36
+ * <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
37
+ *
38
+ * @throws {@link ApplicationNameRequiredException} (client fault)
39
+ * <p>The minimum number of required application names was not specified.</p>
40
+ *
41
+ * @throws {@link InvalidApplicationNameException} (client fault)
42
+ * <p>The application name was specified in an invalid format.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, CodeDeployClientResolvedConfig> {
34
47
  readonly input: UpdateApplicationCommandInput;
@@ -29,6 +29,131 @@ export interface UpdateDeploymentGroupCommandOutput extends UpdateDeploymentGrou
29
29
  * @see {@link UpdateDeploymentGroupCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
31
31
  *
32
+ * @throws {@link AlarmsLimitExceededException} (client fault)
33
+ * <p>The maximum number of alarms for a deployment group (10) was exceeded.</p>
34
+ *
35
+ * @throws {@link ApplicationDoesNotExistException} (client fault)
36
+ * <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
37
+ *
38
+ * @throws {@link ApplicationNameRequiredException} (client fault)
39
+ * <p>The minimum number of required application names was not specified.</p>
40
+ *
41
+ * @throws {@link DeploymentConfigDoesNotExistException} (client fault)
42
+ * <p>The deployment configuration does not exist with the IAM user or
43
+ * Amazon Web Services account.</p>
44
+ *
45
+ * @throws {@link DeploymentGroupAlreadyExistsException} (client fault)
46
+ * <p>A deployment group with the specified name with the IAM user or Amazon Web Services account already exists.</p>
47
+ *
48
+ * @throws {@link DeploymentGroupDoesNotExistException} (client fault)
49
+ * <p>The named deployment group with the IAM user or Amazon Web Services account does not exist.</p>
50
+ *
51
+ * @throws {@link DeploymentGroupNameRequiredException} (client fault)
52
+ * <p>The deployment group name was not specified.</p>
53
+ *
54
+ * @throws {@link ECSServiceMappingLimitExceededException} (client fault)
55
+ * <p> The Amazon ECS service is associated with more than one deployment groups. An
56
+ * Amazon ECS service can be associated with only one deployment group. </p>
57
+ *
58
+ * @throws {@link InvalidAlarmConfigException} (client fault)
59
+ * <p>The format of the alarm configuration is invalid. Possible causes include:</p>
60
+ * <ul>
61
+ * <li>
62
+ * <p>The alarm list is null.</p>
63
+ * </li>
64
+ * <li>
65
+ * <p>The alarm object is null.</p>
66
+ * </li>
67
+ * <li>
68
+ * <p>The alarm name is empty or null or exceeds the limit of 255 characters.</p>
69
+ * </li>
70
+ * <li>
71
+ * <p>Two alarms with the same name have been specified.</p>
72
+ * </li>
73
+ * <li>
74
+ * <p>The alarm configuration is enabled, but the alarm list is empty.</p>
75
+ * </li>
76
+ * </ul>
77
+ *
78
+ * @throws {@link InvalidApplicationNameException} (client fault)
79
+ * <p>The application name was specified in an invalid format.</p>
80
+ *
81
+ * @throws {@link InvalidAutoRollbackConfigException} (client fault)
82
+ * <p>The automatic rollback configuration was specified in an invalid format. For example,
83
+ * automatic rollback is enabled, but an invalid triggering event type or no event types
84
+ * were listed.</p>
85
+ *
86
+ * @throws {@link InvalidAutoScalingGroupException} (client fault)
87
+ * <p>The Auto Scaling group was specified in an invalid format or does not
88
+ * exist.</p>
89
+ *
90
+ * @throws {@link InvalidBlueGreenDeploymentConfigurationException} (client fault)
91
+ * <p>The configuration for the blue/green deployment group was provided in an invalid
92
+ * format. For information about deployment configuration format, see <a>CreateDeploymentConfig</a>.</p>
93
+ *
94
+ * @throws {@link InvalidDeploymentConfigNameException} (client fault)
95
+ * <p>The deployment configuration name was specified in an invalid format.</p>
96
+ *
97
+ * @throws {@link InvalidDeploymentGroupNameException} (client fault)
98
+ * <p>The deployment group name was specified in an invalid format.</p>
99
+ *
100
+ * @throws {@link InvalidDeploymentStyleException} (client fault)
101
+ * <p>An invalid deployment style was specified. Valid deployment types include "IN_PLACE"
102
+ * and "BLUE_GREEN." Valid deployment options include "WITH_TRAFFIC_CONTROL" and
103
+ * "WITHOUT_TRAFFIC_CONTROL."</p>
104
+ *
105
+ * @throws {@link InvalidEC2TagCombinationException} (client fault)
106
+ * <p>A call was submitted that specified both Ec2TagFilters and Ec2TagSet, but only one of
107
+ * these data types can be used in a single call.</p>
108
+ *
109
+ * @throws {@link InvalidEC2TagException} (client fault)
110
+ * <p>The tag was specified in an invalid format.</p>
111
+ *
112
+ * @throws {@link InvalidECSServiceException} (client fault)
113
+ * <p> The Amazon ECS service identifier is not valid. </p>
114
+ *
115
+ * @throws {@link InvalidInputException} (client fault)
116
+ * <p>The input was specified in an invalid format.</p>
117
+ *
118
+ * @throws {@link InvalidLoadBalancerInfoException} (client fault)
119
+ * <p>An invalid load balancer name, or no load balancer name, was specified.</p>
120
+ *
121
+ * @throws {@link InvalidOnPremisesTagCombinationException} (client fault)
122
+ * <p>A call was submitted that specified both OnPremisesTagFilters and OnPremisesTagSet,
123
+ * but only one of these data types can be used in a single call.</p>
124
+ *
125
+ * @throws {@link InvalidRoleException} (client fault)
126
+ * <p>The service role ARN was specified in an invalid format. Or, if an Auto Scaling
127
+ * group was specified, the specified service role does not grant the appropriate
128
+ * permissions to Amazon EC2 Auto Scaling.</p>
129
+ *
130
+ * @throws {@link InvalidTagException} (client fault)
131
+ * <p>The tag was specified in an invalid format.</p>
132
+ *
133
+ * @throws {@link InvalidTargetGroupPairException} (client fault)
134
+ * <p> A target group pair associated with this deployment is not valid. </p>
135
+ *
136
+ * @throws {@link InvalidTrafficRoutingConfigurationException} (client fault)
137
+ * <p> The configuration that specifies how traffic is routed during a deployment is
138
+ * invalid.</p>
139
+ *
140
+ * @throws {@link InvalidTriggerConfigException} (client fault)
141
+ * <p>The trigger was specified in an invalid format.</p>
142
+ *
143
+ * @throws {@link LifecycleHookLimitExceededException} (client fault)
144
+ * <p>The limit for lifecycle hooks was exceeded.</p>
145
+ *
146
+ * @throws {@link TagSetListLimitExceededException} (client fault)
147
+ * <p>The number of tag groups included in the tag set list exceeded the maximum allowed
148
+ * limit of 3.</p>
149
+ *
150
+ * @throws {@link ThrottlingException} (client fault)
151
+ * <p>An API function was called too frequently.</p>
152
+ *
153
+ * @throws {@link TriggerTargetsLimitExceededException} (client fault)
154
+ * <p>The maximum allowed number of triggers was exceeded.</p>
155
+ *
156
+ *
32
157
  */
33
158
  export declare class UpdateDeploymentGroupCommand extends $Command<UpdateDeploymentGroupCommandInput, UpdateDeploymentGroupCommandOutput, CodeDeployClientResolvedConfig> {
34
159
  readonly input: UpdateDeploymentGroupCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codedeploy",
3
3
  "description": "AWS SDK for JavaScript Codedeploy Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.290.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",
@@ -20,39 +20,39 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
- "@aws-sdk/util-waiter": "3.289.0",
55
+ "@aws-sdk/util-waiter": "3.290.0",
56
56
  "tslib": "^2.3.1"
57
57
  },
58
58
  "devDependencies": {