@aws-sdk/client-eventbridge 3.934.0 → 3.936.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.
@@ -0,0 +1,94 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { EventBridgeServiceException as __BaseException } from "./EventBridgeServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare class ConcurrentModificationException extends __BaseException {
11
+ readonly name: "ConcurrentModificationException";
12
+ readonly $fault: "client";
13
+ constructor(
14
+ opts: __ExceptionOptionType<
15
+ ConcurrentModificationException,
16
+ __BaseException
17
+ >
18
+ );
19
+ }
20
+ export declare class InternalException extends __BaseException {
21
+ readonly name: "InternalException";
22
+ readonly $fault: "server";
23
+ constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
24
+ }
25
+ export declare class InvalidStateException extends __BaseException {
26
+ readonly name: "InvalidStateException";
27
+ readonly $fault: "client";
28
+ constructor(
29
+ opts: __ExceptionOptionType<InvalidStateException, __BaseException>
30
+ );
31
+ }
32
+ export declare class OperationDisabledException extends __BaseException {
33
+ readonly name: "OperationDisabledException";
34
+ readonly $fault: "client";
35
+ constructor(
36
+ opts: __ExceptionOptionType<OperationDisabledException, __BaseException>
37
+ );
38
+ }
39
+ export declare class ResourceNotFoundException extends __BaseException {
40
+ readonly name: "ResourceNotFoundException";
41
+ readonly $fault: "client";
42
+ constructor(
43
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
44
+ );
45
+ }
46
+ export declare class IllegalStatusException extends __BaseException {
47
+ readonly name: "IllegalStatusException";
48
+ readonly $fault: "client";
49
+ constructor(
50
+ opts: __ExceptionOptionType<IllegalStatusException, __BaseException>
51
+ );
52
+ }
53
+ export declare class LimitExceededException extends __BaseException {
54
+ readonly name: "LimitExceededException";
55
+ readonly $fault: "client";
56
+ constructor(
57
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
58
+ );
59
+ }
60
+ export declare class ResourceAlreadyExistsException extends __BaseException {
61
+ readonly name: "ResourceAlreadyExistsException";
62
+ readonly $fault: "client";
63
+ constructor(
64
+ opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
65
+ );
66
+ }
67
+ export declare class InvalidEventPatternException extends __BaseException {
68
+ readonly name: "InvalidEventPatternException";
69
+ readonly $fault: "client";
70
+ constructor(
71
+ opts: __ExceptionOptionType<InvalidEventPatternException, __BaseException>
72
+ );
73
+ }
74
+ export declare class ThrottlingException extends __BaseException {
75
+ readonly name: "ThrottlingException";
76
+ readonly $fault: "client";
77
+ constructor(
78
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
79
+ );
80
+ }
81
+ export declare class ManagedRuleException extends __BaseException {
82
+ readonly name: "ManagedRuleException";
83
+ readonly $fault: "client";
84
+ constructor(
85
+ opts: __ExceptionOptionType<ManagedRuleException, __BaseException>
86
+ );
87
+ }
88
+ export declare class PolicyLengthExceededException extends __BaseException {
89
+ readonly name: "PolicyLengthExceededException";
90
+ readonly $fault: "client";
91
+ constructor(
92
+ opts: __ExceptionOptionType<PolicyLengthExceededException, __BaseException>
93
+ );
94
+ }
@@ -1,68 +1,26 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { EventBridgeServiceException as __BaseException } from "./EventBridgeServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- constructor(
7
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
- );
9
- }
1
+ import {
2
+ ApiDestinationHttpMethod,
3
+ ApiDestinationState,
4
+ ArchiveState,
5
+ AssignPublicIp,
6
+ ConnectionAuthorizationType,
7
+ ConnectionOAuthHttpMethod,
8
+ ConnectionState,
9
+ EndpointState,
10
+ EventSourceState,
11
+ IncludeDetail,
12
+ LaunchType,
13
+ Level,
14
+ PlacementConstraintType,
15
+ PlacementStrategyType,
16
+ PropagateTags,
17
+ ReplayState,
18
+ ReplicationState,
19
+ RuleState,
20
+ } from "./enums";
10
21
  export interface ActivateEventSourceRequest {
11
22
  Name: string | undefined;
12
23
  }
13
- export declare class ConcurrentModificationException extends __BaseException {
14
- readonly name: "ConcurrentModificationException";
15
- readonly $fault: "client";
16
- constructor(
17
- opts: __ExceptionOptionType<
18
- ConcurrentModificationException,
19
- __BaseException
20
- >
21
- );
22
- }
23
- export declare class InternalException extends __BaseException {
24
- readonly name: "InternalException";
25
- readonly $fault: "server";
26
- constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
27
- }
28
- export declare class InvalidStateException extends __BaseException {
29
- readonly name: "InvalidStateException";
30
- readonly $fault: "client";
31
- constructor(
32
- opts: __ExceptionOptionType<InvalidStateException, __BaseException>
33
- );
34
- }
35
- export declare class OperationDisabledException extends __BaseException {
36
- readonly name: "OperationDisabledException";
37
- readonly $fault: "client";
38
- constructor(
39
- opts: __ExceptionOptionType<OperationDisabledException, __BaseException>
40
- );
41
- }
42
- export declare class ResourceNotFoundException extends __BaseException {
43
- readonly name: "ResourceNotFoundException";
44
- readonly $fault: "client";
45
- constructor(
46
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
47
- );
48
- }
49
- export declare const ApiDestinationState: {
50
- readonly ACTIVE: "ACTIVE";
51
- readonly INACTIVE: "INACTIVE";
52
- };
53
- export type ApiDestinationState =
54
- (typeof ApiDestinationState)[keyof typeof ApiDestinationState];
55
- export declare const ApiDestinationHttpMethod: {
56
- readonly DELETE: "DELETE";
57
- readonly GET: "GET";
58
- readonly HEAD: "HEAD";
59
- readonly OPTIONS: "OPTIONS";
60
- readonly PATCH: "PATCH";
61
- readonly POST: "POST";
62
- readonly PUT: "PUT";
63
- };
64
- export type ApiDestinationHttpMethod =
65
- (typeof ApiDestinationHttpMethod)[keyof typeof ApiDestinationHttpMethod];
66
24
  export interface ApiDestination {
67
25
  ApiDestinationArn?: string | undefined;
68
26
  Name?: string | undefined;
@@ -77,15 +35,6 @@ export interface ApiDestination {
77
35
  export interface AppSyncParameters {
78
36
  GraphQLOperation?: string | undefined;
79
37
  }
80
- export declare const ArchiveState: {
81
- readonly CREATE_FAILED: "CREATE_FAILED";
82
- readonly CREATING: "CREATING";
83
- readonly DISABLED: "DISABLED";
84
- readonly ENABLED: "ENABLED";
85
- readonly UPDATE_FAILED: "UPDATE_FAILED";
86
- readonly UPDATING: "UPDATING";
87
- };
88
- export type ArchiveState = (typeof ArchiveState)[keyof typeof ArchiveState];
89
38
  export interface Archive {
90
39
  ArchiveName?: string | undefined;
91
40
  EventSourceArn?: string | undefined;
@@ -96,36 +45,14 @@ export interface Archive {
96
45
  EventCount?: number | undefined;
97
46
  CreationTime?: Date | undefined;
98
47
  }
99
- export declare const AssignPublicIp: {
100
- readonly DISABLED: "DISABLED";
101
- readonly ENABLED: "ENABLED";
102
- };
103
- export type AssignPublicIp =
104
- (typeof AssignPublicIp)[keyof typeof AssignPublicIp];
105
48
  export interface CancelReplayRequest {
106
49
  ReplayName: string | undefined;
107
50
  }
108
- export declare const ReplayState: {
109
- readonly CANCELLED: "CANCELLED";
110
- readonly CANCELLING: "CANCELLING";
111
- readonly COMPLETED: "COMPLETED";
112
- readonly FAILED: "FAILED";
113
- readonly RUNNING: "RUNNING";
114
- readonly STARTING: "STARTING";
115
- };
116
- export type ReplayState = (typeof ReplayState)[keyof typeof ReplayState];
117
51
  export interface CancelReplayResponse {
118
52
  ReplayArn?: string | undefined;
119
53
  State?: ReplayState | undefined;
120
54
  StateReason?: string | undefined;
121
55
  }
122
- export declare class IllegalStatusException extends __BaseException {
123
- readonly name: "IllegalStatusException";
124
- readonly $fault: "client";
125
- constructor(
126
- opts: __ExceptionOptionType<IllegalStatusException, __BaseException>
127
- );
128
- }
129
56
  export interface CreateApiDestinationRequest {
130
57
  Name: string | undefined;
131
58
  Description?: string | undefined;
@@ -140,20 +67,6 @@ export interface CreateApiDestinationResponse {
140
67
  CreationTime?: Date | undefined;
141
68
  LastModifiedTime?: Date | undefined;
142
69
  }
143
- export declare class LimitExceededException extends __BaseException {
144
- readonly name: "LimitExceededException";
145
- readonly $fault: "client";
146
- constructor(
147
- opts: __ExceptionOptionType<LimitExceededException, __BaseException>
148
- );
149
- }
150
- export declare class ResourceAlreadyExistsException extends __BaseException {
151
- readonly name: "ResourceAlreadyExistsException";
152
- readonly $fault: "client";
153
- constructor(
154
- opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
155
- );
156
- }
157
70
  export interface CreateArchiveRequest {
158
71
  ArchiveName: string | undefined;
159
72
  EventSourceArn: string | undefined;
@@ -168,20 +81,6 @@ export interface CreateArchiveResponse {
168
81
  StateReason?: string | undefined;
169
82
  CreationTime?: Date | undefined;
170
83
  }
171
- export declare class InvalidEventPatternException extends __BaseException {
172
- readonly name: "InvalidEventPatternException";
173
- readonly $fault: "client";
174
- constructor(
175
- opts: __ExceptionOptionType<InvalidEventPatternException, __BaseException>
176
- );
177
- }
178
- export declare const ConnectionAuthorizationType: {
179
- readonly API_KEY: "API_KEY";
180
- readonly BASIC: "BASIC";
181
- readonly OAUTH_CLIENT_CREDENTIALS: "OAUTH_CLIENT_CREDENTIALS";
182
- };
183
- export type ConnectionAuthorizationType =
184
- (typeof ConnectionAuthorizationType)[keyof typeof ConnectionAuthorizationType];
185
84
  export interface CreateConnectionApiKeyAuthRequestParameters {
186
85
  ApiKeyName: string | undefined;
187
86
  ApiKeyValue: string | undefined;
@@ -220,13 +119,6 @@ export interface CreateConnectionOAuthClientRequestParameters {
220
119
  ClientID: string | undefined;
221
120
  ClientSecret: string | undefined;
222
121
  }
223
- export declare const ConnectionOAuthHttpMethod: {
224
- readonly GET: "GET";
225
- readonly POST: "POST";
226
- readonly PUT: "PUT";
227
- };
228
- export type ConnectionOAuthHttpMethod =
229
- (typeof ConnectionOAuthHttpMethod)[keyof typeof ConnectionOAuthHttpMethod];
230
122
  export interface CreateConnectionOAuthRequestParameters {
231
123
  ClientParameters: CreateConnectionOAuthClientRequestParameters | undefined;
232
124
  AuthorizationEndpoint: string | undefined;
@@ -250,41 +142,15 @@ export interface CreateConnectionRequest {
250
142
  InvocationConnectivityParameters?: ConnectivityResourceParameters | undefined;
251
143
  KmsKeyIdentifier?: string | undefined;
252
144
  }
253
- export declare const ConnectionState: {
254
- readonly ACTIVE: "ACTIVE";
255
- readonly AUTHORIZED: "AUTHORIZED";
256
- readonly AUTHORIZING: "AUTHORIZING";
257
- readonly CREATING: "CREATING";
258
- readonly DEAUTHORIZED: "DEAUTHORIZED";
259
- readonly DEAUTHORIZING: "DEAUTHORIZING";
260
- readonly DELETING: "DELETING";
261
- readonly FAILED_CONNECTIVITY: "FAILED_CONNECTIVITY";
262
- readonly UPDATING: "UPDATING";
263
- };
264
- export type ConnectionState =
265
- (typeof ConnectionState)[keyof typeof ConnectionState];
266
145
  export interface CreateConnectionResponse {
267
146
  ConnectionArn?: string | undefined;
268
147
  ConnectionState?: ConnectionState | undefined;
269
148
  CreationTime?: Date | undefined;
270
149
  LastModifiedTime?: Date | undefined;
271
150
  }
272
- export declare class ThrottlingException extends __BaseException {
273
- readonly name: "ThrottlingException";
274
- readonly $fault: "client";
275
- constructor(
276
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
277
- );
278
- }
279
151
  export interface EndpointEventBus {
280
152
  EventBusArn: string | undefined;
281
153
  }
282
- export declare const ReplicationState: {
283
- readonly DISABLED: "DISABLED";
284
- readonly ENABLED: "ENABLED";
285
- };
286
- export type ReplicationState =
287
- (typeof ReplicationState)[keyof typeof ReplicationState];
288
154
  export interface ReplicationConfig {
289
155
  State?: ReplicationState | undefined;
290
156
  }
@@ -309,16 +175,6 @@ export interface CreateEndpointRequest {
309
175
  EventBuses: EndpointEventBus[] | undefined;
310
176
  RoleArn?: string | undefined;
311
177
  }
312
- export declare const EndpointState: {
313
- readonly ACTIVE: "ACTIVE";
314
- readonly CREATE_FAILED: "CREATE_FAILED";
315
- readonly CREATING: "CREATING";
316
- readonly DELETE_FAILED: "DELETE_FAILED";
317
- readonly DELETING: "DELETING";
318
- readonly UPDATE_FAILED: "UPDATE_FAILED";
319
- readonly UPDATING: "UPDATING";
320
- };
321
- export type EndpointState = (typeof EndpointState)[keyof typeof EndpointState];
322
178
  export interface CreateEndpointResponse {
323
179
  Name?: string | undefined;
324
180
  Arn?: string | undefined;
@@ -331,18 +187,6 @@ export interface CreateEndpointResponse {
331
187
  export interface DeadLetterConfig {
332
188
  Arn?: string | undefined;
333
189
  }
334
- export declare const IncludeDetail: {
335
- readonly FULL: "FULL";
336
- readonly NONE: "NONE";
337
- };
338
- export type IncludeDetail = (typeof IncludeDetail)[keyof typeof IncludeDetail];
339
- export declare const Level: {
340
- readonly ERROR: "ERROR";
341
- readonly INFO: "INFO";
342
- readonly OFF: "OFF";
343
- readonly TRACE: "TRACE";
344
- };
345
- export type Level = (typeof Level)[keyof typeof Level];
346
190
  export interface LogConfig {
347
191
  IncludeDetail?: IncludeDetail | undefined;
348
192
  Level?: Level | undefined;
@@ -421,13 +265,6 @@ export interface DeleteRuleRequest {
421
265
  EventBusName?: string | undefined;
422
266
  Force?: boolean | undefined;
423
267
  }
424
- export declare class ManagedRuleException extends __BaseException {
425
- readonly name: "ManagedRuleException";
426
- readonly $fault: "client";
427
- constructor(
428
- opts: __ExceptionOptionType<ManagedRuleException, __BaseException>
429
- );
430
- }
431
268
  export interface DescribeApiDestinationRequest {
432
269
  Name: string | undefined;
433
270
  }
@@ -545,13 +382,6 @@ export interface DescribeEventBusResponse {
545
382
  export interface DescribeEventSourceRequest {
546
383
  Name: string | undefined;
547
384
  }
548
- export declare const EventSourceState: {
549
- readonly ACTIVE: "ACTIVE";
550
- readonly DELETED: "DELETED";
551
- readonly PENDING: "PENDING";
552
- };
553
- export type EventSourceState =
554
- (typeof EventSourceState)[keyof typeof EventSourceState];
555
385
  export interface DescribeEventSourceResponse {
556
386
  Arn?: string | undefined;
557
387
  CreatedBy?: string | undefined;
@@ -592,12 +422,6 @@ export interface DescribeRuleRequest {
592
422
  Name: string | undefined;
593
423
  EventBusName?: string | undefined;
594
424
  }
595
- export declare const RuleState: {
596
- readonly DISABLED: "DISABLED";
597
- readonly ENABLED: "ENABLED";
598
- readonly ENABLED_WITH_ALL_CLOUDTRAIL_MANAGEMENT_EVENTS: "ENABLED_WITH_ALL_CLOUDTRAIL_MANAGEMENT_EVENTS";
599
- };
600
- export type RuleState = (typeof RuleState)[keyof typeof RuleState];
601
425
  export interface DescribeRuleResponse {
602
426
  Name?: string | undefined;
603
427
  Arn?: string | undefined;
@@ -828,12 +652,6 @@ export interface CapacityProviderStrategyItem {
828
652
  weight?: number | undefined;
829
653
  base?: number | undefined;
830
654
  }
831
- export declare const LaunchType: {
832
- readonly EC2: "EC2";
833
- readonly EXTERNAL: "EXTERNAL";
834
- readonly FARGATE: "FARGATE";
835
- };
836
- export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
837
655
  export interface AwsVpcConfiguration {
838
656
  Subnets: string[] | undefined;
839
657
  SecurityGroups?: string[] | undefined;
@@ -842,31 +660,14 @@ export interface AwsVpcConfiguration {
842
660
  export interface NetworkConfiguration {
843
661
  awsvpcConfiguration?: AwsVpcConfiguration | undefined;
844
662
  }
845
- export declare const PlacementConstraintType: {
846
- readonly DISTINCT_INSTANCE: "distinctInstance";
847
- readonly MEMBER_OF: "memberOf";
848
- };
849
- export type PlacementConstraintType =
850
- (typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
851
663
  export interface PlacementConstraint {
852
664
  type?: PlacementConstraintType | undefined;
853
665
  expression?: string | undefined;
854
666
  }
855
- export declare const PlacementStrategyType: {
856
- readonly BINPACK: "binpack";
857
- readonly RANDOM: "random";
858
- readonly SPREAD: "spread";
859
- };
860
- export type PlacementStrategyType =
861
- (typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
862
667
  export interface PlacementStrategy {
863
668
  type?: PlacementStrategyType | undefined;
864
669
  field?: string | undefined;
865
670
  }
866
- export declare const PropagateTags: {
867
- readonly TASK_DEFINITION: "TASK_DEFINITION";
868
- };
869
- export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
870
671
  export interface EcsParameters {
871
672
  TaskDefinitionArn: string | undefined;
872
673
  TaskCount?: number | undefined;
@@ -989,13 +790,6 @@ export interface PutPartnerEventsResponse {
989
790
  FailedEntryCount?: number | undefined;
990
791
  Entries?: PutPartnerEventsResultEntry[] | undefined;
991
792
  }
992
- export declare class PolicyLengthExceededException extends __BaseException {
993
- readonly name: "PolicyLengthExceededException";
994
- readonly $fault: "client";
995
- constructor(
996
- opts: __ExceptionOptionType<PolicyLengthExceededException, __BaseException>
997
- );
998
- }
999
793
  export interface Condition {
1000
794
  Type: string | undefined;
1001
795
  Key: string | undefined;
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.934.0",
4
+ "version": "3.936.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-eventbridge",
@@ -22,39 +22,39 @@
22
22
  "dependencies": {
23
23
  "@aws-crypto/sha256-browser": "5.2.0",
24
24
  "@aws-crypto/sha256-js": "5.2.0",
25
- "@aws-sdk/core": "3.934.0",
26
- "@aws-sdk/credential-provider-node": "3.934.0",
27
- "@aws-sdk/middleware-host-header": "3.930.0",
28
- "@aws-sdk/middleware-logger": "3.930.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.933.0",
30
- "@aws-sdk/middleware-user-agent": "3.934.0",
31
- "@aws-sdk/region-config-resolver": "3.930.0",
32
- "@aws-sdk/signature-v4-multi-region": "3.934.0",
33
- "@aws-sdk/types": "3.930.0",
34
- "@aws-sdk/util-endpoints": "3.930.0",
35
- "@aws-sdk/util-user-agent-browser": "3.930.0",
36
- "@aws-sdk/util-user-agent-node": "3.934.0",
25
+ "@aws-sdk/core": "3.936.0",
26
+ "@aws-sdk/credential-provider-node": "3.936.0",
27
+ "@aws-sdk/middleware-host-header": "3.936.0",
28
+ "@aws-sdk/middleware-logger": "3.936.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.936.0",
30
+ "@aws-sdk/middleware-user-agent": "3.936.0",
31
+ "@aws-sdk/region-config-resolver": "3.936.0",
32
+ "@aws-sdk/signature-v4-multi-region": "3.936.0",
33
+ "@aws-sdk/types": "3.936.0",
34
+ "@aws-sdk/util-endpoints": "3.936.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.936.0",
36
+ "@aws-sdk/util-user-agent-node": "3.936.0",
37
37
  "@smithy/config-resolver": "^4.4.3",
38
- "@smithy/core": "^3.18.2",
38
+ "@smithy/core": "^3.18.5",
39
39
  "@smithy/fetch-http-handler": "^5.3.6",
40
40
  "@smithy/hash-node": "^4.2.5",
41
41
  "@smithy/invalid-dependency": "^4.2.5",
42
42
  "@smithy/middleware-content-length": "^4.2.5",
43
- "@smithy/middleware-endpoint": "^4.3.9",
44
- "@smithy/middleware-retry": "^4.4.9",
45
- "@smithy/middleware-serde": "^4.2.5",
43
+ "@smithy/middleware-endpoint": "^4.3.12",
44
+ "@smithy/middleware-retry": "^4.4.12",
45
+ "@smithy/middleware-serde": "^4.2.6",
46
46
  "@smithy/middleware-stack": "^4.2.5",
47
47
  "@smithy/node-config-provider": "^4.3.5",
48
48
  "@smithy/node-http-handler": "^4.4.5",
49
49
  "@smithy/protocol-http": "^5.3.5",
50
- "@smithy/smithy-client": "^4.9.5",
50
+ "@smithy/smithy-client": "^4.9.8",
51
51
  "@smithy/types": "^4.9.0",
52
52
  "@smithy/url-parser": "^4.2.5",
53
53
  "@smithy/util-base64": "^4.3.0",
54
54
  "@smithy/util-body-length-browser": "^4.2.0",
55
55
  "@smithy/util-body-length-node": "^4.2.1",
56
- "@smithy/util-defaults-mode-browser": "^4.3.8",
57
- "@smithy/util-defaults-mode-node": "^4.2.11",
56
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
57
+ "@smithy/util-defaults-mode-node": "^4.2.14",
58
58
  "@smithy/util-endpoints": "^3.2.5",
59
59
  "@smithy/util-middleware": "^4.2.5",
60
60
  "@smithy/util-retry": "^4.2.5",
@@ -62,7 +62,7 @@
62
62
  "tslib": "^2.6.2"
63
63
  },
64
64
  "devDependencies": {
65
- "@aws-sdk/signature-v4-crt": "3.934.0",
65
+ "@aws-sdk/signature-v4-crt": "3.936.0",
66
66
  "@tsconfig/node18": "18.2.4",
67
67
  "@types/node": "^18.19.69",
68
68
  "concurrently": "7.0.0",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";