@aws-sdk/client-synthetics 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.
@@ -7,14 +7,14 @@ export declare const EncryptionMode: {
7
7
  export type EncryptionMode =
8
8
  (typeof EncryptionMode)[keyof typeof EncryptionMode];
9
9
  export interface S3EncryptionConfig {
10
- EncryptionMode?: EncryptionMode;
11
- KmsKeyArn?: string;
10
+ EncryptionMode?: EncryptionMode | undefined;
11
+ KmsKeyArn?: string | undefined;
12
12
  }
13
13
  export interface ArtifactConfigInput {
14
- S3Encryption?: S3EncryptionConfig;
14
+ S3Encryption?: S3EncryptionConfig | undefined;
15
15
  }
16
16
  export interface ArtifactConfigOutput {
17
- S3Encryption?: S3EncryptionConfig;
17
+ S3Encryption?: S3EncryptionConfig | undefined;
18
18
  }
19
19
  export interface AssociateResourceRequest {
20
20
  GroupIdentifier: string | undefined;
@@ -24,13 +24,13 @@ export interface AssociateResourceResponse {}
24
24
  export declare class ConflictException extends __BaseException {
25
25
  readonly name: "ConflictException";
26
26
  readonly $fault: "client";
27
- Message?: string;
27
+ Message?: string | undefined;
28
28
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
29
29
  }
30
30
  export declare class InternalServerException extends __BaseException {
31
31
  readonly name: "InternalServerException";
32
32
  readonly $fault: "server";
33
- Message?: string;
33
+ Message?: string | undefined;
34
34
  constructor(
35
35
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
36
36
  );
@@ -38,7 +38,7 @@ export declare class InternalServerException extends __BaseException {
38
38
  export declare class ResourceNotFoundException extends __BaseException {
39
39
  readonly name: "ResourceNotFoundException";
40
40
  readonly $fault: "client";
41
- Message?: string;
41
+ Message?: string | undefined;
42
42
  constructor(
43
43
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
44
44
  );
@@ -46,7 +46,7 @@ export declare class ResourceNotFoundException extends __BaseException {
46
46
  export declare class ServiceQuotaExceededException extends __BaseException {
47
47
  readonly name: "ServiceQuotaExceededException";
48
48
  readonly $fault: "client";
49
- Message?: string;
49
+ Message?: string | undefined;
50
50
  constructor(
51
51
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
52
52
  );
@@ -54,7 +54,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
54
54
  export declare class ValidationException extends __BaseException {
55
55
  readonly name: "ValidationException";
56
56
  readonly $fault: "client";
57
- Message?: string;
57
+ Message?: string | undefined;
58
58
  constructor(
59
59
  opts: __ExceptionOptionType<ValidationException, __BaseException>
60
60
  );
@@ -62,18 +62,18 @@ export declare class ValidationException extends __BaseException {
62
62
  export declare class BadRequestException extends __BaseException {
63
63
  readonly name: "BadRequestException";
64
64
  readonly $fault: "client";
65
- Message?: string;
65
+ Message?: string | undefined;
66
66
  constructor(
67
67
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
68
68
  );
69
69
  }
70
70
  export interface BaseScreenshot {
71
71
  ScreenshotName: string | undefined;
72
- IgnoreCoordinates?: string[];
72
+ IgnoreCoordinates?: string[] | undefined;
73
73
  }
74
74
  export interface CanaryCodeOutput {
75
- SourceLocationArn?: string;
76
- Handler?: string;
75
+ SourceLocationArn?: string | undefined;
76
+ Handler?: string | undefined;
77
77
  }
78
78
  export declare const ProvisionedResourceCleanupSetting: {
79
79
  readonly AUTOMATIC: "AUTOMATIC";
@@ -82,13 +82,13 @@ export declare const ProvisionedResourceCleanupSetting: {
82
82
  export type ProvisionedResourceCleanupSetting =
83
83
  (typeof ProvisionedResourceCleanupSetting)[keyof typeof ProvisionedResourceCleanupSetting];
84
84
  export interface CanaryRunConfigOutput {
85
- TimeoutInSeconds?: number;
86
- MemoryInMB?: number;
87
- ActiveTracing?: boolean;
85
+ TimeoutInSeconds?: number | undefined;
86
+ MemoryInMB?: number | undefined;
87
+ ActiveTracing?: boolean | undefined;
88
88
  }
89
89
  export interface CanaryScheduleOutput {
90
- Expression?: string;
91
- DurationInSeconds?: number;
90
+ Expression?: string | undefined;
91
+ DurationInSeconds?: number | undefined;
92
92
  }
93
93
  export declare const CanaryState: {
94
94
  readonly CREATING: "CREATING";
@@ -119,44 +119,44 @@ export declare const CanaryStateReasonCode: {
119
119
  export type CanaryStateReasonCode =
120
120
  (typeof CanaryStateReasonCode)[keyof typeof CanaryStateReasonCode];
121
121
  export interface CanaryStatus {
122
- State?: CanaryState;
123
- StateReason?: string;
124
- StateReasonCode?: CanaryStateReasonCode;
122
+ State?: CanaryState | undefined;
123
+ StateReason?: string | undefined;
124
+ StateReasonCode?: CanaryStateReasonCode | undefined;
125
125
  }
126
126
  export interface CanaryTimeline {
127
- Created?: Date;
128
- LastModified?: Date;
129
- LastStarted?: Date;
130
- LastStopped?: Date;
127
+ Created?: Date | undefined;
128
+ LastModified?: Date | undefined;
129
+ LastStarted?: Date | undefined;
130
+ LastStopped?: Date | undefined;
131
131
  }
132
132
  export interface VisualReferenceOutput {
133
- BaseScreenshots?: BaseScreenshot[];
134
- BaseCanaryRunId?: string;
133
+ BaseScreenshots?: BaseScreenshot[] | undefined;
134
+ BaseCanaryRunId?: string | undefined;
135
135
  }
136
136
  export interface VpcConfigOutput {
137
- VpcId?: string;
138
- SubnetIds?: string[];
139
- SecurityGroupIds?: string[];
137
+ VpcId?: string | undefined;
138
+ SubnetIds?: string[] | undefined;
139
+ SecurityGroupIds?: string[] | undefined;
140
140
  }
141
141
  export interface Canary {
142
- Id?: string;
143
- Name?: string;
144
- Code?: CanaryCodeOutput;
145
- ExecutionRoleArn?: string;
146
- Schedule?: CanaryScheduleOutput;
147
- RunConfig?: CanaryRunConfigOutput;
148
- SuccessRetentionPeriodInDays?: number;
149
- FailureRetentionPeriodInDays?: number;
150
- Status?: CanaryStatus;
151
- Timeline?: CanaryTimeline;
152
- ArtifactS3Location?: string;
153
- EngineArn?: string;
154
- RuntimeVersion?: string;
155
- VpcConfig?: VpcConfigOutput;
156
- VisualReference?: VisualReferenceOutput;
157
- ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting;
158
- Tags?: Record<string, string>;
159
- ArtifactConfig?: ArtifactConfigOutput;
142
+ Id?: string | undefined;
143
+ Name?: string | undefined;
144
+ Code?: CanaryCodeOutput | undefined;
145
+ ExecutionRoleArn?: string | undefined;
146
+ Schedule?: CanaryScheduleOutput | undefined;
147
+ RunConfig?: CanaryRunConfigOutput | undefined;
148
+ SuccessRetentionPeriodInDays?: number | undefined;
149
+ FailureRetentionPeriodInDays?: number | undefined;
150
+ Status?: CanaryStatus | undefined;
151
+ Timeline?: CanaryTimeline | undefined;
152
+ ArtifactS3Location?: string | undefined;
153
+ EngineArn?: string | undefined;
154
+ RuntimeVersion?: string | undefined;
155
+ VpcConfig?: VpcConfigOutput | undefined;
156
+ VisualReference?: VisualReferenceOutput | undefined;
157
+ ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting | undefined;
158
+ Tags?: Record<string, string> | undefined;
159
+ ArtifactConfig?: ArtifactConfigOutput | undefined;
160
160
  }
161
161
  export declare const CanaryRunState: {
162
162
  readonly FAILED: "FAILED";
@@ -172,49 +172,49 @@ export declare const CanaryRunStateReasonCode: {
172
172
  export type CanaryRunStateReasonCode =
173
173
  (typeof CanaryRunStateReasonCode)[keyof typeof CanaryRunStateReasonCode];
174
174
  export interface CanaryRunStatus {
175
- State?: CanaryRunState;
176
- StateReason?: string;
177
- StateReasonCode?: CanaryRunStateReasonCode;
175
+ State?: CanaryRunState | undefined;
176
+ StateReason?: string | undefined;
177
+ StateReasonCode?: CanaryRunStateReasonCode | undefined;
178
178
  }
179
179
  export interface CanaryRunTimeline {
180
- Started?: Date;
181
- Completed?: Date;
180
+ Started?: Date | undefined;
181
+ Completed?: Date | undefined;
182
182
  }
183
183
  export interface CanaryRun {
184
- Id?: string;
185
- Name?: string;
186
- Status?: CanaryRunStatus;
187
- Timeline?: CanaryRunTimeline;
188
- ArtifactS3Location?: string;
184
+ Id?: string | undefined;
185
+ Name?: string | undefined;
186
+ Status?: CanaryRunStatus | undefined;
187
+ Timeline?: CanaryRunTimeline | undefined;
188
+ ArtifactS3Location?: string | undefined;
189
189
  }
190
190
  export interface CanaryLastRun {
191
- CanaryName?: string;
192
- LastRun?: CanaryRun;
191
+ CanaryName?: string | undefined;
192
+ LastRun?: CanaryRun | undefined;
193
193
  }
194
194
  export interface CanaryCodeInput {
195
- S3Bucket?: string;
196
- S3Key?: string;
197
- S3Version?: string;
198
- ZipFile?: Uint8Array;
195
+ S3Bucket?: string | undefined;
196
+ S3Key?: string | undefined;
197
+ S3Version?: string | undefined;
198
+ ZipFile?: Uint8Array | undefined;
199
199
  Handler: string | undefined;
200
200
  }
201
201
  export interface CanaryRunConfigInput {
202
- TimeoutInSeconds?: number;
203
- MemoryInMB?: number;
204
- ActiveTracing?: boolean;
205
- EnvironmentVariables?: Record<string, string>;
202
+ TimeoutInSeconds?: number | undefined;
203
+ MemoryInMB?: number | undefined;
204
+ ActiveTracing?: boolean | undefined;
205
+ EnvironmentVariables?: Record<string, string> | undefined;
206
206
  }
207
207
  export interface CanaryScheduleInput {
208
208
  Expression: string | undefined;
209
- DurationInSeconds?: number;
209
+ DurationInSeconds?: number | undefined;
210
210
  }
211
211
  export declare const ResourceToTag: {
212
212
  readonly LAMBDA_FUNCTION: "lambda-function";
213
213
  };
214
214
  export type ResourceToTag = (typeof ResourceToTag)[keyof typeof ResourceToTag];
215
215
  export interface VpcConfigInput {
216
- SubnetIds?: string[];
217
- SecurityGroupIds?: string[];
216
+ SubnetIds?: string[] | undefined;
217
+ SecurityGroupIds?: string[] | undefined;
218
218
  }
219
219
  export interface CreateCanaryRequest {
220
220
  Name: string | undefined;
@@ -222,45 +222,45 @@ export interface CreateCanaryRequest {
222
222
  ArtifactS3Location: string | undefined;
223
223
  ExecutionRoleArn: string | undefined;
224
224
  Schedule: CanaryScheduleInput | undefined;
225
- RunConfig?: CanaryRunConfigInput;
226
- SuccessRetentionPeriodInDays?: number;
227
- FailureRetentionPeriodInDays?: number;
225
+ RunConfig?: CanaryRunConfigInput | undefined;
226
+ SuccessRetentionPeriodInDays?: number | undefined;
227
+ FailureRetentionPeriodInDays?: number | undefined;
228
228
  RuntimeVersion: string | undefined;
229
- VpcConfig?: VpcConfigInput;
230
- ResourcesToReplicateTags?: ResourceToTag[];
231
- ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting;
232
- Tags?: Record<string, string>;
233
- ArtifactConfig?: ArtifactConfigInput;
229
+ VpcConfig?: VpcConfigInput | undefined;
230
+ ResourcesToReplicateTags?: ResourceToTag[] | undefined;
231
+ ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting | undefined;
232
+ Tags?: Record<string, string> | undefined;
233
+ ArtifactConfig?: ArtifactConfigInput | undefined;
234
234
  }
235
235
  export interface CreateCanaryResponse {
236
- Canary?: Canary;
236
+ Canary?: Canary | undefined;
237
237
  }
238
238
  export declare class RequestEntityTooLargeException extends __BaseException {
239
239
  readonly name: "RequestEntityTooLargeException";
240
240
  readonly $fault: "client";
241
- Message?: string;
241
+ Message?: string | undefined;
242
242
  constructor(
243
243
  opts: __ExceptionOptionType<RequestEntityTooLargeException, __BaseException>
244
244
  );
245
245
  }
246
246
  export interface CreateGroupRequest {
247
247
  Name: string | undefined;
248
- Tags?: Record<string, string>;
248
+ Tags?: Record<string, string> | undefined;
249
249
  }
250
250
  export interface Group {
251
- Id?: string;
252
- Name?: string;
253
- Arn?: string;
254
- Tags?: Record<string, string>;
255
- CreatedTime?: Date;
256
- LastModifiedTime?: Date;
251
+ Id?: string | undefined;
252
+ Name?: string | undefined;
253
+ Arn?: string | undefined;
254
+ Tags?: Record<string, string> | undefined;
255
+ CreatedTime?: Date | undefined;
256
+ LastModifiedTime?: Date | undefined;
257
257
  }
258
258
  export interface CreateGroupResponse {
259
- Group?: Group;
259
+ Group?: Group | undefined;
260
260
  }
261
261
  export interface DeleteCanaryRequest {
262
262
  Name: string | undefined;
263
- DeleteLambda?: boolean;
263
+ DeleteLambda?: boolean | undefined;
264
264
  }
265
265
  export interface DeleteCanaryResponse {}
266
266
  export interface DeleteGroupRequest {
@@ -268,36 +268,36 @@ export interface DeleteGroupRequest {
268
268
  }
269
269
  export interface DeleteGroupResponse {}
270
270
  export interface DescribeCanariesRequest {
271
- NextToken?: string;
272
- MaxResults?: number;
273
- Names?: string[];
271
+ NextToken?: string | undefined;
272
+ MaxResults?: number | undefined;
273
+ Names?: string[] | undefined;
274
274
  }
275
275
  export interface DescribeCanariesResponse {
276
- Canaries?: Canary[];
277
- NextToken?: string;
276
+ Canaries?: Canary[] | undefined;
277
+ NextToken?: string | undefined;
278
278
  }
279
279
  export interface DescribeCanariesLastRunRequest {
280
- NextToken?: string;
281
- MaxResults?: number;
282
- Names?: string[];
280
+ NextToken?: string | undefined;
281
+ MaxResults?: number | undefined;
282
+ Names?: string[] | undefined;
283
283
  }
284
284
  export interface DescribeCanariesLastRunResponse {
285
- CanariesLastRun?: CanaryLastRun[];
286
- NextToken?: string;
285
+ CanariesLastRun?: CanaryLastRun[] | undefined;
286
+ NextToken?: string | undefined;
287
287
  }
288
288
  export interface DescribeRuntimeVersionsRequest {
289
- NextToken?: string;
290
- MaxResults?: number;
289
+ NextToken?: string | undefined;
290
+ MaxResults?: number | undefined;
291
291
  }
292
292
  export interface RuntimeVersion {
293
- VersionName?: string;
294
- Description?: string;
295
- ReleaseDate?: Date;
296
- DeprecationDate?: Date;
293
+ VersionName?: string | undefined;
294
+ Description?: string | undefined;
295
+ ReleaseDate?: Date | undefined;
296
+ DeprecationDate?: Date | undefined;
297
297
  }
298
298
  export interface DescribeRuntimeVersionsResponse {
299
- RuntimeVersions?: RuntimeVersion[];
300
- NextToken?: string;
299
+ RuntimeVersions?: RuntimeVersion[] | undefined;
300
+ NextToken?: string | undefined;
301
301
  }
302
302
  export interface DisassociateResourceRequest {
303
303
  GroupIdentifier: string | undefined;
@@ -308,78 +308,78 @@ export interface GetCanaryRequest {
308
308
  Name: string | undefined;
309
309
  }
310
310
  export interface GetCanaryResponse {
311
- Canary?: Canary;
311
+ Canary?: Canary | undefined;
312
312
  }
313
313
  export interface GetCanaryRunsRequest {
314
314
  Name: string | undefined;
315
- NextToken?: string;
316
- MaxResults?: number;
315
+ NextToken?: string | undefined;
316
+ MaxResults?: number | undefined;
317
317
  }
318
318
  export interface GetCanaryRunsResponse {
319
- CanaryRuns?: CanaryRun[];
320
- NextToken?: string;
319
+ CanaryRuns?: CanaryRun[] | undefined;
320
+ NextToken?: string | undefined;
321
321
  }
322
322
  export interface GetGroupRequest {
323
323
  GroupIdentifier: string | undefined;
324
324
  }
325
325
  export interface GetGroupResponse {
326
- Group?: Group;
326
+ Group?: Group | undefined;
327
327
  }
328
328
  export interface GroupSummary {
329
- Id?: string;
330
- Name?: string;
331
- Arn?: string;
329
+ Id?: string | undefined;
330
+ Name?: string | undefined;
331
+ Arn?: string | undefined;
332
332
  }
333
333
  export declare class InternalFailureException extends __BaseException {
334
334
  readonly name: "InternalFailureException";
335
335
  readonly $fault: "server";
336
- Message?: string;
336
+ Message?: string | undefined;
337
337
  constructor(
338
338
  opts: __ExceptionOptionType<InternalFailureException, __BaseException>
339
339
  );
340
340
  }
341
341
  export interface ListAssociatedGroupsRequest {
342
- NextToken?: string;
343
- MaxResults?: number;
342
+ NextToken?: string | undefined;
343
+ MaxResults?: number | undefined;
344
344
  ResourceArn: string | undefined;
345
345
  }
346
346
  export interface ListAssociatedGroupsResponse {
347
- Groups?: GroupSummary[];
348
- NextToken?: string;
347
+ Groups?: GroupSummary[] | undefined;
348
+ NextToken?: string | undefined;
349
349
  }
350
350
  export interface ListGroupResourcesRequest {
351
- NextToken?: string;
352
- MaxResults?: number;
351
+ NextToken?: string | undefined;
352
+ MaxResults?: number | undefined;
353
353
  GroupIdentifier: string | undefined;
354
354
  }
355
355
  export interface ListGroupResourcesResponse {
356
- Resources?: string[];
357
- NextToken?: string;
356
+ Resources?: string[] | undefined;
357
+ NextToken?: string | undefined;
358
358
  }
359
359
  export interface ListGroupsRequest {
360
- NextToken?: string;
361
- MaxResults?: number;
360
+ NextToken?: string | undefined;
361
+ MaxResults?: number | undefined;
362
362
  }
363
363
  export interface ListGroupsResponse {
364
- Groups?: GroupSummary[];
365
- NextToken?: string;
364
+ Groups?: GroupSummary[] | undefined;
365
+ NextToken?: string | undefined;
366
366
  }
367
367
  export interface ListTagsForResourceRequest {
368
368
  ResourceArn: string | undefined;
369
369
  }
370
370
  export interface ListTagsForResourceResponse {
371
- Tags?: Record<string, string>;
371
+ Tags?: Record<string, string> | undefined;
372
372
  }
373
373
  export declare class NotFoundException extends __BaseException {
374
374
  readonly name: "NotFoundException";
375
375
  readonly $fault: "client";
376
- Message?: string;
376
+ Message?: string | undefined;
377
377
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
378
378
  }
379
379
  export declare class TooManyRequestsException extends __BaseException {
380
380
  readonly name: "TooManyRequestsException";
381
381
  readonly $fault: "client";
382
- Message?: string;
382
+ Message?: string | undefined;
383
383
  constructor(
384
384
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
385
385
  );
@@ -403,22 +403,22 @@ export interface UntagResourceRequest {
403
403
  }
404
404
  export interface UntagResourceResponse {}
405
405
  export interface VisualReferenceInput {
406
- BaseScreenshots?: BaseScreenshot[];
406
+ BaseScreenshots?: BaseScreenshot[] | undefined;
407
407
  BaseCanaryRunId: string | undefined;
408
408
  }
409
409
  export interface UpdateCanaryRequest {
410
410
  Name: string | undefined;
411
- Code?: CanaryCodeInput;
412
- ExecutionRoleArn?: string;
413
- RuntimeVersion?: string;
414
- Schedule?: CanaryScheduleInput;
415
- RunConfig?: CanaryRunConfigInput;
416
- SuccessRetentionPeriodInDays?: number;
417
- FailureRetentionPeriodInDays?: number;
418
- VpcConfig?: VpcConfigInput;
419
- VisualReference?: VisualReferenceInput;
420
- ArtifactS3Location?: string;
421
- ArtifactConfig?: ArtifactConfigInput;
422
- ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting;
411
+ Code?: CanaryCodeInput | undefined;
412
+ ExecutionRoleArn?: string | undefined;
413
+ RuntimeVersion?: string | undefined;
414
+ Schedule?: CanaryScheduleInput | undefined;
415
+ RunConfig?: CanaryRunConfigInput | undefined;
416
+ SuccessRetentionPeriodInDays?: number | undefined;
417
+ FailureRetentionPeriodInDays?: number | undefined;
418
+ VpcConfig?: VpcConfigInput | undefined;
419
+ VisualReference?: VisualReferenceInput | undefined;
420
+ ArtifactS3Location?: string | undefined;
421
+ ArtifactConfig?: ArtifactConfigInput | undefined;
422
+ ProvisionedResourceCleanup?: ProvisionedResourceCleanupSetting | undefined;
423
423
  }
424
424
  export interface UpdateCanaryResponse {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-synthetics",
3
3
  "description": "AWS SDK for JavaScript Synthetics 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-synthetics",
@@ -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
  },