@aws-sdk/client-securitylake 3.687.0 → 3.692.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.
@@ -3,7 +3,7 @@ import { SecurityLakeServiceException as __BaseException } from "./SecurityLakeS
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- errorCode?: string;
6
+ errorCode?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
@@ -30,14 +30,14 @@ export declare const AwsLogSourceName: {
30
30
  export type AwsLogSourceName =
31
31
  (typeof AwsLogSourceName)[keyof typeof AwsLogSourceName];
32
32
  export interface AwsLogSourceConfiguration {
33
- accounts?: string[];
33
+ accounts?: string[] | undefined;
34
34
  regions: string[] | undefined;
35
35
  sourceName: AwsLogSourceName | undefined;
36
- sourceVersion?: string;
36
+ sourceVersion?: string | undefined;
37
37
  }
38
38
  export interface AwsLogSourceResource {
39
- sourceName?: AwsLogSourceName;
40
- sourceVersion?: string;
39
+ sourceName?: AwsLogSourceName | undefined;
40
+ sourceVersion?: string | undefined;
41
41
  }
42
42
  export declare class BadRequestException extends __BaseException {
43
43
  readonly name: "BadRequestException";
@@ -49,15 +49,15 @@ export declare class BadRequestException extends __BaseException {
49
49
  export declare class ConflictException extends __BaseException {
50
50
  readonly name: "ConflictException";
51
51
  readonly $fault: "client";
52
- resourceName?: string;
53
- resourceType?: string;
52
+ resourceName?: string | undefined;
53
+ resourceType?: string | undefined;
54
54
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
55
55
  }
56
56
  export interface CreateAwsLogSourceRequest {
57
57
  sources: AwsLogSourceConfiguration[] | undefined;
58
58
  }
59
59
  export interface CreateAwsLogSourceResponse {
60
- failed?: string[];
60
+ failed?: string[] | undefined;
61
61
  }
62
62
  export declare class InternalServerException extends __BaseException {
63
63
  readonly name: "InternalServerException";
@@ -70,8 +70,8 @@ export declare class InternalServerException extends __BaseException {
70
70
  export declare class ResourceNotFoundException extends __BaseException {
71
71
  readonly name: "ResourceNotFoundException";
72
72
  readonly $fault: "client";
73
- resourceName?: string;
74
- resourceType?: string;
73
+ resourceName?: string | undefined;
74
+ resourceType?: string | undefined;
75
75
  constructor(
76
76
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
77
77
  );
@@ -82,9 +82,9 @@ export declare class ThrottlingException extends __BaseException {
82
82
  $retryable: {
83
83
  throttling: boolean;
84
84
  };
85
- serviceCode?: string;
86
- quotaCode?: string;
87
- retryAfterSeconds?: number;
85
+ serviceCode?: string | undefined;
86
+ quotaCode?: string | undefined;
87
+ retryAfterSeconds?: number | undefined;
88
88
  constructor(
89
89
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
90
90
  );
@@ -98,51 +98,51 @@ export interface CustomLogSourceConfiguration {
98
98
  }
99
99
  export interface CreateCustomLogSourceRequest {
100
100
  sourceName: string | undefined;
101
- sourceVersion?: string;
102
- eventClasses?: string[];
101
+ sourceVersion?: string | undefined;
102
+ eventClasses?: string[] | undefined;
103
103
  configuration: CustomLogSourceConfiguration | undefined;
104
104
  }
105
105
  export interface CustomLogSourceAttributes {
106
- crawlerArn?: string;
107
- databaseArn?: string;
108
- tableArn?: string;
106
+ crawlerArn?: string | undefined;
107
+ databaseArn?: string | undefined;
108
+ tableArn?: string | undefined;
109
109
  }
110
110
  export interface CustomLogSourceProvider {
111
- roleArn?: string;
112
- location?: string;
111
+ roleArn?: string | undefined;
112
+ location?: string | undefined;
113
113
  }
114
114
  export interface CustomLogSourceResource {
115
- sourceName?: string;
116
- sourceVersion?: string;
117
- provider?: CustomLogSourceProvider;
118
- attributes?: CustomLogSourceAttributes;
115
+ sourceName?: string | undefined;
116
+ sourceVersion?: string | undefined;
117
+ provider?: CustomLogSourceProvider | undefined;
118
+ attributes?: CustomLogSourceAttributes | undefined;
119
119
  }
120
120
  export interface CreateCustomLogSourceResponse {
121
- source?: CustomLogSourceResource;
121
+ source?: CustomLogSourceResource | undefined;
122
122
  }
123
123
  export interface DataLakeEncryptionConfiguration {
124
- kmsKeyId?: string;
124
+ kmsKeyId?: string | undefined;
125
125
  }
126
126
  export interface DataLakeLifecycleExpiration {
127
- days?: number;
127
+ days?: number | undefined;
128
128
  }
129
129
  export interface DataLakeLifecycleTransition {
130
- storageClass?: string;
131
- days?: number;
130
+ storageClass?: string | undefined;
131
+ days?: number | undefined;
132
132
  }
133
133
  export interface DataLakeLifecycleConfiguration {
134
- expiration?: DataLakeLifecycleExpiration;
135
- transitions?: DataLakeLifecycleTransition[];
134
+ expiration?: DataLakeLifecycleExpiration | undefined;
135
+ transitions?: DataLakeLifecycleTransition[] | undefined;
136
136
  }
137
137
  export interface DataLakeReplicationConfiguration {
138
- regions?: string[];
139
- roleArn?: string;
138
+ regions?: string[] | undefined;
139
+ roleArn?: string | undefined;
140
140
  }
141
141
  export interface DataLakeConfiguration {
142
142
  region: string | undefined;
143
- encryptionConfiguration?: DataLakeEncryptionConfiguration;
144
- lifecycleConfiguration?: DataLakeLifecycleConfiguration;
145
- replicationConfiguration?: DataLakeReplicationConfiguration;
143
+ encryptionConfiguration?: DataLakeEncryptionConfiguration | undefined;
144
+ lifecycleConfiguration?: DataLakeLifecycleConfiguration | undefined;
145
+ replicationConfiguration?: DataLakeReplicationConfiguration | undefined;
146
146
  }
147
147
  export interface Tag {
148
148
  key: string | undefined;
@@ -151,7 +151,7 @@ export interface Tag {
151
151
  export interface CreateDataLakeRequest {
152
152
  configurations: DataLakeConfiguration[] | undefined;
153
153
  metaStoreManagerRoleArn: string | undefined;
154
- tags?: Tag[];
154
+ tags?: Tag[] | undefined;
155
155
  }
156
156
  export declare const DataLakeStatus: {
157
157
  readonly COMPLETED: "COMPLETED";
@@ -162,31 +162,31 @@ export declare const DataLakeStatus: {
162
162
  export type DataLakeStatus =
163
163
  (typeof DataLakeStatus)[keyof typeof DataLakeStatus];
164
164
  export interface DataLakeUpdateException {
165
- reason?: string;
166
- code?: string;
165
+ reason?: string | undefined;
166
+ code?: string | undefined;
167
167
  }
168
168
  export interface DataLakeUpdateStatus {
169
- requestId?: string;
170
- status?: DataLakeStatus;
171
- exception?: DataLakeUpdateException;
169
+ requestId?: string | undefined;
170
+ status?: DataLakeStatus | undefined;
171
+ exception?: DataLakeUpdateException | undefined;
172
172
  }
173
173
  export interface DataLakeResource {
174
174
  dataLakeArn: string | undefined;
175
175
  region: string | undefined;
176
- s3BucketArn?: string;
177
- encryptionConfiguration?: DataLakeEncryptionConfiguration;
178
- lifecycleConfiguration?: DataLakeLifecycleConfiguration;
179
- replicationConfiguration?: DataLakeReplicationConfiguration;
180
- createStatus?: DataLakeStatus;
181
- updateStatus?: DataLakeUpdateStatus;
176
+ s3BucketArn?: string | undefined;
177
+ encryptionConfiguration?: DataLakeEncryptionConfiguration | undefined;
178
+ lifecycleConfiguration?: DataLakeLifecycleConfiguration | undefined;
179
+ replicationConfiguration?: DataLakeReplicationConfiguration | undefined;
180
+ createStatus?: DataLakeStatus | undefined;
181
+ updateStatus?: DataLakeUpdateStatus | undefined;
182
182
  }
183
183
  export interface CreateDataLakeResponse {
184
- dataLakes?: DataLakeResource[];
184
+ dataLakes?: DataLakeResource[] | undefined;
185
185
  }
186
186
  export interface CreateDataLakeExceptionSubscriptionRequest {
187
187
  subscriptionProtocol: string | undefined;
188
188
  notificationEndpoint: string | undefined;
189
- exceptionTimeToLive?: number;
189
+ exceptionTimeToLive?: number | undefined;
190
190
  }
191
191
  export interface CreateDataLakeExceptionSubscriptionResponse {}
192
192
  export interface DataLakeAutoEnableNewAccountConfiguration {
@@ -194,7 +194,9 @@ export interface DataLakeAutoEnableNewAccountConfiguration {
194
194
  sources: AwsLogSourceResource[] | undefined;
195
195
  }
196
196
  export interface CreateDataLakeOrganizationConfigurationRequest {
197
- autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[];
197
+ autoEnableNewAccount?:
198
+ | DataLakeAutoEnableNewAccountConfiguration[]
199
+ | undefined;
198
200
  }
199
201
  export interface CreateDataLakeOrganizationConfigurationResponse {}
200
202
  export type LogSourceResource =
@@ -227,10 +229,10 @@ export declare namespace LogSourceResource {
227
229
  export interface CreateSubscriberRequest {
228
230
  subscriberIdentity: AwsIdentity | undefined;
229
231
  subscriberName: string | undefined;
230
- subscriberDescription?: string;
232
+ subscriberDescription?: string | undefined;
231
233
  sources: LogSourceResource[] | undefined;
232
- accessTypes?: AccessType[];
233
- tags?: Tag[];
234
+ accessTypes?: AccessType[] | undefined;
235
+ tags?: Tag[] | undefined;
234
236
  }
235
237
  export declare const SubscriberStatus: {
236
238
  readonly ACTIVE: "ACTIVE";
@@ -245,20 +247,20 @@ export interface SubscriberResource {
245
247
  subscriberArn: string | undefined;
246
248
  subscriberIdentity: AwsIdentity | undefined;
247
249
  subscriberName: string | undefined;
248
- subscriberDescription?: string;
250
+ subscriberDescription?: string | undefined;
249
251
  sources: LogSourceResource[] | undefined;
250
- accessTypes?: AccessType[];
251
- roleArn?: string;
252
- s3BucketArn?: string;
253
- subscriberEndpoint?: string;
254
- subscriberStatus?: SubscriberStatus;
255
- resourceShareArn?: string;
256
- resourceShareName?: string;
257
- createdAt?: Date;
258
- updatedAt?: Date;
252
+ accessTypes?: AccessType[] | undefined;
253
+ roleArn?: string | undefined;
254
+ s3BucketArn?: string | undefined;
255
+ subscriberEndpoint?: string | undefined;
256
+ subscriberStatus?: SubscriberStatus | undefined;
257
+ resourceShareArn?: string | undefined;
258
+ resourceShareName?: string | undefined;
259
+ createdAt?: Date | undefined;
260
+ updatedAt?: Date | undefined;
259
261
  }
260
262
  export interface CreateSubscriberResponse {
261
- subscriber?: SubscriberResource;
263
+ subscriber?: SubscriberResource | undefined;
262
264
  }
263
265
  export declare const HttpMethod: {
264
266
  readonly POST: "POST";
@@ -267,9 +269,9 @@ export declare const HttpMethod: {
267
269
  export type HttpMethod = (typeof HttpMethod)[keyof typeof HttpMethod];
268
270
  export interface HttpsNotificationConfiguration {
269
271
  endpoint: string | undefined;
270
- authorizationApiKeyName?: string;
271
- authorizationApiKeyValue?: string;
272
- httpMethod?: HttpMethod;
272
+ authorizationApiKeyName?: string | undefined;
273
+ authorizationApiKeyValue?: string | undefined;
274
+ httpMethod?: HttpMethod | undefined;
273
275
  targetRoleArn: string | undefined;
274
276
  }
275
277
  export interface SqsNotificationConfiguration {}
@@ -307,17 +309,17 @@ export interface CreateSubscriberNotificationRequest {
307
309
  configuration: NotificationConfiguration | undefined;
308
310
  }
309
311
  export interface CreateSubscriberNotificationResponse {
310
- subscriberEndpoint?: string;
312
+ subscriberEndpoint?: string | undefined;
311
313
  }
312
314
  export interface DeleteAwsLogSourceRequest {
313
315
  sources: AwsLogSourceConfiguration[] | undefined;
314
316
  }
315
317
  export interface DeleteAwsLogSourceResponse {
316
- failed?: string[];
318
+ failed?: string[] | undefined;
317
319
  }
318
320
  export interface DeleteCustomLogSourceRequest {
319
321
  sourceName: string | undefined;
320
- sourceVersion?: string;
322
+ sourceVersion?: string | undefined;
321
323
  }
322
324
  export interface DeleteCustomLogSourceResponse {}
323
325
  export interface DeleteDataLakeRequest {
@@ -325,17 +327,21 @@ export interface DeleteDataLakeRequest {
325
327
  }
326
328
  export interface DeleteDataLakeResponse {}
327
329
  export interface DeleteDataLakeOrganizationConfigurationRequest {
328
- autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[];
330
+ autoEnableNewAccount?:
331
+ | DataLakeAutoEnableNewAccountConfiguration[]
332
+ | undefined;
329
333
  }
330
334
  export interface DeleteDataLakeOrganizationConfigurationResponse {}
331
335
  export interface GetDataLakeOrganizationConfigurationRequest {}
332
336
  export interface GetDataLakeOrganizationConfigurationResponse {
333
- autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[];
337
+ autoEnableNewAccount?:
338
+ | DataLakeAutoEnableNewAccountConfiguration[]
339
+ | undefined;
334
340
  }
335
341
  export interface GetDataLakeSourcesRequest {
336
- accounts?: string[];
337
- maxResults?: number;
338
- nextToken?: string;
342
+ accounts?: string[] | undefined;
343
+ maxResults?: number | undefined;
344
+ nextToken?: string | undefined;
339
345
  }
340
346
  export declare const SourceCollectionStatus: {
341
347
  readonly COLLECTING: "COLLECTING";
@@ -345,54 +351,54 @@ export declare const SourceCollectionStatus: {
345
351
  export type SourceCollectionStatus =
346
352
  (typeof SourceCollectionStatus)[keyof typeof SourceCollectionStatus];
347
353
  export interface DataLakeSourceStatus {
348
- resource?: string;
349
- status?: SourceCollectionStatus;
354
+ resource?: string | undefined;
355
+ status?: SourceCollectionStatus | undefined;
350
356
  }
351
357
  export interface DataLakeSource {
352
- account?: string;
353
- sourceName?: string;
354
- eventClasses?: string[];
355
- sourceStatuses?: DataLakeSourceStatus[];
358
+ account?: string | undefined;
359
+ sourceName?: string | undefined;
360
+ eventClasses?: string[] | undefined;
361
+ sourceStatuses?: DataLakeSourceStatus[] | undefined;
356
362
  }
357
363
  export interface GetDataLakeSourcesResponse {
358
- dataLakeArn?: string;
359
- dataLakeSources?: DataLakeSource[];
360
- nextToken?: string;
364
+ dataLakeArn?: string | undefined;
365
+ dataLakeSources?: DataLakeSource[] | undefined;
366
+ nextToken?: string | undefined;
361
367
  }
362
368
  export interface ListDataLakesRequest {
363
- regions?: string[];
369
+ regions?: string[] | undefined;
364
370
  }
365
371
  export interface ListDataLakesResponse {
366
- dataLakes?: DataLakeResource[];
372
+ dataLakes?: DataLakeResource[] | undefined;
367
373
  }
368
374
  export interface ListLogSourcesRequest {
369
- accounts?: string[];
370
- regions?: string[];
371
- sources?: LogSourceResource[];
372
- maxResults?: number;
373
- nextToken?: string;
375
+ accounts?: string[] | undefined;
376
+ regions?: string[] | undefined;
377
+ sources?: LogSourceResource[] | undefined;
378
+ maxResults?: number | undefined;
379
+ nextToken?: string | undefined;
374
380
  }
375
381
  export interface LogSource {
376
- account?: string;
377
- region?: string;
378
- sources?: LogSourceResource[];
382
+ account?: string | undefined;
383
+ region?: string | undefined;
384
+ sources?: LogSourceResource[] | undefined;
379
385
  }
380
386
  export interface ListLogSourcesResponse {
381
- sources?: LogSource[];
382
- nextToken?: string;
387
+ sources?: LogSource[] | undefined;
388
+ nextToken?: string | undefined;
383
389
  }
384
390
  export interface UpdateDataLakeRequest {
385
391
  configurations: DataLakeConfiguration[] | undefined;
386
- metaStoreManagerRoleArn?: string;
392
+ metaStoreManagerRoleArn?: string | undefined;
387
393
  }
388
394
  export interface UpdateDataLakeResponse {
389
- dataLakes?: DataLakeResource[];
395
+ dataLakes?: DataLakeResource[] | undefined;
390
396
  }
391
397
  export interface DataLakeException {
392
- region?: string;
393
- exception?: string;
394
- remediation?: string;
395
- timestamp?: Date;
398
+ region?: string | undefined;
399
+ exception?: string | undefined;
400
+ remediation?: string | undefined;
401
+ timestamp?: Date | undefined;
396
402
  }
397
403
  export interface DeleteDataLakeExceptionSubscriptionRequest {}
398
404
  export interface DeleteDataLakeExceptionSubscriptionResponse {}
@@ -408,38 +414,38 @@ export interface DeregisterDataLakeDelegatedAdministratorRequest {}
408
414
  export interface DeregisterDataLakeDelegatedAdministratorResponse {}
409
415
  export interface GetDataLakeExceptionSubscriptionRequest {}
410
416
  export interface GetDataLakeExceptionSubscriptionResponse {
411
- subscriptionProtocol?: string;
412
- notificationEndpoint?: string;
413
- exceptionTimeToLive?: number;
417
+ subscriptionProtocol?: string | undefined;
418
+ notificationEndpoint?: string | undefined;
419
+ exceptionTimeToLive?: number | undefined;
414
420
  }
415
421
  export interface GetSubscriberRequest {
416
422
  subscriberId: string | undefined;
417
423
  }
418
424
  export interface GetSubscriberResponse {
419
- subscriber?: SubscriberResource;
425
+ subscriber?: SubscriberResource | undefined;
420
426
  }
421
427
  export interface ListDataLakeExceptionsRequest {
422
- regions?: string[];
423
- maxResults?: number;
424
- nextToken?: string;
428
+ regions?: string[] | undefined;
429
+ maxResults?: number | undefined;
430
+ nextToken?: string | undefined;
425
431
  }
426
432
  export interface ListDataLakeExceptionsResponse {
427
- exceptions?: DataLakeException[];
428
- nextToken?: string;
433
+ exceptions?: DataLakeException[] | undefined;
434
+ nextToken?: string | undefined;
429
435
  }
430
436
  export interface ListSubscribersRequest {
431
- nextToken?: string;
432
- maxResults?: number;
437
+ nextToken?: string | undefined;
438
+ maxResults?: number | undefined;
433
439
  }
434
440
  export interface ListSubscribersResponse {
435
- subscribers?: SubscriberResource[];
436
- nextToken?: string;
441
+ subscribers?: SubscriberResource[] | undefined;
442
+ nextToken?: string | undefined;
437
443
  }
438
444
  export interface ListTagsForResourceRequest {
439
445
  resourceArn: string | undefined;
440
446
  }
441
447
  export interface ListTagsForResourceResponse {
442
- tags?: Tag[];
448
+ tags?: Tag[] | undefined;
443
449
  }
444
450
  export interface RegisterDataLakeDelegatedAdministratorRequest {
445
451
  accountId: string | undefined;
@@ -447,20 +453,20 @@ export interface RegisterDataLakeDelegatedAdministratorRequest {
447
453
  export interface RegisterDataLakeDelegatedAdministratorResponse {}
448
454
  export interface UpdateSubscriberRequest {
449
455
  subscriberId: string | undefined;
450
- subscriberIdentity?: AwsIdentity;
451
- subscriberName?: string;
452
- subscriberDescription?: string;
453
- sources?: LogSourceResource[];
456
+ subscriberIdentity?: AwsIdentity | undefined;
457
+ subscriberName?: string | undefined;
458
+ subscriberDescription?: string | undefined;
459
+ sources?: LogSourceResource[] | undefined;
454
460
  }
455
461
  export interface UpdateSubscriberResponse {
456
- subscriber?: SubscriberResource;
462
+ subscriber?: SubscriberResource | undefined;
457
463
  }
458
464
  export interface UpdateSubscriberNotificationRequest {
459
465
  subscriberId: string | undefined;
460
466
  configuration: NotificationConfiguration | undefined;
461
467
  }
462
468
  export interface UpdateSubscriberNotificationResponse {
463
- subscriberEndpoint?: string;
469
+ subscriberEndpoint?: string | undefined;
464
470
  }
465
471
  export interface TagResourceRequest {
466
472
  resourceArn: string | undefined;
@@ -475,6 +481,6 @@ export interface UntagResourceResponse {}
475
481
  export interface UpdateDataLakeExceptionSubscriptionRequest {
476
482
  subscriptionProtocol: string | undefined;
477
483
  notificationEndpoint: string | undefined;
478
- exceptionTimeToLive?: number;
484
+ exceptionTimeToLive?: number | undefined;
479
485
  }
480
486
  export interface UpdateDataLakeExceptionSubscriptionResponse {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-securitylake",
3
3
  "description": "AWS SDK for JavaScript Securitylake Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.692.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-securitylake",
@@ -20,43 +20,43 @@
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",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },