@aws-sdk/client-route53-recovery-control-config 3.298.0 → 3.300.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 (24) hide show
  1. package/dist-types/commands/CreateClusterCommand.d.ts +7 -0
  2. package/dist-types/commands/CreateControlPanelCommand.d.ts +8 -0
  3. package/dist-types/commands/CreateRoutingControlCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateSafetyRuleCommand.d.ts +35 -0
  5. package/dist-types/commands/DeleteClusterCommand.d.ts +3 -0
  6. package/dist-types/commands/DeleteControlPanelCommand.d.ts +3 -0
  7. package/dist-types/commands/DeleteRoutingControlCommand.d.ts +3 -0
  8. package/dist-types/commands/DeleteSafetyRuleCommand.d.ts +3 -0
  9. package/dist-types/commands/DescribeClusterCommand.d.ts +3 -0
  10. package/dist-types/commands/DescribeControlPanelCommand.d.ts +3 -0
  11. package/dist-types/commands/DescribeRoutingControlCommand.d.ts +3 -0
  12. package/dist-types/commands/DescribeSafetyRuleCommand.d.ts +3 -0
  13. package/dist-types/commands/ListAssociatedRoute53HealthChecksCommand.d.ts +5 -0
  14. package/dist-types/commands/ListClustersCommand.d.ts +4 -0
  15. package/dist-types/commands/ListControlPanelsCommand.d.ts +5 -0
  16. package/dist-types/commands/ListRoutingControlsCommand.d.ts +5 -0
  17. package/dist-types/commands/ListSafetyRulesCommand.d.ts +5 -0
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  19. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  20. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  21. package/dist-types/commands/UpdateControlPanelCommand.d.ts +4 -0
  22. package/dist-types/commands/UpdateRoutingControlCommand.d.ts +4 -0
  23. package/dist-types/commands/UpdateSafetyRuleCommand.d.ts +12 -0
  24. package/package.json +12 -12
@@ -26,6 +26,13 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
26
26
  * import { Route53RecoveryControlConfigClient, CreateClusterCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, CreateClusterCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ClientToken: "STRING_VALUE",
31
+ * ClusterName: "STRING_VALUE", // required
32
+ * Tags: {
33
+ * "<keys>": "STRING_VALUE",
34
+ * },
35
+ * };
29
36
  * const command = new CreateClusterCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,14 @@ export interface CreateControlPanelCommandOutput extends CreateControlPanelRespo
26
26
  * import { Route53RecoveryControlConfigClient, CreateControlPanelCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, CreateControlPanelCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ClientToken: "STRING_VALUE",
31
+ * ClusterArn: "STRING_VALUE", // required
32
+ * ControlPanelName: "STRING_VALUE", // required
33
+ * Tags: {
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * };
29
37
  * const command = new CreateControlPanelCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -26,6 +26,12 @@ export interface CreateRoutingControlCommandOutput extends CreateRoutingControlR
26
26
  * import { Route53RecoveryControlConfigClient, CreateRoutingControlCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, CreateRoutingControlCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ClientToken: "STRING_VALUE",
31
+ * ClusterArn: "STRING_VALUE", // required
32
+ * ControlPanelArn: "STRING_VALUE",
33
+ * RoutingControlName: "STRING_VALUE", // required
34
+ * };
29
35
  * const command = new CreateRoutingControlCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,41 @@ export interface CreateSafetyRuleCommandOutput extends CreateSafetyRuleResponse,
26
26
  * import { Route53RecoveryControlConfigClient, CreateSafetyRuleCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, CreateSafetyRuleCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * AssertionRule: {
31
+ * AssertedControls: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * ControlPanelArn: "STRING_VALUE", // required
35
+ * Name: "STRING_VALUE", // required
36
+ * RuleConfig: {
37
+ * Inverted: true || false, // required
38
+ * Threshold: Number("int"), // required
39
+ * Type: "ATLEAST" || "AND" || "OR", // required
40
+ * },
41
+ * WaitPeriodMs: Number("int"), // required
42
+ * },
43
+ * ClientToken: "STRING_VALUE",
44
+ * GatingRule: {
45
+ * ControlPanelArn: "STRING_VALUE", // required
46
+ * GatingControls: [ // required
47
+ * "STRING_VALUE",
48
+ * ],
49
+ * Name: "STRING_VALUE", // required
50
+ * RuleConfig: {
51
+ * Inverted: true || false, // required
52
+ * Threshold: Number("int"), // required
53
+ * Type: "ATLEAST" || "AND" || "OR", // required
54
+ * },
55
+ * TargetControls: [ // required
56
+ * "STRING_VALUE",
57
+ * ],
58
+ * WaitPeriodMs: Number("int"), // required
59
+ * },
60
+ * Tags: {
61
+ * "<keys>": "STRING_VALUE",
62
+ * },
63
+ * };
29
64
  * const command = new CreateSafetyRuleCommand(input);
30
65
  * const response = await client.send(command);
31
66
  * ```
@@ -26,6 +26,9 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
26
26
  * import { Route53RecoveryControlConfigClient, DeleteClusterCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, DeleteClusterCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ClusterArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteClusterCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteControlPanelCommandOutput extends DeleteControlPanelRespo
26
26
  * import { Route53RecoveryControlConfigClient, DeleteControlPanelCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, DeleteControlPanelCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ControlPanelArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteControlPanelCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteRoutingControlCommandOutput extends DeleteRoutingControlR
26
26
  * import { Route53RecoveryControlConfigClient, DeleteRoutingControlCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, DeleteRoutingControlCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * RoutingControlArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteRoutingControlCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteSafetyRuleCommandOutput extends DeleteSafetyRuleResponse,
26
26
  * import { Route53RecoveryControlConfigClient, DeleteSafetyRuleCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, DeleteSafetyRuleCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * SafetyRuleArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteSafetyRuleCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
26
26
  * import { Route53RecoveryControlConfigClient, DescribeClusterCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, DescribeClusterCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ClusterArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeClusterCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DescribeControlPanelCommandOutput extends DescribeControlPanelR
26
26
  * import { Route53RecoveryControlConfigClient, DescribeControlPanelCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, DescribeControlPanelCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ControlPanelArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeControlPanelCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DescribeRoutingControlCommandOutput extends DescribeRoutingCont
26
26
  * import { Route53RecoveryControlConfigClient, DescribeRoutingControlCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, DescribeRoutingControlCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * RoutingControlArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeRoutingControlCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DescribeSafetyRuleCommandOutput extends DescribeSafetyRuleRespo
26
26
  * import { Route53RecoveryControlConfigClient, DescribeSafetyRuleCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, DescribeSafetyRuleCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * SafetyRuleArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeSafetyRuleCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,11 @@ export interface ListAssociatedRoute53HealthChecksCommandOutput extends ListAsso
26
26
  * import { Route53RecoveryControlConfigClient, ListAssociatedRoute53HealthChecksCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, ListAssociatedRoute53HealthChecksCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * RoutingControlArn: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new ListAssociatedRoute53HealthChecksCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
26
26
  * import { Route53RecoveryControlConfigClient, ListClustersCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, ListClustersCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListClustersCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface ListControlPanelsCommandOutput extends ListControlPanelsRespons
26
26
  * import { Route53RecoveryControlConfigClient, ListControlPanelsCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, ListControlPanelsCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ClusterArn: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListControlPanelsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface ListRoutingControlsCommandOutput extends ListRoutingControlsRes
26
26
  * import { Route53RecoveryControlConfigClient, ListRoutingControlsCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, ListRoutingControlsCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ControlPanelArn: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListRoutingControlsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface ListSafetyRulesCommandOutput extends ListSafetyRulesResponse, _
26
26
  * import { Route53RecoveryControlConfigClient, ListSafetyRulesCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, ListSafetyRulesCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ControlPanelArn: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListSafetyRulesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { Route53RecoveryControlConfigClient, ListTagsForResourceCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, ListTagsForResourceCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { Route53RecoveryControlConfigClient, TagResourceCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, TagResourceCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * Tags: { // required
32
+ * "<keys>": "STRING_VALUE",
33
+ * },
34
+ * };
29
35
  * const command = new TagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { Route53RecoveryControlConfigClient, UntagResourceCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, UntagResourceCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * TagKeys: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ export interface UpdateControlPanelCommandOutput extends UpdateControlPanelRespo
26
26
  * import { Route53RecoveryControlConfigClient, UpdateControlPanelCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, UpdateControlPanelCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * ControlPanelArn: "STRING_VALUE", // required
31
+ * ControlPanelName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new UpdateControlPanelCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface UpdateRoutingControlCommandOutput extends UpdateRoutingControlR
26
26
  * import { Route53RecoveryControlConfigClient, UpdateRoutingControlCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, UpdateRoutingControlCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * RoutingControlArn: "STRING_VALUE", // required
31
+ * RoutingControlName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new UpdateRoutingControlCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,18 @@ export interface UpdateSafetyRuleCommandOutput extends UpdateSafetyRuleResponse,
26
26
  * import { Route53RecoveryControlConfigClient, UpdateSafetyRuleCommand } from "@aws-sdk/client-route53-recovery-control-config"; // ES Modules import
27
27
  * // const { Route53RecoveryControlConfigClient, UpdateSafetyRuleCommand } = require("@aws-sdk/client-route53-recovery-control-config"); // CommonJS import
28
28
  * const client = new Route53RecoveryControlConfigClient(config);
29
+ * const input = {
30
+ * AssertionRuleUpdate: {
31
+ * Name: "STRING_VALUE", // required
32
+ * SafetyRuleArn: "STRING_VALUE", // required
33
+ * WaitPeriodMs: Number("int"), // required
34
+ * },
35
+ * GatingRuleUpdate: {
36
+ * Name: "STRING_VALUE", // required
37
+ * SafetyRuleArn: "STRING_VALUE", // required
38
+ * WaitPeriodMs: Number("int"), // required
39
+ * },
40
+ * };
29
41
  * const command = new UpdateSafetyRuleCommand(input);
30
42
  * const response = await client.send(command);
31
43
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-route53-recovery-control-config",
3
3
  "description": "AWS SDK for JavaScript Route53 Recovery Control Config Client for Node.js, Browser and React Native",
4
- "version": "3.298.0",
4
+ "version": "3.300.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,23 +21,23 @@
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.298.0",
25
- "@aws-sdk/config-resolver": "3.296.0",
26
- "@aws-sdk/credential-provider-node": "3.298.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.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",
30
30
  "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-endpoint": "3.299.0",
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.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.296.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
39
+ "@aws-sdk/middleware-user-agent": "3.299.0",
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.296.0",
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
- "@aws-sdk/util-user-agent-browser": "3.296.0",
54
- "@aws-sdk/util-user-agent-node": "3.296.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "@aws-sdk/util-waiter": "3.296.0",
57
57
  "tslib": "^2.5.0",