@aws-sdk/client-controltower 3.808.0 → 3.809.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.
Files changed (35) hide show
  1. package/README.md +1 -385
  2. package/dist-cjs/index.js +7 -0
  3. package/dist-es/models/models_0.js +4 -0
  4. package/dist-es/protocols/Aws_restJson1.js +1 -0
  5. package/dist-types/ControlTower.d.ts +1 -385
  6. package/dist-types/ControlTowerClient.d.ts +1 -385
  7. package/dist-types/commands/CreateLandingZoneCommand.d.ts +1 -2
  8. package/dist-types/commands/DeleteLandingZoneCommand.d.ts +1 -2
  9. package/dist-types/commands/DisableBaselineCommand.d.ts +2 -4
  10. package/dist-types/commands/DisableControlCommand.d.ts +2 -6
  11. package/dist-types/commands/EnableBaselineCommand.d.ts +2 -4
  12. package/dist-types/commands/EnableControlCommand.d.ts +2 -6
  13. package/dist-types/commands/GetBaselineCommand.d.ts +1 -3
  14. package/dist-types/commands/GetBaselineOperationCommand.d.ts +1 -3
  15. package/dist-types/commands/GetControlOperationCommand.d.ts +1 -5
  16. package/dist-types/commands/GetEnabledBaselineCommand.d.ts +7 -0
  17. package/dist-types/commands/GetEnabledControlCommand.d.ts +1 -3
  18. package/dist-types/commands/GetLandingZoneOperationCommand.d.ts +1 -2
  19. package/dist-types/commands/ListBaselinesCommand.d.ts +1 -3
  20. package/dist-types/commands/ListEnabledBaselinesCommand.d.ts +14 -3
  21. package/dist-types/commands/ListEnabledControlsCommand.d.ts +1 -4
  22. package/dist-types/commands/ListLandingZonesCommand.d.ts +1 -3
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -3
  24. package/dist-types/commands/ResetEnabledBaselineCommand.d.ts +2 -4
  25. package/dist-types/commands/ResetEnabledControlCommand.d.ts +1 -1
  26. package/dist-types/commands/ResetLandingZoneCommand.d.ts +1 -5
  27. package/dist-types/commands/TagResourceCommand.d.ts +1 -3
  28. package/dist-types/commands/UntagResourceCommand.d.ts +1 -3
  29. package/dist-types/commands/UpdateEnabledBaselineCommand.d.ts +2 -4
  30. package/dist-types/commands/UpdateEnabledControlCommand.d.ts +2 -9
  31. package/dist-types/commands/UpdateLandingZoneCommand.d.ts +1 -3
  32. package/dist-types/index.d.ts +1 -385
  33. package/dist-types/models/models_0.d.ts +92 -139
  34. package/dist-types/ts3.4/models/models_0.d.ts +19 -0
  35. package/package.json +1 -1
@@ -234,7 +234,7 @@ export interface BaselineSummary {
234
234
  */
235
235
  export interface ListBaselinesOutput {
236
236
  /**
237
- * <p>A list of <code>Baseline</code> object details.</p>
237
+ * <p>A list of <code>Baseline</code> object details.</p>
238
238
  * @public
239
239
  */
240
240
  baselines: BaselineSummary[] | undefined;
@@ -249,8 +249,7 @@ export interface ListBaselinesOutput {
249
249
  */
250
250
  export interface GetControlOperationInput {
251
251
  /**
252
- * <p>The ID of the asynchronous operation, which is used to track status. The operation is
253
- * available for 90 days.</p>
252
+ * <p>The ID of the asynchronous operation, which is used to track status. The operation is available for 90 days.</p>
254
253
  * @public
255
254
  */
256
255
  operationIdentifier: string | undefined;
@@ -308,8 +307,7 @@ export interface ControlOperation {
308
307
  */
309
308
  status?: ControlOperationStatus | undefined;
310
309
  /**
311
- * <p>If the operation result is <code>FAILED</code>, this string contains a message explaining
312
- * why the operation failed.</p>
310
+ * <p>If the operation result is <code>FAILED</code>, this string contains a message explaining why the operation failed.</p>
313
311
  * @public
314
312
  */
315
313
  statusMessage?: string | undefined;
@@ -478,9 +476,7 @@ export declare class ConflictException extends __BaseException {
478
476
  */
479
477
  export interface DisableControlInput {
480
478
  /**
481
- * <p>The ARN of the control. Only <b>Strongly recommended</b> and
482
- * <b>Elective</b> controls are permitted, with the exception of the
483
- * <b>Region deny</b> 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>
479
+ * <p>The ARN of the control. Only <b>Strongly recommended</b> and <b>Elective</b> controls are permitted, with the exception of the <b>Region deny</b> 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>
484
480
  * @public
485
481
  */
486
482
  controlIdentifier: string | undefined;
@@ -495,14 +491,13 @@ export interface DisableControlInput {
495
491
  */
496
492
  export interface DisableControlOutput {
497
493
  /**
498
- * <p>The ID of the asynchronous operation, which is used to track status. The operation is
499
- * available for 90 days.</p>
494
+ * <p>The ID of the asynchronous operation, which is used to track status. The operation is available for 90 days.</p>
500
495
  * @public
501
496
  */
502
497
  operationIdentifier: string | undefined;
503
498
  }
504
499
  /**
505
- * <p>The request would cause a service quota to be exceeded. The limit is 10 concurrent operations.</p>
500
+ * <p>The request would cause a service quota to be exceeded. The limit is 100 concurrent operations.</p>
506
501
  * @public
507
502
  */
508
503
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -604,6 +599,51 @@ export interface GetEnabledBaselineInput {
604
599
  */
605
600
  enabledBaselineIdentifier: string | undefined;
606
601
  }
602
+ /**
603
+ * @public
604
+ * @enum
605
+ */
606
+ export declare const EnabledBaselineDriftStatus: {
607
+ readonly DRIFTED: "DRIFTED";
608
+ readonly IN_SYNC: "IN_SYNC";
609
+ };
610
+ /**
611
+ * @public
612
+ */
613
+ export type EnabledBaselineDriftStatus = (typeof EnabledBaselineDriftStatus)[keyof typeof EnabledBaselineDriftStatus];
614
+ /**
615
+ * <p>The inheritance drift summary for the enabled baseline. Inheritance drift occurs when any accounts in the target OU do not match the baseline configuration defined on that OU. </p>
616
+ * @public
617
+ */
618
+ export interface EnabledBaselineInheritanceDrift {
619
+ /**
620
+ * <p>The inheritance drift status for enabled baselines.</p>
621
+ * @public
622
+ */
623
+ status?: EnabledBaselineDriftStatus | undefined;
624
+ }
625
+ /**
626
+ * <p>The types of drift that can be detected for an enabled baseline.</p> <ul> <li> <p> Amazon Web Services Control Tower detects inheritance drift on the enabled baselines that target OUs: <code>AWSControlTowerBaseline</code> and <code>BackupBaseline</code>. </p> </li> <li> <p>Amazon Web Services Control Tower does not detect drift on the baselines that apply to your landing zone: <code>IdentityCenterBaseline</code>, <code>AuditBaseline</code>, <code>LogArchiveBaseline</code>, <code>BackupCentralVaultBaseline</code>, or <code>BackupAdminBaseline</code>. For more information, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/types-of-baselines.html">Types of baselines</a>.</p> </li> </ul> <p>Baselines enabled on an OU are inherited by its member accounts as child <code>EnabledBaseline</code> resources. The baseline on the OU serves as the parent <code>EnabledBaseline</code>, which governs the configuration of each child <code>EnabledBaseline</code>.</p> <p>If the baseline configuration of a member account in an OU does not match the configuration of the parent OU, the parent and child baseline is in a state of inheritance drift. This drift could occur in the <code>AWSControlTowerBaseline</code> or the <code>BackupBaseline</code> related to that account.</p>
627
+ * @public
628
+ */
629
+ export interface EnabledBaselineDriftTypes {
630
+ /**
631
+ * <p>One or more accounts within the target OU does not match the baseline configuration defined on that OU. An account is in inheritance drift when it does not match the configuration of a parent OU, possibly a new parent OU if the account is moved. </p>
632
+ * @public
633
+ */
634
+ inheritance?: EnabledBaselineInheritanceDrift | undefined;
635
+ }
636
+ /**
637
+ * <p>The drift summary of the enabled baseline. Amazon Web Services Control Tower reports inheritance drift when an enabled baseline configuration of a member account is different than the configuration that applies to the OU. Amazon Web Services Control Tower reports this type of drift for a parent or child enabled baseline. One way to repair this drift by resetting the parent enabled baseline, on the OU.</p> <p>For example, if an account is moved between OUs that share the same baseline but different versions or parameters, the entity from the previous OU is unlinked; that (previous) OU reports <i>inheritance drift</i>. Also, the parent enabled baseline on the destination OU reports <i>inheritance drift</i>; it is missing the newly moved account. The configurations do not match for either OU, so both are in a state of inheritance drift.</p>
638
+ * @public
639
+ */
640
+ export interface EnabledBaselineDriftStatusSummary {
641
+ /**
642
+ * <p>The types of drift that can be detected for an enabled baseline. Amazon Web Services Control Tower detects inheritance drift on enabled baselines that apply at the OU level. </p>
643
+ * @public
644
+ */
645
+ types?: EnabledBaselineDriftTypes | undefined;
646
+ }
607
647
  /**
608
648
  * <p>Summary of an applied parameter to an <code>EnabledBaseline</code> resource. </p>
609
649
  * @public
@@ -639,22 +679,7 @@ export type EnablementStatus = (typeof EnablementStatus)[keyof typeof Enablement
639
679
  */
640
680
  export interface EnablementStatusSummary {
641
681
  /**
642
- * <p> The deployment status of the enabled resource.</p>
643
- * <p>Valid values:</p>
644
- * <ul>
645
- * <li>
646
- * <p>
647
- * <code>SUCCEEDED</code>: The <code>EnabledControl</code> or <code>EnabledBaseline</code> configuration was deployed successfully.</p>
648
- * </li>
649
- * <li>
650
- * <p>
651
- * <code>UNDER_CHANGE</code>: The <code>EnabledControl</code> or <code>EnabledBaseline</code> configuration is changing. </p>
652
- * </li>
653
- * <li>
654
- * <p>
655
- * <code>FAILED</code>: The <code>EnabledControl</code> or <code>EnabledBaseline</code> configuration failed to deploy.</p>
656
- * </li>
657
- * </ul>
682
+ * <p> The deployment status of the enabled resource.</p> <p>Valid values:</p> <ul> <li> <p> <code>SUCCEEDED</code>: The <code>EnabledControl</code> or <code>EnabledBaseline</code> configuration was deployed successfully.</p> </li> <li> <p> <code>UNDER_CHANGE</code>: The <code>EnabledControl</code> or <code>EnabledBaseline</code> configuration is changing. </p> </li> <li> <p> <code>FAILED</code>: The <code>EnabledControl</code> or <code>EnabledBaseline</code> configuration failed to deploy.</p> </li> </ul>
658
683
  * @public
659
684
  */
660
685
  status?: EnablementStatus | undefined;
@@ -684,6 +709,11 @@ export interface EnabledBaselineDetails {
684
709
  * @public
685
710
  */
686
711
  baselineVersion?: string | undefined;
712
+ /**
713
+ * <p>The drift status of the enabled baseline.</p>
714
+ * @public
715
+ */
716
+ driftStatusSummary?: EnabledBaselineDriftStatusSummary | undefined;
687
717
  /**
688
718
  * <p>The target on which to enable the <code>Baseline</code>.</p>
689
719
  * @public
@@ -735,6 +765,16 @@ export interface EnabledBaselineFilter {
735
765
  * @public
736
766
  */
737
767
  parentIdentifiers?: string[] | undefined;
768
+ /**
769
+ * <p>A list of <code>EnablementStatus</code> items.</p>
770
+ * @public
771
+ */
772
+ statuses?: EnablementStatus[] | undefined;
773
+ /**
774
+ * <p>A list of <code>EnabledBaselineDriftStatus</code> items for enabled baselines.</p>
775
+ * @public
776
+ */
777
+ inheritanceDriftStatuses?: EnabledBaselineDriftStatus[] | undefined;
738
778
  }
739
779
  /**
740
780
  * @public
@@ -756,7 +796,7 @@ export interface ListEnabledBaselinesInput {
756
796
  */
757
797
  maxResults?: number | undefined;
758
798
  /**
759
- * <p>A value that can be set to include the child enabled baselines in responses. The default value is false.</p>
799
+ * <p>A value that can be set to include the child enabled baselines in responses. The default value is false.</p>
760
800
  * @public
761
801
  */
762
802
  includeChildren?: boolean | undefined;
@@ -781,6 +821,11 @@ export interface EnabledBaselineSummary {
781
821
  * @public
782
822
  */
783
823
  baselineVersion?: string | undefined;
824
+ /**
825
+ * <p>The drift status of the enabled baseline.</p>
826
+ * @public
827
+ */
828
+ driftStatusSummary?: EnabledBaselineDriftStatusSummary | undefined;
784
829
  /**
785
830
  * <p>The target upon which the baseline is enabled.</p>
786
831
  * @public
@@ -883,9 +928,7 @@ export interface EnabledControlParameter {
883
928
  */
884
929
  export interface EnableControlInput {
885
930
  /**
886
- * <p>The ARN of the control. Only <b>Strongly recommended</b> and
887
- * <b>Elective</b> controls are permitted, with the exception of the
888
- * <b>Region deny</b> 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>
931
+ * <p>The ARN of the control. Only <b>Strongly recommended</b> and <b>Elective</b> controls are permitted, with the exception of the <b>Region deny</b> 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>
889
932
  * @public
890
933
  */
891
934
  controlIdentifier: string | undefined;
@@ -910,8 +953,7 @@ export interface EnableControlInput {
910
953
  */
911
954
  export interface EnableControlOutput {
912
955
  /**
913
- * <p>The ID of the asynchronous operation, which is used to track status. The operation is
914
- * available for 90 days.</p>
956
+ * <p>The ID of the asynchronous operation, which is used to track status. The operation is available for 90 days.</p>
915
957
  * @public
916
958
  */
917
959
  operationIdentifier: string | undefined;
@@ -946,38 +988,12 @@ export declare const DriftStatus: {
946
988
  */
947
989
  export type DriftStatus = (typeof DriftStatus)[keyof typeof DriftStatus];
948
990
  /**
949
- * <p>The drift summary of the enabled control.</p>
950
- * <p>Amazon Web Services Control Tower expects the enabled control
951
- * configuration to include all supported and governed Regions. If the enabled control differs
952
- * from the expected configuration, it is defined to be in a state of drift. You can repair this drift by resetting the enabled control.</p>
991
+ * <p>The drift summary of the enabled control.</p> <p>Amazon Web Services Control Tower expects the enabled control configuration to include all supported and governed Regions. If the enabled control differs from the expected configuration, it is defined to be in a state of drift. You can repair this drift by resetting the enabled control.</p>
953
992
  * @public
954
993
  */
955
994
  export interface DriftStatusSummary {
956
995
  /**
957
- * <p> The drift status of the enabled control.</p>
958
- * <p>Valid values:</p>
959
- * <ul>
960
- * <li>
961
- * <p>
962
- * <code>DRIFTED</code>: The <code>enabledControl</code> deployed in this configuration
963
- * doesn’t match the configuration that Amazon Web Services Control Tower expected. </p>
964
- * </li>
965
- * <li>
966
- * <p>
967
- * <code>IN_SYNC</code>: The <code>enabledControl</code> deployed in this configuration matches
968
- * the configuration that Amazon Web Services Control Tower expected.</p>
969
- * </li>
970
- * <li>
971
- * <p>
972
- * <code>NOT_CHECKING</code>: Amazon Web Services Control Tower does not check drift for this enabled
973
- * control. Drift is not supported for the control type.</p>
974
- * </li>
975
- * <li>
976
- * <p>
977
- * <code>UNKNOWN</code>: Amazon Web Services Control Tower is not able to check the drift status for the
978
- * enabled control. </p>
979
- * </li>
980
- * </ul>
996
+ * <p> The drift status of the enabled control.</p> <p>Valid values:</p> <ul> <li> <p> <code>DRIFTED</code>: The <code>enabledControl</code> deployed in this configuration doesn’t match the configuration that Amazon Web Services Control Tower expected. </p> </li> <li> <p> <code>IN_SYNC</code>: The <code>enabledControl</code> deployed in this configuration matches the configuration that Amazon Web Services Control Tower expected.</p> </li> <li> <p> <code>NOT_CHECKING</code>: Amazon Web Services Control Tower does not check drift for this enabled control. Drift is not supported for the control type.</p> </li> <li> <p> <code>UNKNOWN</code>: Amazon Web Services Control Tower is not able to check the drift status for the enabled control. </p> </li> </ul>
981
997
  * @public
982
998
  */
983
999
  driftStatus?: DriftStatus | undefined;
@@ -999,10 +1015,7 @@ export interface EnabledControlParameterSummary {
999
1015
  value: __DocumentType | undefined;
1000
1016
  }
1001
1017
  /**
1002
- * <p>An Amazon Web Services Region in which Amazon Web Services Control Tower expects to find the control deployed. </p>
1003
- * <p>The expected Regions are based on the Regions that are governed by the landing zone. In
1004
- * certain cases, a control is not actually enabled in the Region as expected, such as during
1005
- * drift, or <a href="https://docs.aws.amazon.com/controltower/latest/userguide/region-how.html#mixed-governance">mixed governance</a>.</p>
1018
+ * <p>An Amazon Web Services Region in which Amazon Web Services Control Tower expects to find the control deployed. </p> <p>The expected Regions are based on the Regions that are governed by the landing zone. In certain cases, a control is not actually enabled in the Region as expected, such as during drift, or <a href="https://docs.aws.amazon.com/controltower/latest/userguide/region-how.html#mixed-governance">mixed governance</a>.</p>
1006
1019
  * @public
1007
1020
  */
1008
1021
  export interface Region {
@@ -1145,14 +1158,12 @@ export interface EnabledControlSummary {
1145
1158
  */
1146
1159
  export interface ListEnabledControlsOutput {
1147
1160
  /**
1148
- * <p>Lists the controls enabled by Amazon Web Services Control Tower on the specified organizational unit and
1149
- * the accounts it contains.</p>
1161
+ * <p>Lists the controls enabled by Amazon Web Services Control Tower on the specified organizational unit and the accounts it contains.</p>
1150
1162
  * @public
1151
1163
  */
1152
1164
  enabledControls: EnabledControlSummary[] | undefined;
1153
1165
  /**
1154
- * <p>Retrieves the next page of results. If the string is empty, the response is the
1155
- * end of the results.</p>
1166
+ * <p>Retrieves the next page of results. If the string is empty, the response is the end of the results.</p>
1156
1167
  * @public
1157
1168
  */
1158
1169
  nextToken?: string | undefined;
@@ -1187,9 +1198,7 @@ export interface UpdateEnabledControlInput {
1187
1198
  */
1188
1199
  parameters: EnabledControlParameter[] | undefined;
1189
1200
  /**
1190
- * <p>
1191
- * The ARN of the enabled control that will be updated.
1192
- * </p>
1201
+ * <p> The ARN of the enabled control that will be updated. </p>
1193
1202
  * @public
1194
1203
  */
1195
1204
  enabledControlIdentifier: string | undefined;
@@ -1199,9 +1208,7 @@ export interface UpdateEnabledControlInput {
1199
1208
  */
1200
1209
  export interface UpdateEnabledControlOutput {
1201
1210
  /**
1202
- * <p>
1203
- * The operation identifier for this <code>UpdateEnabledControl</code> operation.
1204
- * </p>
1211
+ * <p> The operation identifier for this <code>UpdateEnabledControl</code> operation. </p>
1205
1212
  * @public
1206
1213
  */
1207
1214
  operationIdentifier: string | undefined;
@@ -1249,26 +1256,7 @@ export type LandingZoneOperationStatus = (typeof LandingZoneOperationStatus)[key
1249
1256
  */
1250
1257
  export interface LandingZoneOperationDetail {
1251
1258
  /**
1252
- * <p>The landing zone operation type. </p>
1253
- * <p>Valid values:</p>
1254
- * <ul>
1255
- * <li>
1256
- * <p>
1257
- * <code>DELETE</code>: The <code>DeleteLandingZone</code> operation. </p>
1258
- * </li>
1259
- * <li>
1260
- * <p>
1261
- * <code>CREATE</code>: The <code>CreateLandingZone</code> operation. </p>
1262
- * </li>
1263
- * <li>
1264
- * <p>
1265
- * <code>UPDATE</code>: The <code>UpdateLandingZone</code> operation. </p>
1266
- * </li>
1267
- * <li>
1268
- * <p>
1269
- * <code>RESET</code>: The <code>ResetLandingZone</code> operation. </p>
1270
- * </li>
1271
- * </ul>
1259
+ * <p>The landing zone operation type. </p> <p>Valid values:</p> <ul> <li> <p> <code>DELETE</code>: The <code>DeleteLandingZone</code> operation. </p> </li> <li> <p> <code>CREATE</code>: The <code>CreateLandingZone</code> operation. </p> </li> <li> <p> <code>UPDATE</code>: The <code>UpdateLandingZone</code> operation. </p> </li> <li> <p> <code>RESET</code>: The <code>ResetLandingZone</code> operation. </p> </li> </ul>
1272
1260
  * @public
1273
1261
  */
1274
1262
  operationType?: LandingZoneOperationType | undefined;
@@ -1278,21 +1266,7 @@ export interface LandingZoneOperationDetail {
1278
1266
  */
1279
1267
  operationIdentifier?: string | undefined;
1280
1268
  /**
1281
- * <p>Valid values:</p>
1282
- * <ul>
1283
- * <li>
1284
- * <p>
1285
- * <code>SUCCEEDED</code>: The landing zone operation succeeded. </p>
1286
- * </li>
1287
- * <li>
1288
- * <p>
1289
- * <code>IN_PROGRESS</code>: The landing zone operation is in progress. </p>
1290
- * </li>
1291
- * <li>
1292
- * <p>
1293
- * <code>FAILED</code>: The landing zone operation failed. </p>
1294
- * </li>
1295
- * </ul>
1269
+ * <p>Valid values:</p> <ul> <li> <p> <code>SUCCEEDED</code>: The landing zone operation succeeded. </p> </li> <li> <p> <code>IN_PROGRESS</code>: The landing zone operation is in progress. </p> </li> <li> <p> <code>FAILED</code>: The landing zone operation failed. </p> </li> </ul>
1296
1270
  * @public
1297
1271
  */
1298
1272
  status?: LandingZoneOperationStatus | undefined;
@@ -1404,8 +1378,7 @@ export interface CreateLandingZoneInput {
1404
1378
  */
1405
1379
  version: string | undefined;
1406
1380
  /**
1407
- * <p>The manifest JSON file is a text file that describes your Amazon Web Services resources. For examples, review
1408
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch">Launch your landing zone</a>. </p>
1381
+ * <p>The manifest JSON file is a text file that describes your Amazon Web Services resources. For examples, review <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch">Launch your landing zone</a>. </p>
1409
1382
  * @public
1410
1383
  */
1411
1384
  manifest: __DocumentType | undefined;
@@ -1425,8 +1398,7 @@ export interface CreateLandingZoneOutput {
1425
1398
  */
1426
1399
  arn: string | undefined;
1427
1400
  /**
1428
- * <p>A unique identifier assigned to a <code>CreateLandingZone</code> operation. You can use this
1429
- * identifier as an input of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
1401
+ * <p>A unique identifier assigned to a <code>CreateLandingZone</code> operation. You can use this identifier as an input of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
1430
1402
  * @public
1431
1403
  */
1432
1404
  operationIdentifier: string | undefined;
@@ -1446,8 +1418,7 @@ export interface DeleteLandingZoneInput {
1446
1418
  */
1447
1419
  export interface DeleteLandingZoneOutput {
1448
1420
  /**
1449
- * <p>&gt;A unique identifier assigned to a <code>DeleteLandingZone</code> operation. You can use this
1450
- * identifier as an input parameter of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
1421
+ * <p>&gt;A unique identifier assigned to a <code>DeleteLandingZone</code> operation. You can use this identifier as an input parameter of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
1451
1422
  * @public
1452
1423
  */
1453
1424
  operationIdentifier: string | undefined;
@@ -1475,27 +1446,12 @@ export declare const LandingZoneDriftStatus: {
1475
1446
  */
1476
1447
  export type LandingZoneDriftStatus = (typeof LandingZoneDriftStatus)[keyof typeof LandingZoneDriftStatus];
1477
1448
  /**
1478
- * <p>The drift status summary of the landing zone. </p>
1479
- * <p>If the landing zone differs from the expected configuration, it is defined to be in a state of
1480
- * drift. You can repair this drift by resetting the landing zone.</p>
1449
+ * <p>The drift status summary of the landing zone. </p> <p>If the landing zone differs from the expected configuration, it is defined to be in a state of drift. You can repair this drift by resetting the landing zone.</p>
1481
1450
  * @public
1482
1451
  */
1483
1452
  export interface LandingZoneDriftStatusSummary {
1484
1453
  /**
1485
- * <p>The drift status of the landing zone. </p>
1486
- * <p>Valid values:</p>
1487
- * <ul>
1488
- * <li>
1489
- * <p>
1490
- * <code>DRIFTED</code>: The landing zone deployed in this configuration does not match the
1491
- * configuration that Amazon Web Services Control Tower expected. </p>
1492
- * </li>
1493
- * <li>
1494
- * <p>
1495
- * <code>IN_SYNC</code>: The landing zone deployed in this configuration matches the
1496
- * configuration that Amazon Web Services Control Tower expected. </p>
1497
- * </li>
1498
- * </ul>
1454
+ * <p>The drift status of the landing zone. </p> <p>Valid values:</p> <ul> <li> <p> <code>DRIFTED</code>: The landing zone deployed in this configuration does not match the configuration that Amazon Web Services Control Tower expected. </p> </li> <li> <p> <code>IN_SYNC</code>: The landing zone deployed in this configuration matches the configuration that Amazon Web Services Control Tower expected. </p> </li> </ul>
1499
1455
  * @public
1500
1456
  */
1501
1457
  status?: LandingZoneDriftStatus | undefined;
@@ -1615,8 +1571,7 @@ export interface ResetLandingZoneInput {
1615
1571
  */
1616
1572
  export interface ResetLandingZoneOutput {
1617
1573
  /**
1618
- * <p>A unique identifier assigned to a <code>ResetLandingZone</code> operation. You can use this
1619
- * identifier as an input parameter of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
1574
+ * <p>A unique identifier assigned to a <code>ResetLandingZone</code> operation. You can use this identifier as an input parameter of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
1620
1575
  * @public
1621
1576
  */
1622
1577
  operationIdentifier: string | undefined;
@@ -1631,8 +1586,7 @@ export interface UpdateLandingZoneInput {
1631
1586
  */
1632
1587
  version: string | undefined;
1633
1588
  /**
1634
- * <p>The manifest file (JSON) is a text file that describes your Amazon Web Services resources. For an example, review
1635
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch">Launch your landing zone</a>. The example manifest file contains each of the available parameters. The schema for the landing zone's JSON manifest file is not published, by design.</p>
1589
+ * <p>The manifest file (JSON) is a text file that describes your Amazon Web Services resources. For an example, review <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch">Launch your landing zone</a>. The example manifest file contains each of the available parameters. The schema for the landing zone's JSON manifest file is not published, by design.</p>
1636
1590
  * @public
1637
1591
  */
1638
1592
  manifest: __DocumentType | undefined;
@@ -1647,8 +1601,7 @@ export interface UpdateLandingZoneInput {
1647
1601
  */
1648
1602
  export interface UpdateLandingZoneOutput {
1649
1603
  /**
1650
- * <p>A unique identifier assigned to a <code>UpdateLandingZone</code> operation. You can use this
1651
- * identifier as an input of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
1604
+ * <p>A unique identifier assigned to a <code>UpdateLandingZone</code> operation. You can use this identifier as an input of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
1652
1605
  * @public
1653
1606
  */
1654
1607
  operationIdentifier: string | undefined;
@@ -195,6 +195,21 @@ export interface EnableBaselineOutput {
195
195
  export interface GetEnabledBaselineInput {
196
196
  enabledBaselineIdentifier: string | undefined;
197
197
  }
198
+ export declare const EnabledBaselineDriftStatus: {
199
+ readonly DRIFTED: "DRIFTED";
200
+ readonly IN_SYNC: "IN_SYNC";
201
+ };
202
+ export type EnabledBaselineDriftStatus =
203
+ (typeof EnabledBaselineDriftStatus)[keyof typeof EnabledBaselineDriftStatus];
204
+ export interface EnabledBaselineInheritanceDrift {
205
+ status?: EnabledBaselineDriftStatus | undefined;
206
+ }
207
+ export interface EnabledBaselineDriftTypes {
208
+ inheritance?: EnabledBaselineInheritanceDrift | undefined;
209
+ }
210
+ export interface EnabledBaselineDriftStatusSummary {
211
+ types?: EnabledBaselineDriftTypes | undefined;
212
+ }
198
213
  export interface EnabledBaselineParameterSummary {
199
214
  key: string | undefined;
200
215
  value: __DocumentType | undefined;
@@ -214,6 +229,7 @@ export interface EnabledBaselineDetails {
214
229
  arn: string | undefined;
215
230
  baselineIdentifier: string | undefined;
216
231
  baselineVersion?: string | undefined;
232
+ driftStatusSummary?: EnabledBaselineDriftStatusSummary | undefined;
217
233
  targetIdentifier: string | undefined;
218
234
  parentIdentifier?: string | undefined;
219
235
  statusSummary: EnablementStatusSummary | undefined;
@@ -226,6 +242,8 @@ export interface EnabledBaselineFilter {
226
242
  targetIdentifiers?: string[] | undefined;
227
243
  baselineIdentifiers?: string[] | undefined;
228
244
  parentIdentifiers?: string[] | undefined;
245
+ statuses?: EnablementStatus[] | undefined;
246
+ inheritanceDriftStatuses?: EnabledBaselineDriftStatus[] | undefined;
229
247
  }
230
248
  export interface ListEnabledBaselinesInput {
231
249
  filter?: EnabledBaselineFilter | undefined;
@@ -237,6 +255,7 @@ export interface EnabledBaselineSummary {
237
255
  arn: string | undefined;
238
256
  baselineIdentifier: string | undefined;
239
257
  baselineVersion?: string | undefined;
258
+ driftStatusSummary?: EnabledBaselineDriftStatusSummary | undefined;
240
259
  targetIdentifier: string | undefined;
241
260
  parentIdentifier?: string | undefined;
242
261
  statusSummary: EnablementStatusSummary | 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.808.0",
4
+ "version": "3.809.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",