@aws-sdk/client-controltower 3.690.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.
@@ -59,32 +59,32 @@ export interface BaselineOperation {
59
59
  * <p>The identifier of the specified operation.</p>
60
60
  * @public
61
61
  */
62
- operationIdentifier?: string;
62
+ operationIdentifier?: string | undefined;
63
63
  /**
64
64
  * <p>An enumerated type (<code>enum</code>) with possible values of <code>ENABLE_BASELINE</code>, <code>DISABLE_BASELINE</code>, <code>UPDATE_ENABLED_BASELINE</code>, or <code>RESET_ENABLED_BASELINE</code>.</p>
65
65
  * @public
66
66
  */
67
- operationType?: BaselineOperationType;
67
+ operationType?: BaselineOperationType | undefined;
68
68
  /**
69
69
  * <p>An enumerated type (<code>enum</code>) with possible values of <code>SUCCEEDED</code>, <code>FAILED</code>, or <code>IN_PROGRESS</code>.</p>
70
70
  * @public
71
71
  */
72
- status?: BaselineOperationStatus;
72
+ status?: BaselineOperationStatus | undefined;
73
73
  /**
74
74
  * <p>The start time of the operation, in ISO 8601 format.</p>
75
75
  * @public
76
76
  */
77
- startTime?: Date;
77
+ startTime?: Date | undefined;
78
78
  /**
79
79
  * <p>The end time of the operation (if applicable), in ISO 8601 format.</p>
80
80
  * @public
81
81
  */
82
- endTime?: Date;
82
+ endTime?: Date | undefined;
83
83
  /**
84
84
  * <p>A status message that gives more information about the operation's status, if applicable.</p>
85
85
  * @public
86
86
  */
87
- statusMessage?: string;
87
+ statusMessage?: string | undefined;
88
88
  }
89
89
  /**
90
90
  * @public
@@ -135,17 +135,17 @@ export declare class ThrottlingException extends __BaseException {
135
135
  * <p>The ID of the service that is associated with the error.</p>
136
136
  * @public
137
137
  */
138
- serviceCode?: string;
138
+ serviceCode?: string | undefined;
139
139
  /**
140
140
  * <p>The ID of the service quota that was exceeded.</p>
141
141
  * @public
142
142
  */
143
- quotaCode?: string;
143
+ quotaCode?: string | undefined;
144
144
  /**
145
145
  * <p>The number of seconds the caller should wait before retrying.</p>
146
146
  * @public
147
147
  */
148
- retryAfterSeconds?: number;
148
+ retryAfterSeconds?: number | undefined;
149
149
  /**
150
150
  * @internal
151
151
  */
@@ -191,7 +191,7 @@ export interface GetBaselineOutput {
191
191
  * <p>A description of the baseline.</p>
192
192
  * @public
193
193
  */
194
- description?: string;
194
+ description?: string | undefined;
195
195
  }
196
196
  /**
197
197
  * @public
@@ -201,12 +201,12 @@ export interface ListBaselinesInput {
201
201
  * <p>A pagination token.</p>
202
202
  * @public
203
203
  */
204
- nextToken?: string;
204
+ nextToken?: string | undefined;
205
205
  /**
206
206
  * <p>The maximum number of results to be shown.</p>
207
207
  * @public
208
208
  */
209
- maxResults?: number;
209
+ maxResults?: number | undefined;
210
210
  }
211
211
  /**
212
212
  * <p>Returns a summary of information about a <code>Baseline</code> object.</p>
@@ -227,7 +227,7 @@ export interface BaselineSummary {
227
227
  * <p>A summary description of a Baseline.</p>
228
228
  * @public
229
229
  */
230
- description?: string;
230
+ description?: string | undefined;
231
231
  }
232
232
  /**
233
233
  * @public
@@ -242,7 +242,7 @@ export interface ListBaselinesOutput {
242
242
  * <p>A pagination token.</p>
243
243
  * @public
244
244
  */
245
- nextToken?: string;
245
+ nextToken?: string | undefined;
246
246
  }
247
247
  /**
248
248
  * @public
@@ -291,48 +291,48 @@ export interface ControlOperation {
291
291
  * <p>One of <code>ENABLE_CONTROL</code> or <code>DISABLE_CONTROL</code>.</p>
292
292
  * @public
293
293
  */
294
- operationType?: ControlOperationType;
294
+ operationType?: ControlOperationType | undefined;
295
295
  /**
296
296
  * <p>The time that the operation began.</p>
297
297
  * @public
298
298
  */
299
- startTime?: Date;
299
+ startTime?: Date | undefined;
300
300
  /**
301
301
  * <p>The time that the operation finished.</p>
302
302
  * @public
303
303
  */
304
- endTime?: Date;
304
+ endTime?: Date | undefined;
305
305
  /**
306
306
  * <p>One of <code>IN_PROGRESS</code>, <code>SUCEEDED</code>, or <code>FAILED</code>.</p>
307
307
  * @public
308
308
  */
309
- status?: ControlOperationStatus;
309
+ status?: ControlOperationStatus | undefined;
310
310
  /**
311
311
  * <p>If the operation result is <code>FAILED</code>, this string contains a message explaining
312
312
  * why the operation failed.</p>
313
313
  * @public
314
314
  */
315
- statusMessage?: string;
315
+ statusMessage?: string | undefined;
316
316
  /**
317
317
  * <p>The identifier of the specified operation.</p>
318
318
  * @public
319
319
  */
320
- operationIdentifier?: string;
320
+ operationIdentifier?: string | undefined;
321
321
  /**
322
322
  * <p>The <code>controlIdentifier</code> of the control for the operation.</p>
323
323
  * @public
324
324
  */
325
- controlIdentifier?: string;
325
+ controlIdentifier?: string | undefined;
326
326
  /**
327
327
  * <p>The target upon which the control operation is working.</p>
328
328
  * @public
329
329
  */
330
- targetIdentifier?: string;
330
+ targetIdentifier?: string | undefined;
331
331
  /**
332
332
  * <p>The <code>controlIdentifier</code> of the enabled control.</p>
333
333
  * @public
334
334
  */
335
- enabledControlIdentifier?: string;
335
+ enabledControlIdentifier?: string | undefined;
336
336
  }
337
337
  /**
338
338
  * @public
@@ -353,27 +353,27 @@ export interface ControlOperationFilter {
353
353
  * <p>The set of <code>controlIdentifier</code> returned by the filter.</p>
354
354
  * @public
355
355
  */
356
- controlIdentifiers?: string[];
356
+ controlIdentifiers?: string[] | undefined;
357
357
  /**
358
358
  * <p>The set of <code>targetIdentifier</code> objects returned by the filter.</p>
359
359
  * @public
360
360
  */
361
- targetIdentifiers?: string[];
361
+ targetIdentifiers?: string[] | undefined;
362
362
  /**
363
363
  * <p>The set <code>controlIdentifier</code> of enabled controls selected by the filter.</p>
364
364
  * @public
365
365
  */
366
- enabledControlIdentifiers?: string[];
366
+ enabledControlIdentifiers?: string[] | undefined;
367
367
  /**
368
368
  * <p>Lists the status of control operations.</p>
369
369
  * @public
370
370
  */
371
- statuses?: ControlOperationStatus[];
371
+ statuses?: ControlOperationStatus[] | undefined;
372
372
  /**
373
373
  * <p>The set of <code>ControlOperation</code> objects returned by the filter.</p>
374
374
  * @public
375
375
  */
376
- controlOperationTypes?: ControlOperationType[];
376
+ controlOperationTypes?: ControlOperationType[] | undefined;
377
377
  }
378
378
  /**
379
379
  * @public
@@ -383,17 +383,17 @@ export interface ListControlOperationsInput {
383
383
  * <p>An input filter for the <code>ListControlOperations</code> API that lets you select the types of control operations to view.</p>
384
384
  * @public
385
385
  */
386
- filter?: ControlOperationFilter;
386
+ filter?: ControlOperationFilter | undefined;
387
387
  /**
388
388
  * <p>A pagination token.</p>
389
389
  * @public
390
390
  */
391
- nextToken?: string;
391
+ nextToken?: string | undefined;
392
392
  /**
393
393
  * <p>The maximum number of results to be shown.</p>
394
394
  * @public
395
395
  */
396
- maxResults?: number;
396
+ maxResults?: number | undefined;
397
397
  }
398
398
  /**
399
399
  * <p>A summary of information about the specified control operation.</p>
@@ -404,47 +404,47 @@ export interface ControlOperationSummary {
404
404
  * <p>The type of operation.</p>
405
405
  * @public
406
406
  */
407
- operationType?: ControlOperationType;
407
+ operationType?: ControlOperationType | undefined;
408
408
  /**
409
409
  * <p>The time at which a control operation began.</p>
410
410
  * @public
411
411
  */
412
- startTime?: Date;
412
+ startTime?: Date | undefined;
413
413
  /**
414
414
  * <p>The time at which the control operation was completed.</p>
415
415
  * @public
416
416
  */
417
- endTime?: Date;
417
+ endTime?: Date | undefined;
418
418
  /**
419
419
  * <p>The status of the specified control operation.</p>
420
420
  * @public
421
421
  */
422
- status?: ControlOperationStatus;
422
+ status?: ControlOperationStatus | undefined;
423
423
  /**
424
424
  * <p>A speficic message displayed as part of the control status.</p>
425
425
  * @public
426
426
  */
427
- statusMessage?: string;
427
+ statusMessage?: string | undefined;
428
428
  /**
429
429
  * <p>The unique identifier of a control operation.</p>
430
430
  * @public
431
431
  */
432
- operationIdentifier?: string;
432
+ operationIdentifier?: string | undefined;
433
433
  /**
434
434
  * <p>The <code>controlIdentifier</code> of a control.</p>
435
435
  * @public
436
436
  */
437
- controlIdentifier?: string;
437
+ controlIdentifier?: string | undefined;
438
438
  /**
439
439
  * <p>The unique identifier of the target of a control operation.</p>
440
440
  * @public
441
441
  */
442
- targetIdentifier?: string;
442
+ targetIdentifier?: string | undefined;
443
443
  /**
444
444
  * <p>The <code>controlIdentifier</code> of an enabled control.</p>
445
445
  * @public
446
446
  */
447
- enabledControlIdentifier?: string;
447
+ enabledControlIdentifier?: string | undefined;
448
448
  }
449
449
  /**
450
450
  * @public
@@ -459,7 +459,7 @@ export interface ListControlOperationsOutput {
459
459
  * <p>A pagination token.</p>
460
460
  * @public
461
461
  */
462
- nextToken?: string;
462
+ nextToken?: string | undefined;
463
463
  }
464
464
  /**
465
465
  * <p>Updating or deleting the resource can cause an inconsistent state.</p>
@@ -562,7 +562,7 @@ export interface EnableBaselineInput {
562
562
  * <p>A list of <code>key-value</code> objects that specify enablement parameters, where <code>key</code> is a string and <code>value</code> is a document of any type.</p>
563
563
  * @public
564
564
  */
565
- parameters?: EnabledBaselineParameter[];
565
+ parameters?: EnabledBaselineParameter[] | undefined;
566
566
  /**
567
567
  * <p>The ARN of the baseline to be enabled.</p>
568
568
  * @public
@@ -577,7 +577,7 @@ export interface EnableBaselineInput {
577
577
  * <p>Tags associated with input to <code>EnableBaseline</code>.</p>
578
578
  * @public
579
579
  */
580
- tags?: Record<string, string>;
580
+ tags?: Record<string, string> | undefined;
581
581
  }
582
582
  /**
583
583
  * @public
@@ -657,12 +657,12 @@ export interface EnablementStatusSummary {
657
657
  * </ul>
658
658
  * @public
659
659
  */
660
- status?: EnablementStatus;
660
+ status?: EnablementStatus | undefined;
661
661
  /**
662
662
  * <p>The last operation identifier for the enabled resource.</p>
663
663
  * @public
664
664
  */
665
- lastOperationIdentifier?: string;
665
+ lastOperationIdentifier?: string | undefined;
666
666
  }
667
667
  /**
668
668
  * <p>Details of the <code>EnabledBaseline</code> resource.</p>
@@ -683,7 +683,7 @@ export interface EnabledBaselineDetails {
683
683
  * <p>The enabled version of the <code>Baseline</code>.</p>
684
684
  * @public
685
685
  */
686
- baselineVersion?: string;
686
+ baselineVersion?: string | undefined;
687
687
  /**
688
688
  * <p>The target on which to enable the <code>Baseline</code>.</p>
689
689
  * @public
@@ -698,7 +698,7 @@ export interface EnabledBaselineDetails {
698
698
  * <p>Shows the parameters that are applied when enabling this <code>Baseline</code>.</p>
699
699
  * @public
700
700
  */
701
- parameters?: EnabledBaselineParameterSummary[];
701
+ parameters?: EnabledBaselineParameterSummary[] | undefined;
702
702
  }
703
703
  /**
704
704
  * @public
@@ -708,7 +708,7 @@ export interface GetEnabledBaselineOutput {
708
708
  * <p>Details of the <code>EnabledBaseline</code> resource.</p>
709
709
  * @public
710
710
  */
711
- enabledBaselineDetails?: EnabledBaselineDetails;
711
+ enabledBaselineDetails?: EnabledBaselineDetails | undefined;
712
712
  }
713
713
  /**
714
714
  * <p>A filter applied on the <code>ListEnabledBaseline</code> operation. Allowed filters are <code>baselineIdentifiers</code> and <code>targetIdentifiers</code>. The filter can be applied for either, or both.</p>
@@ -719,12 +719,12 @@ export interface EnabledBaselineFilter {
719
719
  * <p>Identifiers for the targets of the <code>Baseline</code> filter operation.</p>
720
720
  * @public
721
721
  */
722
- targetIdentifiers?: string[];
722
+ targetIdentifiers?: string[] | undefined;
723
723
  /**
724
724
  * <p>Identifiers for the <code>Baseline</code> objects returned as part of the filter operation.</p>
725
725
  * @public
726
726
  */
727
- baselineIdentifiers?: string[];
727
+ baselineIdentifiers?: string[] | undefined;
728
728
  }
729
729
  /**
730
730
  * @public
@@ -734,17 +734,17 @@ export interface ListEnabledBaselinesInput {
734
734
  * <p>A filter applied on the <code>ListEnabledBaseline</code> operation. Allowed filters are <code>baselineIdentifiers</code> and <code>targetIdentifiers</code>. The filter can be applied for either, or both.</p>
735
735
  * @public
736
736
  */
737
- filter?: EnabledBaselineFilter;
737
+ filter?: EnabledBaselineFilter | undefined;
738
738
  /**
739
739
  * <p>A pagination token.</p>
740
740
  * @public
741
741
  */
742
- nextToken?: string;
742
+ nextToken?: string | undefined;
743
743
  /**
744
744
  * <p>The maximum number of results to be shown.</p>
745
745
  * @public
746
746
  */
747
- maxResults?: number;
747
+ maxResults?: number | undefined;
748
748
  }
749
749
  /**
750
750
  * <p>Returns a summary of information about an <code>EnabledBaseline</code> object.</p>
@@ -765,7 +765,7 @@ export interface EnabledBaselineSummary {
765
765
  * <p>The enabled version of the baseline.</p>
766
766
  * @public
767
767
  */
768
- baselineVersion?: string;
768
+ baselineVersion?: string | undefined;
769
769
  /**
770
770
  * <p>The target upon which the baseline is enabled.</p>
771
771
  * @public
@@ -790,7 +790,7 @@ export interface ListEnabledBaselinesOutput {
790
790
  * <p>A pagination token.</p>
791
791
  * @public
792
792
  */
793
- nextToken?: string;
793
+ nextToken?: string | undefined;
794
794
  }
795
795
  /**
796
796
  * @public
@@ -825,7 +825,7 @@ export interface UpdateEnabledBaselineInput {
825
825
  * <p>Parameters to apply when making an update.</p>
826
826
  * @public
827
827
  */
828
- parameters?: EnabledBaselineParameter[];
828
+ parameters?: EnabledBaselineParameter[] | undefined;
829
829
  /**
830
830
  * <p>Specifies the <code>EnabledBaseline</code> resource to be updated.</p>
831
831
  * @public
@@ -878,12 +878,12 @@ export interface EnableControlInput {
878
878
  * <p>Tags to be applied to the <code>EnabledControl</code> resource.</p>
879
879
  * @public
880
880
  */
881
- tags?: Record<string, string>;
881
+ tags?: Record<string, string> | undefined;
882
882
  /**
883
883
  * <p>A list of input parameter values, which are specified to configure the control when you enable it.</p>
884
884
  * @public
885
885
  */
886
- parameters?: EnabledControlParameter[];
886
+ parameters?: EnabledControlParameter[] | undefined;
887
887
  }
888
888
  /**
889
889
  * @public
@@ -899,7 +899,7 @@ export interface EnableControlOutput {
899
899
  * <p>The ARN of the <code>EnabledControl</code> resource.</p>
900
900
  * @public
901
901
  */
902
- arn?: string;
902
+ arn?: string | undefined;
903
903
  }
904
904
  /**
905
905
  * @public
@@ -960,7 +960,7 @@ export interface DriftStatusSummary {
960
960
  * </ul>
961
961
  * @public
962
962
  */
963
- driftStatus?: DriftStatus;
963
+ driftStatus?: DriftStatus | undefined;
964
964
  }
965
965
  /**
966
966
  * <p>Returns a summary of information about the parameters of an enabled control.</p>
@@ -990,7 +990,7 @@ export interface Region {
990
990
  * <p>The Amazon Web Services Region name.</p>
991
991
  * @public
992
992
  */
993
- name?: string;
993
+ name?: string | undefined;
994
994
  }
995
995
  /**
996
996
  * <p>Information about the enabled control.</p>
@@ -1001,37 +1001,37 @@ export interface EnabledControlDetails {
1001
1001
  * <p>The ARN of the enabled control.</p>
1002
1002
  * @public
1003
1003
  */
1004
- arn?: string;
1004
+ arn?: string | undefined;
1005
1005
  /**
1006
1006
  * <p>The control identifier of the enabled control. For information on how to find the <code>controlIdentifier</code>, see <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/Welcome.html">the overview page</a>.</p>
1007
1007
  * @public
1008
1008
  */
1009
- controlIdentifier?: string;
1009
+ controlIdentifier?: string | undefined;
1010
1010
  /**
1011
1011
  * <p>The ARN of the organizational unit. For information on how to find the <code>targetIdentifier</code>, see <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/Welcome.html">the overview page</a>.</p>
1012
1012
  * @public
1013
1013
  */
1014
- targetIdentifier?: string;
1014
+ targetIdentifier?: string | undefined;
1015
1015
  /**
1016
1016
  * <p>Target Amazon Web Services Regions for the enabled control.</p>
1017
1017
  * @public
1018
1018
  */
1019
- targetRegions?: Region[];
1019
+ targetRegions?: Region[] | undefined;
1020
1020
  /**
1021
1021
  * <p>The deployment summary of the enabled control.</p>
1022
1022
  * @public
1023
1023
  */
1024
- statusSummary?: EnablementStatusSummary;
1024
+ statusSummary?: EnablementStatusSummary | undefined;
1025
1025
  /**
1026
1026
  * <p>The drift status of the enabled control.</p>
1027
1027
  * @public
1028
1028
  */
1029
- driftStatusSummary?: DriftStatusSummary;
1029
+ driftStatusSummary?: DriftStatusSummary | undefined;
1030
1030
  /**
1031
1031
  * <p>Array of <code>EnabledControlParameter</code> objects.</p>
1032
1032
  * @public
1033
1033
  */
1034
- parameters?: EnabledControlParameterSummary[];
1034
+ parameters?: EnabledControlParameterSummary[] | undefined;
1035
1035
  }
1036
1036
  /**
1037
1037
  * @public
@@ -1052,17 +1052,17 @@ export interface EnabledControlFilter {
1052
1052
  * <p>The set of <code>controlIdentifier</code> returned by the filter. </p>
1053
1053
  * @public
1054
1054
  */
1055
- controlIdentifiers?: string[];
1055
+ controlIdentifiers?: string[] | undefined;
1056
1056
  /**
1057
1057
  * <p>A list of <code>EnablementStatus</code> items.</p>
1058
1058
  * @public
1059
1059
  */
1060
- statuses?: EnablementStatus[];
1060
+ statuses?: EnablementStatus[] | undefined;
1061
1061
  /**
1062
1062
  * <p>A list of <code>DriftStatus</code> items.</p>
1063
1063
  * @public
1064
1064
  */
1065
- driftStatuses?: DriftStatus[];
1065
+ driftStatuses?: DriftStatus[] | undefined;
1066
1066
  }
1067
1067
  /**
1068
1068
  * @public
@@ -1072,22 +1072,22 @@ export interface ListEnabledControlsInput {
1072
1072
  * <p>The ARN of the organizational unit. For information on how to find the <code>targetIdentifier</code>, see <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/Welcome.html">the overview page</a>.</p>
1073
1073
  * @public
1074
1074
  */
1075
- targetIdentifier?: string;
1075
+ targetIdentifier?: string | undefined;
1076
1076
  /**
1077
1077
  * <p>The token to continue the list from a previous API call with the same parameters.</p>
1078
1078
  * @public
1079
1079
  */
1080
- nextToken?: string;
1080
+ nextToken?: string | undefined;
1081
1081
  /**
1082
1082
  * <p>How many results to return per API call.</p>
1083
1083
  * @public
1084
1084
  */
1085
- maxResults?: number;
1085
+ maxResults?: number | undefined;
1086
1086
  /**
1087
1087
  * <p>An input filter for the <code>ListEnabledControls</code> API that lets you select the types of control operations to view.</p>
1088
1088
  * @public
1089
1089
  */
1090
- filter?: EnabledControlFilter;
1090
+ filter?: EnabledControlFilter | undefined;
1091
1091
  }
1092
1092
  /**
1093
1093
  * <p>Returns a summary of information about an enabled control.</p>
@@ -1098,27 +1098,27 @@ export interface EnabledControlSummary {
1098
1098
  * <p>The <code>controlIdentifier</code> of the enabled control.</p>
1099
1099
  * @public
1100
1100
  */
1101
- controlIdentifier?: string;
1101
+ controlIdentifier?: string | undefined;
1102
1102
  /**
1103
1103
  * <p>The ARN of the enabled control.</p>
1104
1104
  * @public
1105
1105
  */
1106
- arn?: string;
1106
+ arn?: string | undefined;
1107
1107
  /**
1108
1108
  * <p>The ARN of the organizational unit.</p>
1109
1109
  * @public
1110
1110
  */
1111
- targetIdentifier?: string;
1111
+ targetIdentifier?: string | undefined;
1112
1112
  /**
1113
1113
  * <p>A short description of the status of the enabled control.</p>
1114
1114
  * @public
1115
1115
  */
1116
- statusSummary?: EnablementStatusSummary;
1116
+ statusSummary?: EnablementStatusSummary | undefined;
1117
1117
  /**
1118
1118
  * <p>The drift status of the enabled control.</p>
1119
1119
  * @public
1120
1120
  */
1121
- driftStatusSummary?: DriftStatusSummary;
1121
+ driftStatusSummary?: DriftStatusSummary | undefined;
1122
1122
  }
1123
1123
  /**
1124
1124
  * @public
@@ -1135,7 +1135,7 @@ export interface ListEnabledControlsOutput {
1135
1135
  * end of the results.</p>
1136
1136
  * @public
1137
1137
  */
1138
- nextToken?: string;
1138
+ nextToken?: string | undefined;
1139
1139
  }
1140
1140
  /**
1141
1141
  * @public
@@ -1251,12 +1251,12 @@ export interface LandingZoneOperationDetail {
1251
1251
  * </ul>
1252
1252
  * @public
1253
1253
  */
1254
- operationType?: LandingZoneOperationType;
1254
+ operationType?: LandingZoneOperationType | undefined;
1255
1255
  /**
1256
1256
  * <p>The <code>operationIdentifier</code> of the landing zone operation.</p>
1257
1257
  * @public
1258
1258
  */
1259
- operationIdentifier?: string;
1259
+ operationIdentifier?: string | undefined;
1260
1260
  /**
1261
1261
  * <p>Valid values:</p>
1262
1262
  * <ul>
@@ -1275,22 +1275,22 @@ export interface LandingZoneOperationDetail {
1275
1275
  * </ul>
1276
1276
  * @public
1277
1277
  */
1278
- status?: LandingZoneOperationStatus;
1278
+ status?: LandingZoneOperationStatus | undefined;
1279
1279
  /**
1280
1280
  * <p>The landing zone operation start time.</p>
1281
1281
  * @public
1282
1282
  */
1283
- startTime?: Date;
1283
+ startTime?: Date | undefined;
1284
1284
  /**
1285
1285
  * <p>The landing zone operation end time.</p>
1286
1286
  * @public
1287
1287
  */
1288
- endTime?: Date;
1288
+ endTime?: Date | undefined;
1289
1289
  /**
1290
1290
  * <p>If the operation result is FAILED, this string contains a message explaining why the operation failed.</p>
1291
1291
  * @public
1292
1292
  */
1293
- statusMessage?: string;
1293
+ statusMessage?: string | undefined;
1294
1294
  }
1295
1295
  /**
1296
1296
  * @public
@@ -1311,12 +1311,12 @@ export interface LandingZoneOperationFilter {
1311
1311
  * <p>The set of landing zone operation types selected by the filter.</p>
1312
1312
  * @public
1313
1313
  */
1314
- types?: LandingZoneOperationType[];
1314
+ types?: LandingZoneOperationType[] | undefined;
1315
1315
  /**
1316
1316
  * <p>The statuses of the set of landing zone operations selected by the filter.</p>
1317
1317
  * @public
1318
1318
  */
1319
- statuses?: LandingZoneOperationStatus[];
1319
+ statuses?: LandingZoneOperationStatus[] | undefined;
1320
1320
  }
1321
1321
  /**
1322
1322
  * @public
@@ -1326,17 +1326,17 @@ export interface ListLandingZoneOperationsInput {
1326
1326
  * <p>An input filter for the <code>ListLandingZoneOperations</code> API that lets you select the types of landing zone operations to view.</p>
1327
1327
  * @public
1328
1328
  */
1329
- filter?: LandingZoneOperationFilter;
1329
+ filter?: LandingZoneOperationFilter | undefined;
1330
1330
  /**
1331
1331
  * <p>The token to continue the list from a previous API call with the same parameters.</p>
1332
1332
  * @public
1333
1333
  */
1334
- nextToken?: string;
1334
+ nextToken?: string | undefined;
1335
1335
  /**
1336
1336
  * <p>How many results to return per API call.</p>
1337
1337
  * @public
1338
1338
  */
1339
- maxResults?: number;
1339
+ maxResults?: number | undefined;
1340
1340
  }
1341
1341
  /**
1342
1342
  * <p>Returns a summary of information about a landing zone operation.</p>
@@ -1347,17 +1347,17 @@ export interface LandingZoneOperationSummary {
1347
1347
  * <p>The type of the landing zone operation.</p>
1348
1348
  * @public
1349
1349
  */
1350
- operationType?: LandingZoneOperationType;
1350
+ operationType?: LandingZoneOperationType | undefined;
1351
1351
  /**
1352
1352
  * <p>The <code>operationIdentifier</code> of the landing zone operation.</p>
1353
1353
  * @public
1354
1354
  */
1355
- operationIdentifier?: string;
1355
+ operationIdentifier?: string | undefined;
1356
1356
  /**
1357
1357
  * <p>The status of the landing zone operation.</p>
1358
1358
  * @public
1359
1359
  */
1360
- status?: LandingZoneOperationStatus;
1360
+ status?: LandingZoneOperationStatus | undefined;
1361
1361
  }
1362
1362
  /**
1363
1363
  * @public
@@ -1372,7 +1372,7 @@ export interface ListLandingZoneOperationsOutput {
1372
1372
  * <p>Retrieves the next page of results. If the string is empty, the response is the end of the results.</p>
1373
1373
  * @public
1374
1374
  */
1375
- nextToken?: string;
1375
+ nextToken?: string | undefined;
1376
1376
  }
1377
1377
  /**
1378
1378
  * @public
@@ -1393,7 +1393,7 @@ export interface CreateLandingZoneInput {
1393
1393
  * <p>Tags to be applied to the landing zone. </p>
1394
1394
  * @public
1395
1395
  */
1396
- tags?: Record<string, string>;
1396
+ tags?: Record<string, string> | undefined;
1397
1397
  }
1398
1398
  /**
1399
1399
  * @public
@@ -1478,7 +1478,7 @@ export interface LandingZoneDriftStatusSummary {
1478
1478
  * </ul>
1479
1479
  * @public
1480
1480
  */
1481
- status?: LandingZoneDriftStatus;
1481
+ status?: LandingZoneDriftStatus | undefined;
1482
1482
  }
1483
1483
  /**
1484
1484
  * @public
@@ -1512,22 +1512,22 @@ export interface LandingZoneDetail {
1512
1512
  * <p>The ARN of the landing zone.</p>
1513
1513
  * @public
1514
1514
  */
1515
- arn?: string;
1515
+ arn?: string | undefined;
1516
1516
  /**
1517
1517
  * <p>The landing zone deployment status. One of <code>ACTIVE</code>, <code>PROCESSING</code>, <code>FAILED</code>.</p>
1518
1518
  * @public
1519
1519
  */
1520
- status?: LandingZoneStatus;
1520
+ status?: LandingZoneStatus | undefined;
1521
1521
  /**
1522
1522
  * <p>The latest available version of the landing zone.</p>
1523
1523
  * @public
1524
1524
  */
1525
- latestAvailableVersion?: string;
1525
+ latestAvailableVersion?: string | undefined;
1526
1526
  /**
1527
1527
  * <p>The drift status of the landing zone.</p>
1528
1528
  * @public
1529
1529
  */
1530
- driftStatus?: LandingZoneDriftStatusSummary;
1530
+ driftStatus?: LandingZoneDriftStatusSummary | undefined;
1531
1531
  }
1532
1532
  /**
1533
1533
  * @public
@@ -1547,12 +1547,12 @@ export interface ListLandingZonesInput {
1547
1547
  * <p>The token to continue the list from a previous API call with the same parameters.</p>
1548
1548
  * @public
1549
1549
  */
1550
- nextToken?: string;
1550
+ nextToken?: string | undefined;
1551
1551
  /**
1552
1552
  * <p>The maximum number of returned landing zone ARNs, which is one.</p>
1553
1553
  * @public
1554
1554
  */
1555
- maxResults?: number;
1555
+ maxResults?: number | undefined;
1556
1556
  }
1557
1557
  /**
1558
1558
  * <p>Returns a summary of information about a landing zone.</p>
@@ -1563,7 +1563,7 @@ export interface LandingZoneSummary {
1563
1563
  * <p>The ARN of the landing zone.</p>
1564
1564
  * @public
1565
1565
  */
1566
- arn?: string;
1566
+ arn?: string | undefined;
1567
1567
  }
1568
1568
  /**
1569
1569
  * @public
@@ -1578,7 +1578,7 @@ export interface ListLandingZonesOutput {
1578
1578
  * <p>Retrieves the next page of results. If the string is empty, the response is the end of the results.</p>
1579
1579
  * @public
1580
1580
  */
1581
- nextToken?: string;
1581
+ nextToken?: string | undefined;
1582
1582
  }
1583
1583
  /**
1584
1584
  * @public
@@ -27,12 +27,12 @@ export declare const BaselineOperationStatus: {
27
27
  export type BaselineOperationStatus =
28
28
  (typeof BaselineOperationStatus)[keyof typeof BaselineOperationStatus];
29
29
  export interface BaselineOperation {
30
- operationIdentifier?: string;
31
- operationType?: BaselineOperationType;
32
- status?: BaselineOperationStatus;
33
- startTime?: Date;
34
- endTime?: Date;
35
- statusMessage?: string;
30
+ operationIdentifier?: string | undefined;
31
+ operationType?: BaselineOperationType | undefined;
32
+ status?: BaselineOperationStatus | undefined;
33
+ startTime?: Date | undefined;
34
+ endTime?: Date | undefined;
35
+ statusMessage?: string | undefined;
36
36
  }
37
37
  export interface GetBaselineOperationOutput {
38
38
  baselineOperation: BaselineOperation | undefined;
@@ -58,9 +58,9 @@ export declare class ThrottlingException extends __BaseException {
58
58
  $retryable: {
59
59
  throttling: boolean;
60
60
  };
61
- serviceCode?: string;
62
- quotaCode?: string;
63
- retryAfterSeconds?: number;
61
+ serviceCode?: string | undefined;
62
+ quotaCode?: string | undefined;
63
+ retryAfterSeconds?: number | undefined;
64
64
  constructor(
65
65
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
66
66
  );
@@ -78,20 +78,20 @@ export interface GetBaselineInput {
78
78
  export interface GetBaselineOutput {
79
79
  arn: string | undefined;
80
80
  name: string | undefined;
81
- description?: string;
81
+ description?: string | undefined;
82
82
  }
83
83
  export interface ListBaselinesInput {
84
- nextToken?: string;
85
- maxResults?: number;
84
+ nextToken?: string | undefined;
85
+ maxResults?: number | undefined;
86
86
  }
87
87
  export interface BaselineSummary {
88
88
  arn: string | undefined;
89
89
  name: string | undefined;
90
- description?: string;
90
+ description?: string | undefined;
91
91
  }
92
92
  export interface ListBaselinesOutput {
93
93
  baselines: BaselineSummary[] | undefined;
94
- nextToken?: string;
94
+ nextToken?: string | undefined;
95
95
  }
96
96
  export interface GetControlOperationInput {
97
97
  operationIdentifier: string | undefined;
@@ -112,45 +112,45 @@ export declare const ControlOperationStatus: {
112
112
  export type ControlOperationStatus =
113
113
  (typeof ControlOperationStatus)[keyof typeof ControlOperationStatus];
114
114
  export interface ControlOperation {
115
- operationType?: ControlOperationType;
116
- startTime?: Date;
117
- endTime?: Date;
118
- status?: ControlOperationStatus;
119
- statusMessage?: string;
120
- operationIdentifier?: string;
121
- controlIdentifier?: string;
122
- targetIdentifier?: string;
123
- enabledControlIdentifier?: string;
115
+ operationType?: ControlOperationType | undefined;
116
+ startTime?: Date | undefined;
117
+ endTime?: Date | undefined;
118
+ status?: ControlOperationStatus | undefined;
119
+ statusMessage?: string | undefined;
120
+ operationIdentifier?: string | undefined;
121
+ controlIdentifier?: string | undefined;
122
+ targetIdentifier?: string | undefined;
123
+ enabledControlIdentifier?: string | undefined;
124
124
  }
125
125
  export interface GetControlOperationOutput {
126
126
  controlOperation: ControlOperation | undefined;
127
127
  }
128
128
  export interface ControlOperationFilter {
129
- controlIdentifiers?: string[];
130
- targetIdentifiers?: string[];
131
- enabledControlIdentifiers?: string[];
132
- statuses?: ControlOperationStatus[];
133
- controlOperationTypes?: ControlOperationType[];
129
+ controlIdentifiers?: string[] | undefined;
130
+ targetIdentifiers?: string[] | undefined;
131
+ enabledControlIdentifiers?: string[] | undefined;
132
+ statuses?: ControlOperationStatus[] | undefined;
133
+ controlOperationTypes?: ControlOperationType[] | undefined;
134
134
  }
135
135
  export interface ListControlOperationsInput {
136
- filter?: ControlOperationFilter;
137
- nextToken?: string;
138
- maxResults?: number;
136
+ filter?: ControlOperationFilter | undefined;
137
+ nextToken?: string | undefined;
138
+ maxResults?: number | undefined;
139
139
  }
140
140
  export interface ControlOperationSummary {
141
- operationType?: ControlOperationType;
142
- startTime?: Date;
143
- endTime?: Date;
144
- status?: ControlOperationStatus;
145
- statusMessage?: string;
146
- operationIdentifier?: string;
147
- controlIdentifier?: string;
148
- targetIdentifier?: string;
149
- enabledControlIdentifier?: string;
141
+ operationType?: ControlOperationType | undefined;
142
+ startTime?: Date | undefined;
143
+ endTime?: Date | undefined;
144
+ status?: ControlOperationStatus | undefined;
145
+ statusMessage?: string | undefined;
146
+ operationIdentifier?: string | undefined;
147
+ controlIdentifier?: string | undefined;
148
+ targetIdentifier?: string | undefined;
149
+ enabledControlIdentifier?: string | undefined;
150
150
  }
151
151
  export interface ListControlOperationsOutput {
152
152
  controlOperations: ControlOperationSummary[] | undefined;
153
- nextToken?: string;
153
+ nextToken?: string | undefined;
154
154
  }
155
155
  export declare class ConflictException extends __BaseException {
156
156
  readonly name: "ConflictException";
@@ -183,10 +183,10 @@ export interface EnabledBaselineParameter {
183
183
  }
184
184
  export interface EnableBaselineInput {
185
185
  baselineVersion: string | undefined;
186
- parameters?: EnabledBaselineParameter[];
186
+ parameters?: EnabledBaselineParameter[] | undefined;
187
187
  baselineIdentifier: string | undefined;
188
188
  targetIdentifier: string | undefined;
189
- tags?: Record<string, string>;
189
+ tags?: Record<string, string> | undefined;
190
190
  }
191
191
  export interface EnableBaselineOutput {
192
192
  operationIdentifier: string | undefined;
@@ -207,39 +207,39 @@ export declare const EnablementStatus: {
207
207
  export type EnablementStatus =
208
208
  (typeof EnablementStatus)[keyof typeof EnablementStatus];
209
209
  export interface EnablementStatusSummary {
210
- status?: EnablementStatus;
211
- lastOperationIdentifier?: string;
210
+ status?: EnablementStatus | undefined;
211
+ lastOperationIdentifier?: string | undefined;
212
212
  }
213
213
  export interface EnabledBaselineDetails {
214
214
  arn: string | undefined;
215
215
  baselineIdentifier: string | undefined;
216
- baselineVersion?: string;
216
+ baselineVersion?: string | undefined;
217
217
  targetIdentifier: string | undefined;
218
218
  statusSummary: EnablementStatusSummary | undefined;
219
- parameters?: EnabledBaselineParameterSummary[];
219
+ parameters?: EnabledBaselineParameterSummary[] | undefined;
220
220
  }
221
221
  export interface GetEnabledBaselineOutput {
222
- enabledBaselineDetails?: EnabledBaselineDetails;
222
+ enabledBaselineDetails?: EnabledBaselineDetails | undefined;
223
223
  }
224
224
  export interface EnabledBaselineFilter {
225
- targetIdentifiers?: string[];
226
- baselineIdentifiers?: string[];
225
+ targetIdentifiers?: string[] | undefined;
226
+ baselineIdentifiers?: string[] | undefined;
227
227
  }
228
228
  export interface ListEnabledBaselinesInput {
229
- filter?: EnabledBaselineFilter;
230
- nextToken?: string;
231
- maxResults?: number;
229
+ filter?: EnabledBaselineFilter | undefined;
230
+ nextToken?: string | undefined;
231
+ maxResults?: number | undefined;
232
232
  }
233
233
  export interface EnabledBaselineSummary {
234
234
  arn: string | undefined;
235
235
  baselineIdentifier: string | undefined;
236
- baselineVersion?: string;
236
+ baselineVersion?: string | undefined;
237
237
  targetIdentifier: string | undefined;
238
238
  statusSummary: EnablementStatusSummary | undefined;
239
239
  }
240
240
  export interface ListEnabledBaselinesOutput {
241
241
  enabledBaselines: EnabledBaselineSummary[] | undefined;
242
- nextToken?: string;
242
+ nextToken?: string | undefined;
243
243
  }
244
244
  export interface ResetEnabledBaselineInput {
245
245
  enabledBaselineIdentifier: string | undefined;
@@ -249,7 +249,7 @@ export interface ResetEnabledBaselineOutput {
249
249
  }
250
250
  export interface UpdateEnabledBaselineInput {
251
251
  baselineVersion: string | undefined;
252
- parameters?: EnabledBaselineParameter[];
252
+ parameters?: EnabledBaselineParameter[] | undefined;
253
253
  enabledBaselineIdentifier: string | undefined;
254
254
  }
255
255
  export interface UpdateEnabledBaselineOutput {
@@ -262,12 +262,12 @@ export interface EnabledControlParameter {
262
262
  export interface EnableControlInput {
263
263
  controlIdentifier: string | undefined;
264
264
  targetIdentifier: string | undefined;
265
- tags?: Record<string, string>;
266
- parameters?: EnabledControlParameter[];
265
+ tags?: Record<string, string> | undefined;
266
+ parameters?: EnabledControlParameter[] | undefined;
267
267
  }
268
268
  export interface EnableControlOutput {
269
269
  operationIdentifier: string | undefined;
270
- arn?: string;
270
+ arn?: string | undefined;
271
271
  }
272
272
  export interface GetEnabledControlInput {
273
273
  enabledControlIdentifier: string | undefined;
@@ -280,48 +280,48 @@ export declare const DriftStatus: {
280
280
  };
281
281
  export type DriftStatus = (typeof DriftStatus)[keyof typeof DriftStatus];
282
282
  export interface DriftStatusSummary {
283
- driftStatus?: DriftStatus;
283
+ driftStatus?: DriftStatus | undefined;
284
284
  }
285
285
  export interface EnabledControlParameterSummary {
286
286
  key: string | undefined;
287
287
  value: __DocumentType | undefined;
288
288
  }
289
289
  export interface Region {
290
- name?: string;
290
+ name?: string | undefined;
291
291
  }
292
292
  export interface EnabledControlDetails {
293
- arn?: string;
294
- controlIdentifier?: string;
295
- targetIdentifier?: string;
296
- targetRegions?: Region[];
297
- statusSummary?: EnablementStatusSummary;
298
- driftStatusSummary?: DriftStatusSummary;
299
- parameters?: EnabledControlParameterSummary[];
293
+ arn?: string | undefined;
294
+ controlIdentifier?: string | undefined;
295
+ targetIdentifier?: string | undefined;
296
+ targetRegions?: Region[] | undefined;
297
+ statusSummary?: EnablementStatusSummary | undefined;
298
+ driftStatusSummary?: DriftStatusSummary | undefined;
299
+ parameters?: EnabledControlParameterSummary[] | undefined;
300
300
  }
301
301
  export interface GetEnabledControlOutput {
302
302
  enabledControlDetails: EnabledControlDetails | undefined;
303
303
  }
304
304
  export interface EnabledControlFilter {
305
- controlIdentifiers?: string[];
306
- statuses?: EnablementStatus[];
307
- driftStatuses?: DriftStatus[];
305
+ controlIdentifiers?: string[] | undefined;
306
+ statuses?: EnablementStatus[] | undefined;
307
+ driftStatuses?: DriftStatus[] | undefined;
308
308
  }
309
309
  export interface ListEnabledControlsInput {
310
- targetIdentifier?: string;
311
- nextToken?: string;
312
- maxResults?: number;
313
- filter?: EnabledControlFilter;
310
+ targetIdentifier?: string | undefined;
311
+ nextToken?: string | undefined;
312
+ maxResults?: number | undefined;
313
+ filter?: EnabledControlFilter | undefined;
314
314
  }
315
315
  export interface EnabledControlSummary {
316
- controlIdentifier?: string;
317
- arn?: string;
318
- targetIdentifier?: string;
319
- statusSummary?: EnablementStatusSummary;
320
- driftStatusSummary?: DriftStatusSummary;
316
+ controlIdentifier?: string | undefined;
317
+ arn?: string | undefined;
318
+ targetIdentifier?: string | undefined;
319
+ statusSummary?: EnablementStatusSummary | undefined;
320
+ driftStatusSummary?: DriftStatusSummary | undefined;
321
321
  }
322
322
  export interface ListEnabledControlsOutput {
323
323
  enabledControls: EnabledControlSummary[] | undefined;
324
- nextToken?: string;
324
+ nextToken?: string | undefined;
325
325
  }
326
326
  export interface ResetEnabledControlInput {
327
327
  enabledControlIdentifier: string | undefined;
@@ -355,38 +355,38 @@ export declare const LandingZoneOperationStatus: {
355
355
  export type LandingZoneOperationStatus =
356
356
  (typeof LandingZoneOperationStatus)[keyof typeof LandingZoneOperationStatus];
357
357
  export interface LandingZoneOperationDetail {
358
- operationType?: LandingZoneOperationType;
359
- operationIdentifier?: string;
360
- status?: LandingZoneOperationStatus;
361
- startTime?: Date;
362
- endTime?: Date;
363
- statusMessage?: string;
358
+ operationType?: LandingZoneOperationType | undefined;
359
+ operationIdentifier?: string | undefined;
360
+ status?: LandingZoneOperationStatus | undefined;
361
+ startTime?: Date | undefined;
362
+ endTime?: Date | undefined;
363
+ statusMessage?: string | undefined;
364
364
  }
365
365
  export interface GetLandingZoneOperationOutput {
366
366
  operationDetails: LandingZoneOperationDetail | undefined;
367
367
  }
368
368
  export interface LandingZoneOperationFilter {
369
- types?: LandingZoneOperationType[];
370
- statuses?: LandingZoneOperationStatus[];
369
+ types?: LandingZoneOperationType[] | undefined;
370
+ statuses?: LandingZoneOperationStatus[] | undefined;
371
371
  }
372
372
  export interface ListLandingZoneOperationsInput {
373
- filter?: LandingZoneOperationFilter;
374
- nextToken?: string;
375
- maxResults?: number;
373
+ filter?: LandingZoneOperationFilter | undefined;
374
+ nextToken?: string | undefined;
375
+ maxResults?: number | undefined;
376
376
  }
377
377
  export interface LandingZoneOperationSummary {
378
- operationType?: LandingZoneOperationType;
379
- operationIdentifier?: string;
380
- status?: LandingZoneOperationStatus;
378
+ operationType?: LandingZoneOperationType | undefined;
379
+ operationIdentifier?: string | undefined;
380
+ status?: LandingZoneOperationStatus | undefined;
381
381
  }
382
382
  export interface ListLandingZoneOperationsOutput {
383
383
  landingZoneOperations: LandingZoneOperationSummary[] | undefined;
384
- nextToken?: string;
384
+ nextToken?: string | undefined;
385
385
  }
386
386
  export interface CreateLandingZoneInput {
387
387
  version: string | undefined;
388
388
  manifest: __DocumentType | undefined;
389
- tags?: Record<string, string>;
389
+ tags?: Record<string, string> | undefined;
390
390
  }
391
391
  export interface CreateLandingZoneOutput {
392
392
  arn: string | undefined;
@@ -408,7 +408,7 @@ export declare const LandingZoneDriftStatus: {
408
408
  export type LandingZoneDriftStatus =
409
409
  (typeof LandingZoneDriftStatus)[keyof typeof LandingZoneDriftStatus];
410
410
  export interface LandingZoneDriftStatusSummary {
411
- status?: LandingZoneDriftStatus;
411
+ status?: LandingZoneDriftStatus | undefined;
412
412
  }
413
413
  export declare const LandingZoneStatus: {
414
414
  readonly ACTIVE: "ACTIVE";
@@ -420,24 +420,24 @@ export type LandingZoneStatus =
420
420
  export interface LandingZoneDetail {
421
421
  version: string | undefined;
422
422
  manifest: __DocumentType | undefined;
423
- arn?: string;
424
- status?: LandingZoneStatus;
425
- latestAvailableVersion?: string;
426
- driftStatus?: LandingZoneDriftStatusSummary;
423
+ arn?: string | undefined;
424
+ status?: LandingZoneStatus | undefined;
425
+ latestAvailableVersion?: string | undefined;
426
+ driftStatus?: LandingZoneDriftStatusSummary | undefined;
427
427
  }
428
428
  export interface GetLandingZoneOutput {
429
429
  landingZone: LandingZoneDetail | undefined;
430
430
  }
431
431
  export interface ListLandingZonesInput {
432
- nextToken?: string;
433
- maxResults?: number;
432
+ nextToken?: string | undefined;
433
+ maxResults?: number | undefined;
434
434
  }
435
435
  export interface LandingZoneSummary {
436
- arn?: string;
436
+ arn?: string | undefined;
437
437
  }
438
438
  export interface ListLandingZonesOutput {
439
439
  landingZones: LandingZoneSummary[] | undefined;
440
- nextToken?: string;
440
+ nextToken?: string | undefined;
441
441
  }
442
442
  export interface ResetLandingZoneInput {
443
443
  landingZoneIdentifier: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-controltower",
3
3
  "description": "AWS SDK for JavaScript Controltower Client for Node.js, Browser and React Native",
4
- "version": "3.690.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-controltower",
@@ -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",