@aws-sdk/client-resource-groups 3.687.0 → 3.691.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.
@@ -15,14 +15,16 @@ export declare const GroupLifecycleEventsStatus: {
15
15
  export type GroupLifecycleEventsStatus =
16
16
  (typeof GroupLifecycleEventsStatus)[keyof typeof GroupLifecycleEventsStatus];
17
17
  export interface AccountSettings {
18
- GroupLifecycleEventsDesiredStatus?: GroupLifecycleEventsDesiredStatus;
19
- GroupLifecycleEventsStatus?: GroupLifecycleEventsStatus;
20
- GroupLifecycleEventsStatusMessage?: string;
18
+ GroupLifecycleEventsDesiredStatus?:
19
+ | GroupLifecycleEventsDesiredStatus
20
+ | undefined;
21
+ GroupLifecycleEventsStatus?: GroupLifecycleEventsStatus | undefined;
22
+ GroupLifecycleEventsStatusMessage?: string | undefined;
21
23
  }
22
24
  export declare class BadRequestException extends __BaseException {
23
25
  readonly name: "BadRequestException";
24
26
  readonly $fault: "client";
25
- Message?: string;
27
+ Message?: string | undefined;
26
28
  constructor(
27
29
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
28
30
  );
@@ -33,13 +35,13 @@ export interface CancelTagSyncTaskInput {
33
35
  export declare class ForbiddenException extends __BaseException {
34
36
  readonly name: "ForbiddenException";
35
37
  readonly $fault: "client";
36
- Message?: string;
38
+ Message?: string | undefined;
37
39
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
38
40
  }
39
41
  export declare class InternalServerErrorException extends __BaseException {
40
42
  readonly name: "InternalServerErrorException";
41
43
  readonly $fault: "server";
42
- Message?: string;
44
+ Message?: string | undefined;
43
45
  constructor(
44
46
  opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
45
47
  );
@@ -47,7 +49,7 @@ export declare class InternalServerErrorException extends __BaseException {
47
49
  export declare class MethodNotAllowedException extends __BaseException {
48
50
  readonly name: "MethodNotAllowedException";
49
51
  readonly $fault: "client";
50
- Message?: string;
52
+ Message?: string | undefined;
51
53
  constructor(
52
54
  opts: __ExceptionOptionType<MethodNotAllowedException, __BaseException>
53
55
  );
@@ -55,7 +57,7 @@ export declare class MethodNotAllowedException extends __BaseException {
55
57
  export declare class TooManyRequestsException extends __BaseException {
56
58
  readonly name: "TooManyRequestsException";
57
59
  readonly $fault: "client";
58
- Message?: string;
60
+ Message?: string | undefined;
59
61
  constructor(
60
62
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
61
63
  );
@@ -63,18 +65,18 @@ export declare class TooManyRequestsException extends __BaseException {
63
65
  export declare class UnauthorizedException extends __BaseException {
64
66
  readonly name: "UnauthorizedException";
65
67
  readonly $fault: "client";
66
- Message?: string;
68
+ Message?: string | undefined;
67
69
  constructor(
68
70
  opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
69
71
  );
70
72
  }
71
73
  export interface GroupConfigurationParameter {
72
74
  Name: string | undefined;
73
- Values?: string[];
75
+ Values?: string[] | undefined;
74
76
  }
75
77
  export interface GroupConfigurationItem {
76
78
  Type: string | undefined;
77
- Parameters?: GroupConfigurationParameter[];
79
+ Parameters?: GroupConfigurationParameter[] | undefined;
78
80
  }
79
81
  export declare const QueryType: {
80
82
  readonly CLOUDFORMATION_STACK_1_0: "CLOUDFORMATION_STACK_1_0";
@@ -87,22 +89,22 @@ export interface ResourceQuery {
87
89
  }
88
90
  export interface CreateGroupInput {
89
91
  Name: string | undefined;
90
- Description?: string;
91
- ResourceQuery?: ResourceQuery;
92
- Tags?: Record<string, string>;
93
- Configuration?: GroupConfigurationItem[];
94
- Criticality?: number;
95
- Owner?: string;
96
- DisplayName?: string;
92
+ Description?: string | undefined;
93
+ ResourceQuery?: ResourceQuery | undefined;
94
+ Tags?: Record<string, string> | undefined;
95
+ Configuration?: GroupConfigurationItem[] | undefined;
96
+ Criticality?: number | undefined;
97
+ Owner?: string | undefined;
98
+ DisplayName?: string | undefined;
97
99
  }
98
100
  export interface Group {
99
101
  GroupArn: string | undefined;
100
102
  Name: string | undefined;
101
- Description?: string;
102
- Criticality?: number;
103
- Owner?: string;
104
- DisplayName?: string;
105
- ApplicationTag?: Record<string, string>;
103
+ Description?: string | undefined;
104
+ Criticality?: number | undefined;
105
+ Owner?: string | undefined;
106
+ DisplayName?: string | undefined;
107
+ ApplicationTag?: Record<string, string> | undefined;
106
108
  }
107
109
  export declare const GroupConfigurationStatus: {
108
110
  readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
@@ -112,63 +114,63 @@ export declare const GroupConfigurationStatus: {
112
114
  export type GroupConfigurationStatus =
113
115
  (typeof GroupConfigurationStatus)[keyof typeof GroupConfigurationStatus];
114
116
  export interface GroupConfiguration {
115
- Configuration?: GroupConfigurationItem[];
116
- ProposedConfiguration?: GroupConfigurationItem[];
117
- Status?: GroupConfigurationStatus;
118
- FailureReason?: string;
117
+ Configuration?: GroupConfigurationItem[] | undefined;
118
+ ProposedConfiguration?: GroupConfigurationItem[] | undefined;
119
+ Status?: GroupConfigurationStatus | undefined;
120
+ FailureReason?: string | undefined;
119
121
  }
120
122
  export interface CreateGroupOutput {
121
- Group?: Group;
122
- ResourceQuery?: ResourceQuery;
123
- Tags?: Record<string, string>;
124
- GroupConfiguration?: GroupConfiguration;
123
+ Group?: Group | undefined;
124
+ ResourceQuery?: ResourceQuery | undefined;
125
+ Tags?: Record<string, string> | undefined;
126
+ GroupConfiguration?: GroupConfiguration | undefined;
125
127
  }
126
128
  export interface DeleteGroupInput {
127
- GroupName?: string;
128
- Group?: string;
129
+ GroupName?: string | undefined;
130
+ Group?: string | undefined;
129
131
  }
130
132
  export interface DeleteGroupOutput {
131
- Group?: Group;
133
+ Group?: Group | undefined;
132
134
  }
133
135
  export declare class NotFoundException extends __BaseException {
134
136
  readonly name: "NotFoundException";
135
137
  readonly $fault: "client";
136
- Message?: string;
138
+ Message?: string | undefined;
137
139
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
138
140
  }
139
141
  export interface GetAccountSettingsOutput {
140
- AccountSettings?: AccountSettings;
142
+ AccountSettings?: AccountSettings | undefined;
141
143
  }
142
144
  export interface GetGroupInput {
143
- GroupName?: string;
144
- Group?: string;
145
+ GroupName?: string | undefined;
146
+ Group?: string | undefined;
145
147
  }
146
148
  export interface GetGroupOutput {
147
- Group?: Group;
149
+ Group?: Group | undefined;
148
150
  }
149
151
  export interface GetGroupConfigurationInput {
150
- Group?: string;
152
+ Group?: string | undefined;
151
153
  }
152
154
  export interface GetGroupConfigurationOutput {
153
- GroupConfiguration?: GroupConfiguration;
155
+ GroupConfiguration?: GroupConfiguration | undefined;
154
156
  }
155
157
  export interface GetGroupQueryInput {
156
- GroupName?: string;
157
- Group?: string;
158
+ GroupName?: string | undefined;
159
+ Group?: string | undefined;
158
160
  }
159
161
  export interface GroupQuery {
160
162
  GroupName: string | undefined;
161
163
  ResourceQuery: ResourceQuery | undefined;
162
164
  }
163
165
  export interface GetGroupQueryOutput {
164
- GroupQuery?: GroupQuery;
166
+ GroupQuery?: GroupQuery | undefined;
165
167
  }
166
168
  export interface GetTagsInput {
167
169
  Arn: string | undefined;
168
170
  }
169
171
  export interface GetTagsOutput {
170
- Arn?: string;
171
- Tags?: Record<string, string>;
172
+ Arn?: string | undefined;
173
+ Tags?: Record<string, string> | undefined;
172
174
  }
173
175
  export interface GetTagSyncTaskInput {
174
176
  TaskArn: string | undefined;
@@ -180,32 +182,32 @@ export declare const TagSyncTaskStatus: {
180
182
  export type TagSyncTaskStatus =
181
183
  (typeof TagSyncTaskStatus)[keyof typeof TagSyncTaskStatus];
182
184
  export interface GetTagSyncTaskOutput {
183
- GroupArn?: string;
184
- GroupName?: string;
185
- TaskArn?: string;
186
- TagKey?: string;
187
- TagValue?: string;
188
- RoleArn?: string;
189
- Status?: TagSyncTaskStatus;
190
- ErrorMessage?: string;
191
- CreatedAt?: Date;
185
+ GroupArn?: string | undefined;
186
+ GroupName?: string | undefined;
187
+ TaskArn?: string | undefined;
188
+ TagKey?: string | undefined;
189
+ TagValue?: string | undefined;
190
+ RoleArn?: string | undefined;
191
+ Status?: TagSyncTaskStatus | undefined;
192
+ ErrorMessage?: string | undefined;
193
+ CreatedAt?: Date | undefined;
192
194
  }
193
195
  export interface GroupResourcesInput {
194
196
  Group: string | undefined;
195
197
  ResourceArns: string[] | undefined;
196
198
  }
197
199
  export interface FailedResource {
198
- ResourceArn?: string;
199
- ErrorMessage?: string;
200
- ErrorCode?: string;
200
+ ResourceArn?: string | undefined;
201
+ ErrorMessage?: string | undefined;
202
+ ErrorCode?: string | undefined;
201
203
  }
202
204
  export interface PendingResource {
203
- ResourceArn?: string;
205
+ ResourceArn?: string | undefined;
204
206
  }
205
207
  export interface GroupResourcesOutput {
206
- Succeeded?: string[];
207
- Failed?: FailedResource[];
208
- Pending?: PendingResource[];
208
+ Succeeded?: string[] | undefined;
209
+ Failed?: FailedResource[] | undefined;
210
+ Pending?: PendingResource[] | undefined;
209
211
  }
210
212
  export declare const ListGroupingStatusesFilterName: {
211
213
  readonly ResourceArn: "resource-arn";
@@ -219,9 +221,9 @@ export interface ListGroupingStatusesFilter {
219
221
  }
220
222
  export interface ListGroupingStatusesInput {
221
223
  Group: string | undefined;
222
- MaxResults?: number;
223
- Filters?: ListGroupingStatusesFilter[];
224
- NextToken?: string;
224
+ MaxResults?: number | undefined;
225
+ Filters?: ListGroupingStatusesFilter[] | undefined;
226
+ NextToken?: string | undefined;
225
227
  }
226
228
  export declare const GroupingType: {
227
229
  readonly GROUP: "GROUP";
@@ -237,17 +239,17 @@ export declare const GroupingStatus: {
237
239
  export type GroupingStatus =
238
240
  (typeof GroupingStatus)[keyof typeof GroupingStatus];
239
241
  export interface GroupingStatusesItem {
240
- ResourceArn?: string;
241
- Action?: GroupingType;
242
- Status?: GroupingStatus;
243
- ErrorMessage?: string;
244
- ErrorCode?: string;
245
- UpdatedAt?: Date;
242
+ ResourceArn?: string | undefined;
243
+ Action?: GroupingType | undefined;
244
+ Status?: GroupingStatus | undefined;
245
+ ErrorMessage?: string | undefined;
246
+ ErrorCode?: string | undefined;
247
+ UpdatedAt?: Date | undefined;
246
248
  }
247
249
  export interface ListGroupingStatusesOutput {
248
- Group?: string;
249
- GroupingStatuses?: GroupingStatusesItem[];
250
- NextToken?: string;
250
+ Group?: string | undefined;
251
+ GroupingStatuses?: GroupingStatusesItem[] | undefined;
252
+ NextToken?: string | undefined;
251
253
  }
252
254
  export declare const ResourceFilterName: {
253
255
  readonly ResourceType: "resource-type";
@@ -259,11 +261,11 @@ export interface ResourceFilter {
259
261
  Values: string[] | undefined;
260
262
  }
261
263
  export interface ListGroupResourcesInput {
262
- GroupName?: string;
263
- Group?: string;
264
- Filters?: ResourceFilter[];
265
- MaxResults?: number;
266
- NextToken?: string;
264
+ GroupName?: string | undefined;
265
+ Group?: string | undefined;
266
+ Filters?: ResourceFilter[] | undefined;
267
+ MaxResults?: number | undefined;
268
+ NextToken?: string | undefined;
267
269
  }
268
270
  export declare const QueryErrorCode: {
269
271
  readonly CLOUDFORMATION_STACK_INACTIVE: "CLOUDFORMATION_STACK_INACTIVE";
@@ -274,12 +276,12 @@ export declare const QueryErrorCode: {
274
276
  export type QueryErrorCode =
275
277
  (typeof QueryErrorCode)[keyof typeof QueryErrorCode];
276
278
  export interface QueryError {
277
- ErrorCode?: QueryErrorCode;
278
- Message?: string;
279
+ ErrorCode?: QueryErrorCode | undefined;
280
+ Message?: string | undefined;
279
281
  }
280
282
  export interface ResourceIdentifier {
281
- ResourceArn?: string;
282
- ResourceType?: string;
283
+ ResourceArn?: string | undefined;
284
+ ResourceType?: string | undefined;
283
285
  }
284
286
  export declare const ResourceStatusValue: {
285
287
  readonly Pending: "PENDING";
@@ -287,17 +289,17 @@ export declare const ResourceStatusValue: {
287
289
  export type ResourceStatusValue =
288
290
  (typeof ResourceStatusValue)[keyof typeof ResourceStatusValue];
289
291
  export interface ResourceStatus {
290
- Name?: ResourceStatusValue;
292
+ Name?: ResourceStatusValue | undefined;
291
293
  }
292
294
  export interface ListGroupResourcesItem {
293
- Identifier?: ResourceIdentifier;
294
- Status?: ResourceStatus;
295
+ Identifier?: ResourceIdentifier | undefined;
296
+ Status?: ResourceStatus | undefined;
295
297
  }
296
298
  export interface ListGroupResourcesOutput {
297
- Resources?: ListGroupResourcesItem[];
298
- ResourceIdentifiers?: ResourceIdentifier[];
299
- NextToken?: string;
300
- QueryErrors?: QueryError[];
299
+ Resources?: ListGroupResourcesItem[] | undefined;
300
+ ResourceIdentifiers?: ResourceIdentifier[] | undefined;
301
+ NextToken?: string | undefined;
302
+ QueryErrors?: QueryError[] | undefined;
301
303
  }
302
304
  export declare const GroupFilterName: {
303
305
  readonly ConfigurationType: "configuration-type";
@@ -313,61 +315,61 @@ export interface GroupFilter {
313
315
  Values: string[] | undefined;
314
316
  }
315
317
  export interface ListGroupsInput {
316
- Filters?: GroupFilter[];
317
- MaxResults?: number;
318
- NextToken?: string;
318
+ Filters?: GroupFilter[] | undefined;
319
+ MaxResults?: number | undefined;
320
+ NextToken?: string | undefined;
319
321
  }
320
322
  export interface GroupIdentifier {
321
- GroupName?: string;
322
- GroupArn?: string;
323
- Description?: string;
324
- Criticality?: number;
325
- Owner?: string;
326
- DisplayName?: string;
323
+ GroupName?: string | undefined;
324
+ GroupArn?: string | undefined;
325
+ Description?: string | undefined;
326
+ Criticality?: number | undefined;
327
+ Owner?: string | undefined;
328
+ DisplayName?: string | undefined;
327
329
  }
328
330
  export interface ListGroupsOutput {
329
- GroupIdentifiers?: GroupIdentifier[];
330
- Groups?: Group[];
331
- NextToken?: string;
331
+ GroupIdentifiers?: GroupIdentifier[] | undefined;
332
+ Groups?: Group[] | undefined;
333
+ NextToken?: string | undefined;
332
334
  }
333
335
  export interface ListTagSyncTasksFilter {
334
- GroupArn?: string;
335
- GroupName?: string;
336
+ GroupArn?: string | undefined;
337
+ GroupName?: string | undefined;
336
338
  }
337
339
  export interface ListTagSyncTasksInput {
338
- Filters?: ListTagSyncTasksFilter[];
339
- MaxResults?: number;
340
- NextToken?: string;
340
+ Filters?: ListTagSyncTasksFilter[] | undefined;
341
+ MaxResults?: number | undefined;
342
+ NextToken?: string | undefined;
341
343
  }
342
344
  export interface TagSyncTaskItem {
343
- GroupArn?: string;
344
- GroupName?: string;
345
- TaskArn?: string;
346
- TagKey?: string;
347
- TagValue?: string;
348
- RoleArn?: string;
349
- Status?: TagSyncTaskStatus;
350
- ErrorMessage?: string;
351
- CreatedAt?: Date;
345
+ GroupArn?: string | undefined;
346
+ GroupName?: string | undefined;
347
+ TaskArn?: string | undefined;
348
+ TagKey?: string | undefined;
349
+ TagValue?: string | undefined;
350
+ RoleArn?: string | undefined;
351
+ Status?: TagSyncTaskStatus | undefined;
352
+ ErrorMessage?: string | undefined;
353
+ CreatedAt?: Date | undefined;
352
354
  }
353
355
  export interface ListTagSyncTasksOutput {
354
- TagSyncTasks?: TagSyncTaskItem[];
355
- NextToken?: string;
356
+ TagSyncTasks?: TagSyncTaskItem[] | undefined;
357
+ NextToken?: string | undefined;
356
358
  }
357
359
  export interface PutGroupConfigurationInput {
358
- Group?: string;
359
- Configuration?: GroupConfigurationItem[];
360
+ Group?: string | undefined;
361
+ Configuration?: GroupConfigurationItem[] | undefined;
360
362
  }
361
363
  export interface PutGroupConfigurationOutput {}
362
364
  export interface SearchResourcesInput {
363
365
  ResourceQuery: ResourceQuery | undefined;
364
- MaxResults?: number;
365
- NextToken?: string;
366
+ MaxResults?: number | undefined;
367
+ NextToken?: string | undefined;
366
368
  }
367
369
  export interface SearchResourcesOutput {
368
- ResourceIdentifiers?: ResourceIdentifier[];
369
- NextToken?: string;
370
- QueryErrors?: QueryError[];
370
+ ResourceIdentifiers?: ResourceIdentifier[] | undefined;
371
+ NextToken?: string | undefined;
372
+ QueryErrors?: QueryError[] | undefined;
371
373
  }
372
374
  export interface StartTagSyncTaskInput {
373
375
  Group: string | undefined;
@@ -376,60 +378,62 @@ export interface StartTagSyncTaskInput {
376
378
  RoleArn: string | undefined;
377
379
  }
378
380
  export interface StartTagSyncTaskOutput {
379
- GroupArn?: string;
380
- GroupName?: string;
381
- TaskArn?: string;
382
- TagKey?: string;
383
- TagValue?: string;
384
- RoleArn?: string;
381
+ GroupArn?: string | undefined;
382
+ GroupName?: string | undefined;
383
+ TaskArn?: string | undefined;
384
+ TagKey?: string | undefined;
385
+ TagValue?: string | undefined;
386
+ RoleArn?: string | undefined;
385
387
  }
386
388
  export interface TagInput {
387
389
  Arn: string | undefined;
388
390
  Tags: Record<string, string> | undefined;
389
391
  }
390
392
  export interface TagOutput {
391
- Arn?: string;
392
- Tags?: Record<string, string>;
393
+ Arn?: string | undefined;
394
+ Tags?: Record<string, string> | undefined;
393
395
  }
394
396
  export interface UngroupResourcesInput {
395
397
  Group: string | undefined;
396
398
  ResourceArns: string[] | undefined;
397
399
  }
398
400
  export interface UngroupResourcesOutput {
399
- Succeeded?: string[];
400
- Failed?: FailedResource[];
401
- Pending?: PendingResource[];
401
+ Succeeded?: string[] | undefined;
402
+ Failed?: FailedResource[] | undefined;
403
+ Pending?: PendingResource[] | undefined;
402
404
  }
403
405
  export interface UntagInput {
404
406
  Arn: string | undefined;
405
407
  Keys: string[] | undefined;
406
408
  }
407
409
  export interface UntagOutput {
408
- Arn?: string;
409
- Keys?: string[];
410
+ Arn?: string | undefined;
411
+ Keys?: string[] | undefined;
410
412
  }
411
413
  export interface UpdateAccountSettingsInput {
412
- GroupLifecycleEventsDesiredStatus?: GroupLifecycleEventsDesiredStatus;
414
+ GroupLifecycleEventsDesiredStatus?:
415
+ | GroupLifecycleEventsDesiredStatus
416
+ | undefined;
413
417
  }
414
418
  export interface UpdateAccountSettingsOutput {
415
- AccountSettings?: AccountSettings;
419
+ AccountSettings?: AccountSettings | undefined;
416
420
  }
417
421
  export interface UpdateGroupInput {
418
- GroupName?: string;
419
- Group?: string;
420
- Description?: string;
421
- Criticality?: number;
422
- Owner?: string;
423
- DisplayName?: string;
422
+ GroupName?: string | undefined;
423
+ Group?: string | undefined;
424
+ Description?: string | undefined;
425
+ Criticality?: number | undefined;
426
+ Owner?: string | undefined;
427
+ DisplayName?: string | undefined;
424
428
  }
425
429
  export interface UpdateGroupOutput {
426
- Group?: Group;
430
+ Group?: Group | undefined;
427
431
  }
428
432
  export interface UpdateGroupQueryInput {
429
- GroupName?: string;
430
- Group?: string;
433
+ GroupName?: string | undefined;
434
+ Group?: string | undefined;
431
435
  ResourceQuery: ResourceQuery | undefined;
432
436
  }
433
437
  export interface UpdateGroupQueryOutput {
434
- GroupQuery?: GroupQuery;
438
+ GroupQuery?: GroupQuery | undefined;
435
439
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-resource-groups",
3
3
  "description": "AWS SDK for JavaScript Resource Groups Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.691.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-resource-groups",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",