@aws-sdk/client-eventbridge 3.325.0 → 3.327.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 (57) hide show
  1. package/dist-types/commands/ActivateEventSourceCommand.d.ts +4 -0
  2. package/dist-types/commands/CancelReplayCommand.d.ts +8 -0
  3. package/dist-types/commands/CreateApiDestinationCommand.d.ts +9 -0
  4. package/dist-types/commands/CreateArchiveCommand.d.ts +9 -0
  5. package/dist-types/commands/CreateConnectionCommand.d.ts +9 -0
  6. package/dist-types/commands/CreateEndpointCommand.d.ts +27 -0
  7. package/dist-types/commands/CreateEventBusCommand.d.ts +6 -0
  8. package/dist-types/commands/CreatePartnerEventSourceCommand.d.ts +6 -0
  9. package/dist-types/commands/DeactivateEventSourceCommand.d.ts +4 -0
  10. package/dist-types/commands/DeauthorizeConnectionCommand.d.ts +10 -0
  11. package/dist-types/commands/DeleteApiDestinationCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteArchiveCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteConnectionCommand.d.ts +10 -0
  14. package/dist-types/commands/DeleteEndpointCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteEventBusCommand.d.ts +4 -0
  16. package/dist-types/commands/DeletePartnerEventSourceCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteRuleCommand.d.ts +4 -0
  18. package/dist-types/commands/DescribeApiDestinationCommand.d.ts +15 -0
  19. package/dist-types/commands/DescribeArchiveCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeConnectionCommand.d.ts +76 -0
  21. package/dist-types/commands/DescribeEndpointCommand.d.ts +33 -0
  22. package/dist-types/commands/DescribeEventBusCommand.d.ts +8 -0
  23. package/dist-types/commands/DescribeEventSourceCommand.d.ts +11 -0
  24. package/dist-types/commands/DescribePartnerEventSourceCommand.d.ts +7 -0
  25. package/dist-types/commands/DescribeReplayCommand.d.ts +22 -0
  26. package/dist-types/commands/DescribeRuleCommand.d.ts +15 -0
  27. package/dist-types/commands/DisableRuleCommand.d.ts +4 -0
  28. package/dist-types/commands/EnableRuleCommand.d.ts +4 -0
  29. package/dist-types/commands/ListApiDestinationsCommand.d.ts +19 -0
  30. package/dist-types/commands/ListArchivesCommand.d.ts +18 -0
  31. package/dist-types/commands/ListConnectionsCommand.d.ts +18 -0
  32. package/dist-types/commands/ListEndpointsCommand.d.ts +38 -0
  33. package/dist-types/commands/ListEventBusesCommand.d.ts +13 -0
  34. package/dist-types/commands/ListEventSourcesCommand.d.ts +16 -0
  35. package/dist-types/commands/ListPartnerEventSourceAccountsCommand.d.ts +14 -0
  36. package/dist-types/commands/ListPartnerEventSourcesCommand.d.ts +12 -0
  37. package/dist-types/commands/ListReplaysCommand.d.ts +19 -0
  38. package/dist-types/commands/ListRuleNamesByTargetCommand.d.ts +9 -0
  39. package/dist-types/commands/ListRulesCommand.d.ts +19 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  41. package/dist-types/commands/ListTargetsByRuleCommand.d.ts +131 -0
  42. package/dist-types/commands/PutEventsCommand.d.ts +13 -0
  43. package/dist-types/commands/PutPartnerEventsCommand.d.ts +13 -0
  44. package/dist-types/commands/PutPermissionCommand.d.ts +4 -0
  45. package/dist-types/commands/PutRuleCommand.d.ts +6 -0
  46. package/dist-types/commands/PutTargetsCommand.d.ts +13 -0
  47. package/dist-types/commands/RemovePermissionCommand.d.ts +4 -0
  48. package/dist-types/commands/RemoveTargetsCommand.d.ts +13 -0
  49. package/dist-types/commands/StartReplayCommand.d.ts +9 -0
  50. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  51. package/dist-types/commands/TestEventPatternCommand.d.ts +6 -0
  52. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  53. package/dist-types/commands/UpdateApiDestinationCommand.d.ts +9 -0
  54. package/dist-types/commands/UpdateArchiveCommand.d.ts +9 -0
  55. package/dist-types/commands/UpdateConnectionCommand.d.ts +10 -0
  56. package/dist-types/commands/UpdateEndpointCommand.d.ts +29 -0
  57. package/package.json +7 -7
@@ -42,6 +42,17 @@ export interface PutPartnerEventsCommandOutput extends PutPartnerEventsResponse,
42
42
  * };
43
43
  * const command = new PutPartnerEventsCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // PutPartnerEventsResponse
46
+ * // FailedEntryCount: Number("int"),
47
+ * // Entries: [ // PutPartnerEventsResultEntryList
48
+ * // { // PutPartnerEventsResultEntry
49
+ * // EventId: "STRING_VALUE",
50
+ * // ErrorCode: "STRING_VALUE",
51
+ * // ErrorMessage: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // };
55
+ *
45
56
  * ```
46
57
  *
47
58
  * @param PutPartnerEventsCommandInput - {@link PutPartnerEventsCommandInput}
@@ -56,6 +67,8 @@ export interface PutPartnerEventsCommandOutput extends PutPartnerEventsResponse,
56
67
  * @throws {@link OperationDisabledException} (client fault)
57
68
  * <p>The operation you are attempting is not available in this region.</p>
58
69
  *
70
+ * @throws {@link EventBridgeServiceException}
71
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
59
72
  *
60
73
  */
61
74
  export declare class PutPartnerEventsCommand extends $Command<PutPartnerEventsCommandInput, PutPartnerEventsCommandOutput, EventBridgeClientResolvedConfig> {
@@ -56,6 +56,8 @@ export interface PutPermissionCommandOutput extends __MetadataBearer {
56
56
  * };
57
57
  * const command = new PutPermissionCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // {};
60
+ *
59
61
  * ```
60
62
  *
61
63
  * @param PutPermissionCommandInput - {@link PutPermissionCommandInput}
@@ -79,6 +81,8 @@ export interface PutPermissionCommandOutput extends __MetadataBearer {
79
81
  * @throws {@link ResourceNotFoundException} (client fault)
80
82
  * <p>An entity that you specified does not exist.</p>
81
83
  *
84
+ * @throws {@link EventBridgeServiceException}
85
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
82
86
  *
83
87
  */
84
88
  export declare class PutPermissionCommand extends $Command<PutPermissionCommandInput, PutPermissionCommandOutput, EventBridgeClientResolvedConfig> {
@@ -82,6 +82,10 @@ export interface PutRuleCommandOutput extends PutRuleResponse, __MetadataBearer
82
82
  * };
83
83
  * const command = new PutRuleCommand(input);
84
84
  * const response = await client.send(command);
85
+ * // { // PutRuleResponse
86
+ * // RuleArn: "STRING_VALUE",
87
+ * // };
88
+ *
85
89
  * ```
86
90
  *
87
91
  * @param PutRuleCommandInput - {@link PutRuleCommandInput}
@@ -114,6 +118,8 @@ export interface PutRuleCommandOutput extends PutRuleResponse, __MetadataBearer
114
118
  * @throws {@link ResourceNotFoundException} (client fault)
115
119
  * <p>An entity that you specified does not exist.</p>
116
120
  *
121
+ * @throws {@link EventBridgeServiceException}
122
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
117
123
  *
118
124
  */
119
125
  export declare class PutRuleCommand extends $Command<PutRuleCommandInput, PutRuleCommandOutput, EventBridgeClientResolvedConfig> {
@@ -334,6 +334,17 @@ export interface PutTargetsCommandOutput extends PutTargetsResponse, __MetadataB
334
334
  * };
335
335
  * const command = new PutTargetsCommand(input);
336
336
  * const response = await client.send(command);
337
+ * // { // PutTargetsResponse
338
+ * // FailedEntryCount: Number("int"),
339
+ * // FailedEntries: [ // PutTargetsResultEntryList
340
+ * // { // PutTargetsResultEntry
341
+ * // TargetId: "STRING_VALUE",
342
+ * // ErrorCode: "STRING_VALUE",
343
+ * // ErrorMessage: "STRING_VALUE",
344
+ * // },
345
+ * // ],
346
+ * // };
347
+ *
337
348
  * ```
338
349
  *
339
350
  * @param PutTargetsCommandInput - {@link PutTargetsCommandInput}
@@ -363,6 +374,8 @@ export interface PutTargetsCommandOutput extends PutTargetsResponse, __MetadataB
363
374
  * @throws {@link ResourceNotFoundException} (client fault)
364
375
  * <p>An entity that you specified does not exist.</p>
365
376
  *
377
+ * @throws {@link EventBridgeServiceException}
378
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
366
379
  *
367
380
  */
368
381
  export declare class PutTargetsCommand extends $Command<PutTargetsCommandInput, PutTargetsCommandOutput, EventBridgeClientResolvedConfig> {
@@ -36,6 +36,8 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
36
36
  * };
37
37
  * const command = new RemovePermissionCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param RemovePermissionCommandInput - {@link RemovePermissionCommandInput}
@@ -56,6 +58,8 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
56
58
  * @throws {@link ResourceNotFoundException} (client fault)
57
59
  * <p>An entity that you specified does not exist.</p>
58
60
  *
61
+ * @throws {@link EventBridgeServiceException}
62
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
59
63
  *
60
64
  */
61
65
  export declare class RemovePermissionCommand extends $Command<RemovePermissionCommandInput, RemovePermissionCommandOutput, EventBridgeClientResolvedConfig> {
@@ -45,6 +45,17 @@ export interface RemoveTargetsCommandOutput extends RemoveTargetsResponse, __Met
45
45
  * };
46
46
  * const command = new RemoveTargetsCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // RemoveTargetsResponse
49
+ * // FailedEntryCount: Number("int"),
50
+ * // FailedEntries: [ // RemoveTargetsResultEntryList
51
+ * // { // RemoveTargetsResultEntry
52
+ * // TargetId: "STRING_VALUE",
53
+ * // ErrorCode: "STRING_VALUE",
54
+ * // ErrorMessage: "STRING_VALUE",
55
+ * // },
56
+ * // ],
57
+ * // };
58
+ *
48
59
  * ```
49
60
  *
50
61
  * @param RemoveTargetsCommandInput - {@link RemoveTargetsCommandInput}
@@ -70,6 +81,8 @@ export interface RemoveTargetsCommandOutput extends RemoveTargetsResponse, __Met
70
81
  * @throws {@link ResourceNotFoundException} (client fault)
71
82
  * <p>An entity that you specified does not exist.</p>
72
83
  *
84
+ * @throws {@link EventBridgeServiceException}
85
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
73
86
  *
74
87
  */
75
88
  export declare class RemoveTargetsCommand extends $Command<RemoveTargetsCommandInput, RemoveTargetsCommandOutput, EventBridgeClientResolvedConfig> {
@@ -49,6 +49,13 @@ export interface StartReplayCommandOutput extends StartReplayResponse, __Metadat
49
49
  * };
50
50
  * const command = new StartReplayCommand(input);
51
51
  * const response = await client.send(command);
52
+ * // { // StartReplayResponse
53
+ * // ReplayArn: "STRING_VALUE",
54
+ * // State: "STARTING" || "RUNNING" || "CANCELLING" || "COMPLETED" || "CANCELLED" || "FAILED",
55
+ * // StateReason: "STRING_VALUE",
56
+ * // ReplayStartTime: new Date("TIMESTAMP"),
57
+ * // };
58
+ *
52
59
  * ```
53
60
  *
54
61
  * @param StartReplayCommandInput - {@link StartReplayCommandInput}
@@ -73,6 +80,8 @@ export interface StartReplayCommandOutput extends StartReplayResponse, __Metadat
73
80
  * @throws {@link ResourceNotFoundException} (client fault)
74
81
  * <p>An entity that you specified does not exist.</p>
75
82
  *
83
+ * @throws {@link EventBridgeServiceException}
84
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
76
85
  *
77
86
  */
78
87
  export declare class StartReplayCommand extends $Command<StartReplayCommandInput, StartReplayCommandOutput, EventBridgeClientResolvedConfig> {
@@ -47,6 +47,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
47
47
  * };
48
48
  * const command = new TagResourceCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // {};
51
+ *
50
52
  * ```
51
53
  *
52
54
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -72,6 +74,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
72
74
  * @throws {@link ResourceNotFoundException} (client fault)
73
75
  * <p>An entity that you specified does not exist.</p>
74
76
  *
77
+ * @throws {@link EventBridgeServiceException}
78
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
75
79
  *
76
80
  */
77
81
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EventBridgeClientResolvedConfig> {
@@ -36,6 +36,10 @@ export interface TestEventPatternCommandOutput extends TestEventPatternResponse,
36
36
  * };
37
37
  * const command = new TestEventPatternCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // TestEventPatternResponse
40
+ * // Result: true || false,
41
+ * // };
42
+ *
39
43
  * ```
40
44
  *
41
45
  * @param TestEventPatternCommandInput - {@link TestEventPatternCommandInput}
@@ -50,6 +54,8 @@ export interface TestEventPatternCommandOutput extends TestEventPatternResponse,
50
54
  * @throws {@link InvalidEventPatternException} (client fault)
51
55
  * <p>The event pattern is not valid.</p>
52
56
  *
57
+ * @throws {@link EventBridgeServiceException}
58
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
53
59
  *
54
60
  */
55
61
  export declare class TestEventPatternCommand extends $Command<TestEventPatternCommandInput, TestEventPatternCommandOutput, EventBridgeClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
35
35
  * };
36
36
  * const command = new UntagResourceCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -60,6 +62,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
60
62
  * @throws {@link ResourceNotFoundException} (client fault)
61
63
  * <p>An entity that you specified does not exist.</p>
62
64
  *
65
+ * @throws {@link EventBridgeServiceException}
66
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
63
67
  *
64
68
  */
65
69
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EventBridgeClientResolvedConfig> {
@@ -36,6 +36,13 @@ export interface UpdateApiDestinationCommandOutput extends UpdateApiDestinationR
36
36
  * };
37
37
  * const command = new UpdateApiDestinationCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // UpdateApiDestinationResponse
40
+ * // ApiDestinationArn: "STRING_VALUE",
41
+ * // ApiDestinationState: "ACTIVE" || "INACTIVE",
42
+ * // CreationTime: new Date("TIMESTAMP"),
43
+ * // LastModifiedTime: new Date("TIMESTAMP"),
44
+ * // };
45
+ *
39
46
  * ```
40
47
  *
41
48
  * @param UpdateApiDestinationCommandInput - {@link UpdateApiDestinationCommandInput}
@@ -57,6 +64,8 @@ export interface UpdateApiDestinationCommandOutput extends UpdateApiDestinationR
57
64
  * @throws {@link ResourceNotFoundException} (client fault)
58
65
  * <p>An entity that you specified does not exist.</p>
59
66
  *
67
+ * @throws {@link EventBridgeServiceException}
68
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
60
69
  *
61
70
  */
62
71
  export declare class UpdateApiDestinationCommand extends $Command<UpdateApiDestinationCommandInput, UpdateApiDestinationCommandOutput, EventBridgeClientResolvedConfig> {
@@ -34,6 +34,13 @@ export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __Met
34
34
  * };
35
35
  * const command = new UpdateArchiveCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // UpdateArchiveResponse
38
+ * // ArchiveArn: "STRING_VALUE",
39
+ * // State: "ENABLED" || "DISABLED" || "CREATING" || "UPDATING" || "CREATE_FAILED" || "UPDATE_FAILED",
40
+ * // StateReason: "STRING_VALUE",
41
+ * // CreationTime: new Date("TIMESTAMP"),
42
+ * // };
43
+ *
37
44
  * ```
38
45
  *
39
46
  * @param UpdateArchiveCommandInput - {@link UpdateArchiveCommandInput}
@@ -58,6 +65,8 @@ export interface UpdateArchiveCommandOutput extends UpdateArchiveResponse, __Met
58
65
  * @throws {@link ResourceNotFoundException} (client fault)
59
66
  * <p>An entity that you specified does not exist.</p>
60
67
  *
68
+ * @throws {@link EventBridgeServiceException}
69
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
61
70
  *
62
71
  */
63
72
  export declare class UpdateArchiveCommand extends $Command<UpdateArchiveCommandInput, UpdateArchiveCommandOutput, EventBridgeClientResolvedConfig> {
@@ -97,6 +97,14 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
97
97
  * };
98
98
  * const command = new UpdateConnectionCommand(input);
99
99
  * const response = await client.send(command);
100
+ * // { // UpdateConnectionResponse
101
+ * // ConnectionArn: "STRING_VALUE",
102
+ * // ConnectionState: "CREATING" || "UPDATING" || "DELETING" || "AUTHORIZED" || "DEAUTHORIZED" || "AUTHORIZING" || "DEAUTHORIZING",
103
+ * // CreationTime: new Date("TIMESTAMP"),
104
+ * // LastModifiedTime: new Date("TIMESTAMP"),
105
+ * // LastAuthorizedTime: new Date("TIMESTAMP"),
106
+ * // };
107
+ *
100
108
  * ```
101
109
  *
102
110
  * @param UpdateConnectionCommandInput - {@link UpdateConnectionCommandInput}
@@ -118,6 +126,8 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionResponse,
118
126
  * @throws {@link ResourceNotFoundException} (client fault)
119
127
  * <p>An entity that you specified does not exist.</p>
120
128
  *
129
+ * @throws {@link EventBridgeServiceException}
130
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
121
131
  *
122
132
  */
123
133
  export declare class UpdateConnectionCommand extends $Command<UpdateConnectionCommandInput, UpdateConnectionCommandOutput, EventBridgeClientResolvedConfig> {
@@ -51,6 +51,33 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __M
51
51
  * };
52
52
  * const command = new UpdateEndpointCommand(input);
53
53
  * const response = await client.send(command);
54
+ * // { // UpdateEndpointResponse
55
+ * // Name: "STRING_VALUE",
56
+ * // Arn: "STRING_VALUE",
57
+ * // RoutingConfig: { // RoutingConfig
58
+ * // FailoverConfig: { // FailoverConfig
59
+ * // Primary: { // Primary
60
+ * // HealthCheck: "STRING_VALUE", // required
61
+ * // },
62
+ * // Secondary: { // Secondary
63
+ * // Route: "STRING_VALUE", // required
64
+ * // },
65
+ * // },
66
+ * // },
67
+ * // ReplicationConfig: { // ReplicationConfig
68
+ * // State: "ENABLED" || "DISABLED",
69
+ * // },
70
+ * // EventBuses: [ // EndpointEventBusList
71
+ * // { // EndpointEventBus
72
+ * // EventBusArn: "STRING_VALUE", // required
73
+ * // },
74
+ * // ],
75
+ * // RoleArn: "STRING_VALUE",
76
+ * // EndpointId: "STRING_VALUE",
77
+ * // EndpointUrl: "STRING_VALUE",
78
+ * // State: "ACTIVE" || "CREATING" || "UPDATING" || "DELETING" || "CREATE_FAILED" || "UPDATE_FAILED" || "DELETE_FAILED",
79
+ * // };
80
+ *
54
81
  * ```
55
82
  *
56
83
  * @param UpdateEndpointCommandInput - {@link UpdateEndpointCommandInput}
@@ -68,6 +95,8 @@ export interface UpdateEndpointCommandOutput extends UpdateEndpointResponse, __M
68
95
  * @throws {@link ResourceNotFoundException} (client fault)
69
96
  * <p>An entity that you specified does not exist.</p>
70
97
  *
98
+ * @throws {@link EventBridgeServiceException}
99
+ * <p>Base exception class for all service exceptions from EventBridge service.</p>
71
100
  *
72
101
  */
73
102
  export declare class UpdateEndpointCommand extends $Command<UpdateEndpointCommandInput, UpdateEndpointCommandOutput, EventBridgeClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-eventbridge",
3
3
  "description": "AWS SDK for JavaScript Eventbridge Client for Node.js, Browser and React Native",
4
- "version": "3.325.0",
4
+ "version": "3.327.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",
@@ -23,9 +23,9 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "3.0.0",
25
25
  "@aws-crypto/sha256-js": "3.0.0",
26
- "@aws-sdk/client-sts": "3.325.0",
26
+ "@aws-sdk/client-sts": "3.327.0",
27
27
  "@aws-sdk/config-resolver": "3.310.0",
28
- "@aws-sdk/credential-provider-node": "3.325.0",
28
+ "@aws-sdk/credential-provider-node": "3.327.0",
29
29
  "@aws-sdk/fetch-http-handler": "3.310.0",
30
30
  "@aws-sdk/hash-node": "3.310.0",
31
31
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -34,11 +34,11 @@
34
34
  "@aws-sdk/middleware-host-header": "3.325.0",
35
35
  "@aws-sdk/middleware-logger": "3.325.0",
36
36
  "@aws-sdk/middleware-recursion-detection": "3.325.0",
37
- "@aws-sdk/middleware-retry": "3.325.0",
37
+ "@aws-sdk/middleware-retry": "3.327.0",
38
38
  "@aws-sdk/middleware-serde": "3.325.0",
39
39
  "@aws-sdk/middleware-signing": "3.325.0",
40
40
  "@aws-sdk/middleware-stack": "3.325.0",
41
- "@aws-sdk/middleware-user-agent": "3.325.0",
41
+ "@aws-sdk/middleware-user-agent": "3.327.0",
42
42
  "@aws-sdk/node-config-provider": "3.310.0",
43
43
  "@aws-sdk/node-http-handler": "3.321.1",
44
44
  "@aws-sdk/protocol-http": "3.310.0",
@@ -51,8 +51,8 @@
51
51
  "@aws-sdk/util-body-length-node": "3.310.0",
52
52
  "@aws-sdk/util-defaults-mode-browser": "3.325.0",
53
53
  "@aws-sdk/util-defaults-mode-node": "3.325.0",
54
- "@aws-sdk/util-endpoints": "3.319.0",
55
- "@aws-sdk/util-retry": "3.310.0",
54
+ "@aws-sdk/util-endpoints": "3.327.0",
55
+ "@aws-sdk/util-retry": "3.327.0",
56
56
  "@aws-sdk/util-user-agent-browser": "3.310.0",
57
57
  "@aws-sdk/util-user-agent-node": "3.310.0",
58
58
  "@aws-sdk/util-utf8": "3.310.0",