@aws-sdk/client-arc-zonal-shift 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.
@@ -58,17 +58,17 @@ export interface ListAutoshiftsRequest {
58
58
  * call's <code>NextToken</code> response to request the next page of results.</p>
59
59
  * @public
60
60
  */
61
- nextToken?: string;
61
+ nextToken?: string | undefined;
62
62
  /**
63
63
  * <p>The status of the autoshift.</p>
64
64
  * @public
65
65
  */
66
- status?: AutoshiftExecutionStatus;
66
+ status?: AutoshiftExecutionStatus | undefined;
67
67
  /**
68
68
  * <p>The number of objects that you want to return with this call.</p>
69
69
  * @public
70
70
  */
71
- maxResults?: number;
71
+ maxResults?: number | undefined;
72
72
  }
73
73
  /**
74
74
  * <p>Information about an autoshift. Amazon Web Services starts an autoshift to temporarily move traffic for a resource
@@ -114,14 +114,14 @@ export interface ListAutoshiftsResponse {
114
114
  * <p>The items in the response list.</p>
115
115
  * @public
116
116
  */
117
- items?: AutoshiftSummary[];
117
+ items?: AutoshiftSummary[] | undefined;
118
118
  /**
119
119
  * <p>Specifies that you want to receive the next page of results. Valid only if you received a <code>NextToken</code> response in the
120
120
  * previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous
121
121
  * call's <code>NextToken</code> response to request the next page of results.</p>
122
122
  * @public
123
123
  */
124
- nextToken?: string;
124
+ nextToken?: string | undefined;
125
125
  }
126
126
  /**
127
127
  * <p>The request was denied due to request throttling.</p>
@@ -319,7 +319,7 @@ export declare class ConflictException extends __BaseException {
319
319
  * <p>The zonal shift ID associated with the conflict exception.</p>
320
320
  * @public
321
321
  */
322
- zonalShiftId?: string;
322
+ zonalShiftId?: string | undefined;
323
323
  /**
324
324
  * @internal
325
325
  */
@@ -474,7 +474,7 @@ export interface CreatePracticeRunConfigurationRequest {
474
474
  * FRI-20:30-21:30</code>.</p>
475
475
  * @public
476
476
  */
477
- blockedWindows?: string[];
477
+ blockedWindows?: string[] | undefined;
478
478
  /**
479
479
  * <p>Optionally, you can block Route 53 ARC from starting practice runs for a resource
480
480
  * on specific calendar dates.</p>
@@ -486,7 +486,7 @@ export interface CreatePracticeRunConfigurationRequest {
486
486
  * for <code>2024-05-01</code>.</p>
487
487
  * @public
488
488
  */
489
- blockedDates?: string[];
489
+ blockedDates?: string[] | undefined;
490
490
  /**
491
491
  * <p>An Amazon CloudWatch alarm that you can specify for zonal autoshift
492
492
  * practice runs. This alarm blocks Route 53 ARC from starting practice run zonal
@@ -494,7 +494,7 @@ export interface CreatePracticeRunConfigurationRequest {
494
494
  * an <code>ALARM</code> state. </p>
495
495
  * @public
496
496
  */
497
- blockingAlarms?: ControlCondition[];
497
+ blockingAlarms?: ControlCondition[] | undefined;
498
498
  /**
499
499
  * <p>The <i>outcome alarm</i> for practice runs is a required
500
500
  * Amazon CloudWatch alarm that you specify that ends a practice run when the
@@ -524,7 +524,7 @@ export interface PracticeRunConfiguration {
524
524
  * specify that blocks practice runs when the alarm is in an <code>ALARM</code> state.</p>
525
525
  * @public
526
526
  */
527
- blockingAlarms?: ControlCondition[];
527
+ blockingAlarms?: ControlCondition[] | undefined;
528
528
  /**
529
529
  * <p>The <i>outcome alarm</i> for practice runs is an alarm that you specify that
530
530
  * ends a practice run when the alarm is in an <code>ALARM</code> state.</p>
@@ -538,13 +538,13 @@ export interface PracticeRunConfiguration {
538
538
  * spaces. For example, <code>MON:18:30-MON:19:30 TUE:18:30-TUE:19:30</code>.</p>
539
539
  * @public
540
540
  */
541
- blockedWindows?: string[];
541
+ blockedWindows?: string[] | undefined;
542
542
  /**
543
543
  * <p>An array of one or more dates that you can specify when Amazon Web Services does not start practice runs for a resource.</p>
544
544
  * <p>Specify blocked dates, in UTC, in the format <code>YYYY-MM-DD</code>, separated by spaces. </p>
545
545
  * @public
546
546
  */
547
- blockedDates?: string[];
547
+ blockedDates?: string[] | undefined;
548
548
  }
549
549
  /**
550
550
  * @public
@@ -739,7 +739,7 @@ export interface ZonalShiftInResource {
739
739
  * Considerations when you configure zonal autoshift</a> in the Amazon Route 53 Application Recovery Controller Developer Guide.</p>
740
740
  * @public
741
741
  */
742
- practiceRunOutcome?: PracticeRunOutcome;
742
+ practiceRunOutcome?: PracticeRunOutcome | undefined;
743
743
  }
744
744
  /**
745
745
  * @public
@@ -749,12 +749,12 @@ export interface GetManagedResourceResponse {
749
749
  * <p>The Amazon Resource Name (ARN) for the resource.</p>
750
750
  * @public
751
751
  */
752
- arn?: string;
752
+ arn?: string | undefined;
753
753
  /**
754
754
  * <p>The name of the resource.</p>
755
755
  * @public
756
756
  */
757
- name?: string;
757
+ name?: string | undefined;
758
758
  /**
759
759
  * <p>A collection of key-value pairs that indicate whether resources are active in Availability Zones or not.
760
760
  * The key name is the Availability Zone where the resource is deployed. The value is 1 or 0.</p>
@@ -770,13 +770,13 @@ export interface GetManagedResourceResponse {
770
770
  * <p>An array of the autoshifts that are active for the resource.</p>
771
771
  * @public
772
772
  */
773
- autoshifts?: AutoshiftInResource[];
773
+ autoshifts?: AutoshiftInResource[] | undefined;
774
774
  /**
775
775
  * <p>The practice run configuration for zonal autoshift that's associated with
776
776
  * the resource.</p>
777
777
  * @public
778
778
  */
779
- practiceRunConfiguration?: PracticeRunConfiguration;
779
+ practiceRunConfiguration?: PracticeRunConfiguration | undefined;
780
780
  /**
781
781
  * <p>The status for zonal autoshift for a resource. When the
782
782
  * autoshift status is <code>ENABLED</code>, Amazon Web Services shifts traffic
@@ -785,7 +785,7 @@ export interface GetManagedResourceResponse {
785
785
  * the Availability Zone that could potentially affect customers.</p>
786
786
  * @public
787
787
  */
788
- zonalAutoshiftStatus?: ZonalAutoshiftStatus;
788
+ zonalAutoshiftStatus?: ZonalAutoshiftStatus | undefined;
789
789
  }
790
790
  /**
791
791
  * @public
@@ -797,12 +797,12 @@ export interface ListManagedResourcesRequest {
797
797
  * call's <code>NextToken</code> response to request the next page of results.</p>
798
798
  * @public
799
799
  */
800
- nextToken?: string;
800
+ nextToken?: string | undefined;
801
801
  /**
802
802
  * <p>The number of objects that you want to return with this call.</p>
803
803
  * @public
804
804
  */
805
- maxResults?: number;
805
+ maxResults?: number | undefined;
806
806
  }
807
807
  /**
808
808
  * <p>A complex structure for a managed resource in an Amazon Web Services account with information about zonal shifts
@@ -821,12 +821,12 @@ export interface ManagedResourceSummary {
821
821
  * <p>The Amazon Resource Name (ARN) for the managed resource.</p>
822
822
  * @public
823
823
  */
824
- arn?: string;
824
+ arn?: string | undefined;
825
825
  /**
826
826
  * <p>The name of the managed resource.</p>
827
827
  * @public
828
828
  */
829
- name?: string;
829
+ name?: string | undefined;
830
830
  /**
831
831
  * <p>The Availability Zones that a resource is deployed in.</p>
832
832
  * @public
@@ -837,23 +837,23 @@ export interface ManagedResourceSummary {
837
837
  * The key name is the Availability Zone where the resource is deployed. The value is 1 or 0.</p>
838
838
  * @public
839
839
  */
840
- appliedWeights?: Record<string, number>;
840
+ appliedWeights?: Record<string, number> | undefined;
841
841
  /**
842
842
  * <p>An array of the zonal shifts for a resource.</p>
843
843
  * @public
844
844
  */
845
- zonalShifts?: ZonalShiftInResource[];
845
+ zonalShifts?: ZonalShiftInResource[] | undefined;
846
846
  /**
847
847
  * <p>An array of the autoshifts that have been completed for a resource.</p>
848
848
  * @public
849
849
  */
850
- autoshifts?: AutoshiftInResource[];
850
+ autoshifts?: AutoshiftInResource[] | undefined;
851
851
  /**
852
852
  * <p>The status of autoshift for a resource. When you configure zonal autoshift for a
853
853
  * resource, you can set the value of the status to <code>ENABLED</code> or <code>DISABLED</code>.</p>
854
854
  * @public
855
855
  */
856
- zonalAutoshiftStatus?: ZonalAutoshiftStatus;
856
+ zonalAutoshiftStatus?: ZonalAutoshiftStatus | undefined;
857
857
  /**
858
858
  * <p>This status tracks whether a practice run configuration exists for a resource. When you configure
859
859
  * a practice run for a resource so that a practice run configuration exists, Route 53 ARC sets this value to
@@ -863,7 +863,7 @@ export interface ManagedResourceSummary {
863
863
  * <code>DISABLED</code>.</p>
864
864
  * @public
865
865
  */
866
- practiceRunStatus?: ZonalAutoshiftStatus;
866
+ practiceRunStatus?: ZonalAutoshiftStatus | undefined;
867
867
  }
868
868
  /**
869
869
  * @public
@@ -880,7 +880,7 @@ export interface ListManagedResourcesResponse {
880
880
  * call's <code>NextToken</code> response to request the next page of results.</p>
881
881
  * @public
882
882
  */
883
- nextToken?: string;
883
+ nextToken?: string | undefined;
884
884
  }
885
885
  /**
886
886
  * @public
@@ -892,7 +892,7 @@ export interface ListZonalShiftsRequest {
892
892
  * call's <code>NextToken</code> response to request the next page of results.</p>
893
893
  * @public
894
894
  */
895
- nextToken?: string;
895
+ nextToken?: string | undefined;
896
896
  /**
897
897
  * <p>A status for a zonal shift.</p>
898
898
  * <p>The <code>Status</code> for a zonal shift can have one of the following values:</p>
@@ -912,18 +912,18 @@ export interface ListZonalShiftsRequest {
912
912
  * </ul>
913
913
  * @public
914
914
  */
915
- status?: ZonalShiftStatus;
915
+ status?: ZonalShiftStatus | undefined;
916
916
  /**
917
917
  * <p>The number of objects that you want to return with this call.</p>
918
918
  * @public
919
919
  */
920
- maxResults?: number;
920
+ maxResults?: number | undefined;
921
921
  /**
922
922
  * <p>The identifier for the resource that you want to list zonal shifts for.
923
923
  * The identifier is the Amazon Resource Name (ARN) for the resource.</p>
924
924
  * @public
925
925
  */
926
- resourceIdentifier?: string;
926
+ resourceIdentifier?: string | undefined;
927
927
  }
928
928
  /**
929
929
  * <p>Lists information about zonal shifts in Amazon Route 53 Application Recovery Controller, including zonal shifts that you start yourself and zonal shifts that Route 53 ARC starts
@@ -1022,7 +1022,7 @@ export interface ZonalShiftSummary {
1022
1022
  * Considerations when you configure zonal autoshift</a> in the Amazon Route 53 Application Recovery Controller Developer Guide.</p>
1023
1023
  * @public
1024
1024
  */
1025
- practiceRunOutcome?: PracticeRunOutcome;
1025
+ practiceRunOutcome?: PracticeRunOutcome | undefined;
1026
1026
  }
1027
1027
  /**
1028
1028
  * @public
@@ -1032,14 +1032,14 @@ export interface ListZonalShiftsResponse {
1032
1032
  * <p>The items in the response list.</p>
1033
1033
  * @public
1034
1034
  */
1035
- items?: ZonalShiftSummary[];
1035
+ items?: ZonalShiftSummary[] | undefined;
1036
1036
  /**
1037
1037
  * <p>Specifies that you want to receive the next page of results. Valid only if you received a <code>NextToken</code> response in the
1038
1038
  * previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous
1039
1039
  * call's <code>NextToken</code> response to request the next page of results.</p>
1040
1040
  * @public
1041
1041
  */
1042
- nextToken?: string;
1042
+ nextToken?: string | undefined;
1043
1043
  }
1044
1044
  /**
1045
1045
  * @public
@@ -1099,7 +1099,7 @@ export interface UpdatePracticeRunConfigurationRequest {
1099
1099
  * FRI-20:30-21:30</code>.</p>
1100
1100
  * @public
1101
1101
  */
1102
- blockedWindows?: string[];
1102
+ blockedWindows?: string[] | undefined;
1103
1103
  /**
1104
1104
  * <p>Add, change, or remove blocked dates for a practice run in zonal autoshift.</p>
1105
1105
  * <p>Optionally, you can block practice runs for specific calendar dates.
@@ -1111,18 +1111,18 @@ export interface UpdatePracticeRunConfigurationRequest {
1111
1111
  * for <code>2024-05-01</code>.</p>
1112
1112
  * @public
1113
1113
  */
1114
- blockedDates?: string[];
1114
+ blockedDates?: string[] | undefined;
1115
1115
  /**
1116
1116
  * <p>Add, change, or remove the Amazon CloudWatch alarm that you optionally
1117
1117
  * specify as the blocking alarm for practice runs.</p>
1118
1118
  * @public
1119
1119
  */
1120
- blockingAlarms?: ControlCondition[];
1120
+ blockingAlarms?: ControlCondition[] | undefined;
1121
1121
  /**
1122
1122
  * <p>Specify a new the Amazon CloudWatch alarm as the outcome alarm for practice runs.</p>
1123
1123
  * @public
1124
1124
  */
1125
- outcomeAlarms?: ControlCondition[];
1125
+ outcomeAlarms?: ControlCondition[] | undefined;
1126
1126
  }
1127
1127
  /**
1128
1128
  * @public
@@ -1166,7 +1166,7 @@ export interface UpdateZonalShiftRequest {
1166
1166
  * history is maintained. A new comment overwrites any existing comment string.</p>
1167
1167
  * @public
1168
1168
  */
1169
- comment?: string;
1169
+ comment?: string | undefined;
1170
1170
  /**
1171
1171
  * <p>The length of time that you want a zonal shift to be active, which Route 53 ARC converts to an expiry time (expiration time).
1172
1172
  * Zonal shifts are temporary. You can set a zonal shift to be active initially for up to three days (72 hours).</p>
@@ -1187,7 +1187,7 @@ export interface UpdateZonalShiftRequest {
1187
1187
  * <p>For example: <code>20h</code> means the zonal shift expires in 20 hours. <code>120m</code> means the zonal shift expires in 120 minutes (2 hours).</p>
1188
1188
  * @public
1189
1189
  */
1190
- expiresIn?: string;
1190
+ expiresIn?: string | undefined;
1191
1191
  }
1192
1192
  /**
1193
1193
  * @public
@@ -26,9 +26,9 @@ export declare const AutoshiftExecutionStatus: {
26
26
  export type AutoshiftExecutionStatus =
27
27
  (typeof AutoshiftExecutionStatus)[keyof typeof AutoshiftExecutionStatus];
28
28
  export interface ListAutoshiftsRequest {
29
- nextToken?: string;
30
- status?: AutoshiftExecutionStatus;
31
- maxResults?: number;
29
+ nextToken?: string | undefined;
30
+ status?: AutoshiftExecutionStatus | undefined;
31
+ maxResults?: number | undefined;
32
32
  }
33
33
  export interface AutoshiftSummary {
34
34
  awayFrom: string | undefined;
@@ -37,8 +37,8 @@ export interface AutoshiftSummary {
37
37
  status: AutoshiftExecutionStatus | undefined;
38
38
  }
39
39
  export interface ListAutoshiftsResponse {
40
- items?: AutoshiftSummary[];
41
- nextToken?: string;
40
+ items?: AutoshiftSummary[] | undefined;
41
+ nextToken?: string | undefined;
42
42
  }
43
43
  export declare class ThrottlingException extends __BaseException {
44
44
  readonly name: "ThrottlingException";
@@ -113,7 +113,7 @@ export declare class ConflictException extends __BaseException {
113
113
  readonly name: "ConflictException";
114
114
  readonly $fault: "client";
115
115
  reason: ConflictExceptionReason | undefined;
116
- zonalShiftId?: string;
116
+ zonalShiftId?: string | undefined;
117
117
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
118
118
  }
119
119
  export declare class ResourceNotFoundException extends __BaseException {
@@ -150,16 +150,16 @@ export interface ControlCondition {
150
150
  }
151
151
  export interface CreatePracticeRunConfigurationRequest {
152
152
  resourceIdentifier: string | undefined;
153
- blockedWindows?: string[];
154
- blockedDates?: string[];
155
- blockingAlarms?: ControlCondition[];
153
+ blockedWindows?: string[] | undefined;
154
+ blockedDates?: string[] | undefined;
155
+ blockingAlarms?: ControlCondition[] | undefined;
156
156
  outcomeAlarms: ControlCondition[] | undefined;
157
157
  }
158
158
  export interface PracticeRunConfiguration {
159
- blockingAlarms?: ControlCondition[];
159
+ blockingAlarms?: ControlCondition[] | undefined;
160
160
  outcomeAlarms: ControlCondition[] | undefined;
161
- blockedWindows?: string[];
162
- blockedDates?: string[];
161
+ blockedWindows?: string[] | undefined;
162
+ blockedDates?: string[] | undefined;
163
163
  }
164
164
  export declare const ZonalAutoshiftStatus: {
165
165
  readonly DISABLED: "DISABLED";
@@ -200,40 +200,40 @@ export interface ZonalShiftInResource {
200
200
  expiryTime: Date | undefined;
201
201
  startTime: Date | undefined;
202
202
  comment: string | undefined;
203
- practiceRunOutcome?: PracticeRunOutcome;
203
+ practiceRunOutcome?: PracticeRunOutcome | undefined;
204
204
  }
205
205
  export interface GetManagedResourceResponse {
206
- arn?: string;
207
- name?: string;
206
+ arn?: string | undefined;
207
+ name?: string | undefined;
208
208
  appliedWeights: Record<string, number> | undefined;
209
209
  zonalShifts: ZonalShiftInResource[] | undefined;
210
- autoshifts?: AutoshiftInResource[];
211
- practiceRunConfiguration?: PracticeRunConfiguration;
212
- zonalAutoshiftStatus?: ZonalAutoshiftStatus;
210
+ autoshifts?: AutoshiftInResource[] | undefined;
211
+ practiceRunConfiguration?: PracticeRunConfiguration | undefined;
212
+ zonalAutoshiftStatus?: ZonalAutoshiftStatus | undefined;
213
213
  }
214
214
  export interface ListManagedResourcesRequest {
215
- nextToken?: string;
216
- maxResults?: number;
215
+ nextToken?: string | undefined;
216
+ maxResults?: number | undefined;
217
217
  }
218
218
  export interface ManagedResourceSummary {
219
- arn?: string;
220
- name?: string;
219
+ arn?: string | undefined;
220
+ name?: string | undefined;
221
221
  availabilityZones: string[] | undefined;
222
- appliedWeights?: Record<string, number>;
223
- zonalShifts?: ZonalShiftInResource[];
224
- autoshifts?: AutoshiftInResource[];
225
- zonalAutoshiftStatus?: ZonalAutoshiftStatus;
226
- practiceRunStatus?: ZonalAutoshiftStatus;
222
+ appliedWeights?: Record<string, number> | undefined;
223
+ zonalShifts?: ZonalShiftInResource[] | undefined;
224
+ autoshifts?: AutoshiftInResource[] | undefined;
225
+ zonalAutoshiftStatus?: ZonalAutoshiftStatus | undefined;
226
+ practiceRunStatus?: ZonalAutoshiftStatus | undefined;
227
227
  }
228
228
  export interface ListManagedResourcesResponse {
229
229
  items: ManagedResourceSummary[] | undefined;
230
- nextToken?: string;
230
+ nextToken?: string | undefined;
231
231
  }
232
232
  export interface ListZonalShiftsRequest {
233
- nextToken?: string;
234
- status?: ZonalShiftStatus;
235
- maxResults?: number;
236
- resourceIdentifier?: string;
233
+ nextToken?: string | undefined;
234
+ status?: ZonalShiftStatus | undefined;
235
+ maxResults?: number | undefined;
236
+ resourceIdentifier?: string | undefined;
237
237
  }
238
238
  export interface ZonalShiftSummary {
239
239
  zonalShiftId: string | undefined;
@@ -243,11 +243,11 @@ export interface ZonalShiftSummary {
243
243
  startTime: Date | undefined;
244
244
  status: ZonalShiftStatus | undefined;
245
245
  comment: string | undefined;
246
- practiceRunOutcome?: PracticeRunOutcome;
246
+ practiceRunOutcome?: PracticeRunOutcome | undefined;
247
247
  }
248
248
  export interface ListZonalShiftsResponse {
249
- items?: ZonalShiftSummary[];
250
- nextToken?: string;
249
+ items?: ZonalShiftSummary[] | undefined;
250
+ nextToken?: string | undefined;
251
251
  }
252
252
  export interface UpdateZonalAutoshiftConfigurationRequest {
253
253
  resourceIdentifier: string | undefined;
@@ -259,10 +259,10 @@ export interface UpdateZonalAutoshiftConfigurationResponse {
259
259
  }
260
260
  export interface UpdatePracticeRunConfigurationRequest {
261
261
  resourceIdentifier: string | undefined;
262
- blockedWindows?: string[];
263
- blockedDates?: string[];
264
- blockingAlarms?: ControlCondition[];
265
- outcomeAlarms?: ControlCondition[];
262
+ blockedWindows?: string[] | undefined;
263
+ blockedDates?: string[] | undefined;
264
+ blockingAlarms?: ControlCondition[] | undefined;
265
+ outcomeAlarms?: ControlCondition[] | undefined;
266
266
  }
267
267
  export interface UpdatePracticeRunConfigurationResponse {
268
268
  arn: string | undefined;
@@ -272,8 +272,8 @@ export interface UpdatePracticeRunConfigurationResponse {
272
272
  }
273
273
  export interface UpdateZonalShiftRequest {
274
274
  zonalShiftId: string | undefined;
275
- comment?: string;
276
- expiresIn?: string;
275
+ comment?: string | undefined;
276
+ expiresIn?: string | undefined;
277
277
  }
278
278
  export interface StartZonalShiftRequest {
279
279
  resourceIdentifier: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-arc-zonal-shift",
3
3
  "description": "AWS SDK for JavaScript Arc Zonal Shift 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-arc-zonal-shift",
@@ -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",