@aws-sdk/client-controltower 3.577.0 → 3.580.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 (39) hide show
  1. package/README.md +66 -2
  2. package/dist-cjs/index.js +95 -13
  3. package/dist-es/ControlTower.js +2 -0
  4. package/dist-es/commands/ListControlOperationsCommand.js +24 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_0.js +10 -10
  7. package/dist-es/pagination/ListControlOperationsPaginator.js +4 -0
  8. package/dist-es/pagination/index.js +1 -0
  9. package/dist-es/protocols/Aws_restJson1.js +56 -0
  10. package/dist-types/ControlTower.d.ts +68 -3
  11. package/dist-types/ControlTowerClient.d.ts +62 -5
  12. package/dist-types/commands/DisableBaselineCommand.d.ts +3 -1
  13. package/dist-types/commands/EnableBaselineCommand.d.ts +3 -1
  14. package/dist-types/commands/GetBaselineCommand.d.ts +3 -1
  15. package/dist-types/commands/GetBaselineOperationCommand.d.ts +3 -1
  16. package/dist-types/commands/GetControlOperationCommand.d.ts +6 -2
  17. package/dist-types/commands/GetLandingZoneOperationCommand.d.ts +1 -1
  18. package/dist-types/commands/ListBaselinesCommand.d.ts +3 -1
  19. package/dist-types/commands/ListControlOperationsCommand.d.ts +102 -0
  20. package/dist-types/commands/ListEnabledBaselinesCommand.d.ts +3 -1
  21. package/dist-types/commands/ListEnabledControlsCommand.d.ts +13 -2
  22. package/dist-types/commands/ResetEnabledBaselineCommand.d.ts +3 -1
  23. package/dist-types/commands/UpdateEnabledBaselineCommand.d.ts +3 -1
  24. package/dist-types/commands/index.d.ts +1 -0
  25. package/dist-types/index.d.ts +59 -3
  26. package/dist-types/models/models_0.d.ts +358 -195
  27. package/dist-types/pagination/ListControlOperationsPaginator.d.ts +7 -0
  28. package/dist-types/pagination/index.d.ts +1 -0
  29. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  30. package/dist-types/ts3.4/ControlTower.d.ts +19 -0
  31. package/dist-types/ts3.4/ControlTowerClient.d.ts +6 -0
  32. package/dist-types/ts3.4/commands/ListControlOperationsCommand.d.ts +39 -0
  33. package/dist-types/ts3.4/commands/ListEnabledControlsCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +98 -61
  36. package/dist-types/ts3.4/pagination/ListControlOperationsPaginator.d.ts +11 -0
  37. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  38. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  39. package/package.json +1 -1
@@ -162,115 +162,272 @@ export interface ListBaselinesOutput {
162
162
  nextToken?: string;
163
163
  }
164
164
  /**
165
- * <p>Updating or deleting the resource can cause an inconsistent state.</p>
166
165
  * @public
167
166
  */
168
- export declare class ConflictException extends __BaseException {
169
- readonly name: "ConflictException";
170
- readonly $fault: "client";
167
+ export interface GetControlOperationInput {
171
168
  /**
172
- * @internal
169
+ * <p>The ID of the asynchronous operation, which is used to track status. The operation is
170
+ * available for 90 days.</p>
171
+ * @public
173
172
  */
174
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
173
+ operationIdentifier: string | undefined;
175
174
  }
176
175
  /**
177
176
  * @public
177
+ * @enum
178
178
  */
179
- export interface DisableControlInput {
179
+ export declare const ControlOperationType: {
180
+ readonly DISABLE_CONTROL: "DISABLE_CONTROL";
181
+ readonly ENABLE_CONTROL: "ENABLE_CONTROL";
182
+ readonly UPDATE_ENABLED_CONTROL: "UPDATE_ENABLED_CONTROL";
183
+ };
184
+ /**
185
+ * @public
186
+ */
187
+ export type ControlOperationType = (typeof ControlOperationType)[keyof typeof ControlOperationType];
188
+ /**
189
+ * @public
190
+ * @enum
191
+ */
192
+ export declare const ControlOperationStatus: {
193
+ readonly FAILED: "FAILED";
194
+ readonly IN_PROGRESS: "IN_PROGRESS";
195
+ readonly SUCCEEDED: "SUCCEEDED";
196
+ };
197
+ /**
198
+ * @public
199
+ */
200
+ export type ControlOperationStatus = (typeof ControlOperationStatus)[keyof typeof ControlOperationStatus];
201
+ /**
202
+ * <p>An operation performed by the control.</p>
203
+ * @public
204
+ */
205
+ export interface ControlOperation {
180
206
  /**
181
- * <p>The ARN of the control. Only <b>Strongly recommended</b> and
182
- * <b>Elective</b> controls are permitted, with the exception of the
183
- * <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>
207
+ * <p>One of <code>ENABLE_CONTROL</code> or <code>DISABLE_CONTROL</code>.</p>
184
208
  * @public
185
209
  */
186
- controlIdentifier: string | undefined;
210
+ operationType?: ControlOperationType;
187
211
  /**
188
- * <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>
212
+ * <p>The time that the operation began.</p>
189
213
  * @public
190
214
  */
191
- targetIdentifier: string | undefined;
215
+ startTime?: Date;
216
+ /**
217
+ * <p>The time that the operation finished.</p>
218
+ * @public
219
+ */
220
+ endTime?: Date;
221
+ /**
222
+ * <p>One of <code>IN_PROGRESS</code>, <code>SUCEEDED</code>, or <code>FAILED</code>.</p>
223
+ * @public
224
+ */
225
+ status?: ControlOperationStatus;
226
+ /**
227
+ * <p>If the operation result is <code>FAILED</code>, this string contains a message explaining
228
+ * why the operation failed.</p>
229
+ * @public
230
+ */
231
+ statusMessage?: string;
232
+ /**
233
+ * <p>The identifier of the specified operation.</p>
234
+ * @public
235
+ */
236
+ operationIdentifier?: string;
237
+ /**
238
+ * <p>The <code>controlIdentifier</code> of the control for the operation.</p>
239
+ * @public
240
+ */
241
+ controlIdentifier?: string;
242
+ /**
243
+ * <p>The target upon which the control operation is working.</p>
244
+ * @public
245
+ */
246
+ targetIdentifier?: string;
247
+ /**
248
+ * <p>The <code>controlIdentifier</code> of the enabled control.</p>
249
+ * @public
250
+ */
251
+ enabledControlIdentifier?: string;
192
252
  }
193
253
  /**
194
254
  * @public
195
255
  */
196
- export interface DisableControlOutput {
256
+ export interface GetControlOperationOutput {
197
257
  /**
198
- * <p>The ID of the asynchronous operation, which is used to track status. The operation is
199
- * available for 90 days.</p>
258
+ * <p>An operation performed by the control.</p>
200
259
  * @public
201
260
  */
202
- operationIdentifier: string | undefined;
261
+ controlOperation: ControlOperation | undefined;
203
262
  }
204
263
  /**
205
- * <p>The request would cause a service quota to be exceeded. The limit is 10 concurrent operations.</p>
264
+ * <p>A filter object that lets you call <code>ListCOntrolOperations</code> with a specific filter.</p>
206
265
  * @public
207
266
  */
208
- export declare class ServiceQuotaExceededException extends __BaseException {
209
- readonly name: "ServiceQuotaExceededException";
210
- readonly $fault: "client";
267
+ export interface ControlOperationFilter {
211
268
  /**
212
- * @internal
269
+ * <p>The set of <code>controlIdentifier</code> returned by the filter.</p>
270
+ * @public
213
271
  */
214
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
272
+ controlIdentifiers?: string[];
273
+ /**
274
+ * <p>The set of <code>targetIdentifier</code> objects returned by the filter.</p>
275
+ * @public
276
+ */
277
+ targetIdentifiers?: string[];
278
+ /**
279
+ * <p>The set <code>controlIdentifier</code> of enabled controls selected by the filter.</p>
280
+ * @public
281
+ */
282
+ enabledControlIdentifiers?: string[];
283
+ /**
284
+ * <p>Lists the status of control operations.</p>
285
+ * @public
286
+ */
287
+ statuses?: ControlOperationStatus[];
288
+ /**
289
+ * <p>The set of <code>ControlOperation</code> objects returned by the filter.</p>
290
+ * @public
291
+ */
292
+ controlOperationTypes?: ControlOperationType[];
215
293
  }
216
294
  /**
217
- * <p>A key/value pair, where <code>Key</code> is of type <code>String</code> and <code>Value</code> is of type <code>Document</code>.</p>
218
295
  * @public
219
296
  */
220
- export interface EnabledControlParameter {
297
+ export interface ListControlOperationsInput {
221
298
  /**
222
- * <p>The key of a key/value pair.</p>
299
+ * <p>An input filter for the <code>ListControlOperations</code> API that lets you select the types of control operations to view.</p>
223
300
  * @public
224
301
  */
225
- key: string | undefined;
302
+ filter?: ControlOperationFilter;
226
303
  /**
227
- * <p>The value of a key/value pair.</p>
304
+ * <p>A pagination token.</p>
228
305
  * @public
229
306
  */
230
- value: __DocumentType | undefined;
307
+ nextToken?: string;
308
+ /**
309
+ * <p>The maximum number of results to be shown.</p>
310
+ * @public
311
+ */
312
+ maxResults?: number;
231
313
  }
232
314
  /**
315
+ * <p>A summary of information about the specified control operation.</p>
233
316
  * @public
234
317
  */
235
- export interface EnableControlInput {
318
+ export interface ControlOperationSummary {
236
319
  /**
237
- * <p>The ARN of the control. Only <b>Strongly recommended</b> and
238
- * <b>Elective</b> controls are permitted, with the exception of the
239
- * <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>
320
+ * <p>The type of operation.</p>
240
321
  * @public
241
322
  */
242
- controlIdentifier: string | undefined;
323
+ operationType?: ControlOperationType;
243
324
  /**
244
- * <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>
325
+ * <p>The time at which a control operation began.</p>
245
326
  * @public
246
327
  */
247
- targetIdentifier: string | undefined;
328
+ startTime?: Date;
248
329
  /**
249
- * <p>Tags to be applied to the <code>EnabledControl</code> resource.</p>
330
+ * <p>The time at which the control operation was completed.</p>
250
331
  * @public
251
332
  */
252
- tags?: Record<string, string>;
333
+ endTime?: Date;
253
334
  /**
254
- * <p>A list of input parameter values, which are specified to configure the control when you enable it.</p>
335
+ * <p>The status of the specified control operation.</p>
255
336
  * @public
256
337
  */
257
- parameters?: EnabledControlParameter[];
338
+ status?: ControlOperationStatus;
339
+ /**
340
+ * <p>A speficic message displayed as part of the control status.</p>
341
+ * @public
342
+ */
343
+ statusMessage?: string;
344
+ /**
345
+ * <p>The unique identifier of a control operation.</p>
346
+ * @public
347
+ */
348
+ operationIdentifier?: string;
349
+ /**
350
+ * <p>The <code>controlIdentifier</code> of a control.</p>
351
+ * @public
352
+ */
353
+ controlIdentifier?: string;
354
+ /**
355
+ * <p>The unique identifier of the target of a control operation.</p>
356
+ * @public
357
+ */
358
+ targetIdentifier?: string;
359
+ /**
360
+ * <p>The <code>controlIdentifier</code> of an enabled control.</p>
361
+ * @public
362
+ */
363
+ enabledControlIdentifier?: string;
258
364
  }
259
365
  /**
260
366
  * @public
261
367
  */
262
- export interface EnableControlOutput {
368
+ export interface ListControlOperationsOutput {
369
+ /**
370
+ * <p>Returns a list of output from control operations. PLACEHOLDER </p>
371
+ * @public
372
+ */
373
+ controlOperations: ControlOperationSummary[] | undefined;
374
+ /**
375
+ * <p>A pagination token.</p>
376
+ * @public
377
+ */
378
+ nextToken?: string;
379
+ }
380
+ /**
381
+ * <p>Updating or deleting the resource can cause an inconsistent state.</p>
382
+ * @public
383
+ */
384
+ export declare class ConflictException extends __BaseException {
385
+ readonly name: "ConflictException";
386
+ readonly $fault: "client";
387
+ /**
388
+ * @internal
389
+ */
390
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
391
+ }
392
+ /**
393
+ * @public
394
+ */
395
+ export interface DisableControlInput {
396
+ /**
397
+ * <p>The ARN of the control. Only <b>Strongly recommended</b> and
398
+ * <b>Elective</b> controls are permitted, with the exception of the
399
+ * <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>
400
+ * @public
401
+ */
402
+ controlIdentifier: string | undefined;
403
+ /**
404
+ * <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>
405
+ * @public
406
+ */
407
+ targetIdentifier: string | undefined;
408
+ }
409
+ /**
410
+ * @public
411
+ */
412
+ export interface DisableControlOutput {
263
413
  /**
264
414
  * <p>The ID of the asynchronous operation, which is used to track status. The operation is
265
415
  * available for 90 days.</p>
266
416
  * @public
267
417
  */
268
418
  operationIdentifier: string | undefined;
419
+ }
420
+ /**
421
+ * <p>The request would cause a service quota to be exceeded. The limit is 10 concurrent operations.</p>
422
+ * @public
423
+ */
424
+ export declare class ServiceQuotaExceededException extends __BaseException {
425
+ readonly name: "ServiceQuotaExceededException";
426
+ readonly $fault: "client";
269
427
  /**
270
- * <p>The ARN of the <code>EnabledControl</code> resource.</p>
271
- * @public
428
+ * @internal
272
429
  */
273
- arn?: string;
430
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
274
431
  }
275
432
  /**
276
433
  * @public
@@ -685,83 +842,63 @@ export interface UpdateEnabledBaselineOutput {
685
842
  operationIdentifier: string | undefined;
686
843
  }
687
844
  /**
845
+ * <p>A key/value pair, where <code>Key</code> is of type <code>String</code> and <code>Value</code> is of type <code>Document</code>.</p>
688
846
  * @public
689
847
  */
690
- export interface GetControlOperationInput {
848
+ export interface EnabledControlParameter {
691
849
  /**
692
- * <p>The ID of the asynchronous operation, which is used to track status. The operation is
693
- * available for 90 days.</p>
850
+ * <p>The key of a key/value pair.</p>
694
851
  * @public
695
852
  */
696
- operationIdentifier: string | undefined;
853
+ key: string | undefined;
854
+ /**
855
+ * <p>The value of a key/value pair.</p>
856
+ * @public
857
+ */
858
+ value: __DocumentType | undefined;
697
859
  }
698
- /**
699
- * @public
700
- * @enum
701
- */
702
- export declare const ControlOperationType: {
703
- readonly DISABLE_CONTROL: "DISABLE_CONTROL";
704
- readonly ENABLE_CONTROL: "ENABLE_CONTROL";
705
- readonly UPDATE_ENABLED_CONTROL: "UPDATE_ENABLED_CONTROL";
706
- };
707
860
  /**
708
861
  * @public
709
862
  */
710
- export type ControlOperationType = (typeof ControlOperationType)[keyof typeof ControlOperationType];
711
- /**
712
- * @public
713
- * @enum
714
- */
715
- export declare const ControlOperationStatus: {
716
- readonly FAILED: "FAILED";
717
- readonly IN_PROGRESS: "IN_PROGRESS";
718
- readonly SUCCEEDED: "SUCCEEDED";
719
- };
720
- /**
721
- * @public
722
- */
723
- export type ControlOperationStatus = (typeof ControlOperationStatus)[keyof typeof ControlOperationStatus];
724
- /**
725
- * <p>An operation performed by the control.</p>
726
- * @public
727
- */
728
- export interface ControlOperation {
729
- /**
730
- * <p>One of <code>ENABLE_CONTROL</code> or <code>DISABLE_CONTROL</code>.</p>
731
- * @public
732
- */
733
- operationType?: ControlOperationType;
863
+ export interface EnableControlInput {
734
864
  /**
735
- * <p>The time that the operation began.</p>
865
+ * <p>The ARN of the control. Only <b>Strongly recommended</b> and
866
+ * <b>Elective</b> controls are permitted, with the exception of the
867
+ * <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>
736
868
  * @public
737
869
  */
738
- startTime?: Date;
870
+ controlIdentifier: string | undefined;
739
871
  /**
740
- * <p>The time that the operation finished.</p>
872
+ * <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>
741
873
  * @public
742
874
  */
743
- endTime?: Date;
875
+ targetIdentifier: string | undefined;
744
876
  /**
745
- * <p>One of <code>IN_PROGRESS</code>, <code>SUCEEDED</code>, or <code>FAILED</code>.</p>
877
+ * <p>Tags to be applied to the <code>EnabledControl</code> resource.</p>
746
878
  * @public
747
879
  */
748
- status?: ControlOperationStatus;
880
+ tags?: Record<string, string>;
749
881
  /**
750
- * <p>If the operation result is <code>FAILED</code>, this string contains a message explaining
751
- * why the operation failed.</p>
882
+ * <p>A list of input parameter values, which are specified to configure the control when you enable it.</p>
752
883
  * @public
753
884
  */
754
- statusMessage?: string;
885
+ parameters?: EnabledControlParameter[];
755
886
  }
756
887
  /**
757
888
  * @public
758
889
  */
759
- export interface GetControlOperationOutput {
890
+ export interface EnableControlOutput {
760
891
  /**
761
- * <p>An operation performed by the control.</p>
892
+ * <p>The ID of the asynchronous operation, which is used to track status. The operation is
893
+ * available for 90 days.</p>
762
894
  * @public
763
895
  */
764
- controlOperation: ControlOperation | undefined;
896
+ operationIdentifier: string | undefined;
897
+ /**
898
+ * <p>The ARN of the <code>EnabledControl</code> resource.</p>
899
+ * @public
900
+ */
901
+ arn?: string;
765
902
  }
766
903
  /**
767
904
  * @public
@@ -905,6 +1042,129 @@ export interface GetEnabledControlOutput {
905
1042
  */
906
1043
  enabledControlDetails: EnabledControlDetails | undefined;
907
1044
  }
1045
+ /**
1046
+ * <p>A structure that returns a set of control identifiers, the control status for each control in the set, and the drift status for each control in the set.</p>
1047
+ * @public
1048
+ */
1049
+ export interface EnabledControlFilter {
1050
+ /**
1051
+ * <p>The set of <code>controlIdentifier</code> returned by the filter. </p>
1052
+ * @public
1053
+ */
1054
+ controlIdentifiers?: string[];
1055
+ /**
1056
+ * <p>A list of <code>EnablementStatus</code> items.</p>
1057
+ * @public
1058
+ */
1059
+ statuses?: EnablementStatus[];
1060
+ /**
1061
+ * <p>A list of <code>DriftStatus</code> items.</p>
1062
+ * @public
1063
+ */
1064
+ driftStatuses?: DriftStatus[];
1065
+ }
1066
+ /**
1067
+ * @public
1068
+ */
1069
+ export interface ListEnabledControlsInput {
1070
+ /**
1071
+ * <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>
1072
+ * @public
1073
+ */
1074
+ targetIdentifier?: string;
1075
+ /**
1076
+ * <p>The token to continue the list from a previous API call with the same parameters.</p>
1077
+ * @public
1078
+ */
1079
+ nextToken?: string;
1080
+ /**
1081
+ * <p>How many results to return per API call.</p>
1082
+ * @public
1083
+ */
1084
+ maxResults?: number;
1085
+ /**
1086
+ * <p>An input filter for the <code>ListCEnabledControls</code> API that lets you select the types of control operations to view.</p>
1087
+ * @public
1088
+ */
1089
+ filter?: EnabledControlFilter;
1090
+ }
1091
+ /**
1092
+ * <p>Returns a summary of information about an enabled control.</p>
1093
+ * @public
1094
+ */
1095
+ export interface EnabledControlSummary {
1096
+ /**
1097
+ * <p>The <code>controlIdentifier</code> of the enabled control.</p>
1098
+ * @public
1099
+ */
1100
+ controlIdentifier?: string;
1101
+ /**
1102
+ * <p>The ARN of the enabled control.</p>
1103
+ * @public
1104
+ */
1105
+ arn?: string;
1106
+ /**
1107
+ * <p>The ARN of the organizational unit.</p>
1108
+ * @public
1109
+ */
1110
+ targetIdentifier?: string;
1111
+ /**
1112
+ * <p>A short description of the status of the enabled control.</p>
1113
+ * @public
1114
+ */
1115
+ statusSummary?: EnablementStatusSummary;
1116
+ /**
1117
+ * <p>The drift status of the enabled control.</p>
1118
+ * @public
1119
+ */
1120
+ driftStatusSummary?: DriftStatusSummary;
1121
+ }
1122
+ /**
1123
+ * @public
1124
+ */
1125
+ export interface ListEnabledControlsOutput {
1126
+ /**
1127
+ * <p>Lists the controls enabled by Amazon Web Services Control Tower on the specified organizational unit and
1128
+ * the accounts it contains.</p>
1129
+ * @public
1130
+ */
1131
+ enabledControls: EnabledControlSummary[] | undefined;
1132
+ /**
1133
+ * <p>Retrieves the next page of results. If the string is empty, the response is the
1134
+ * end of the results.</p>
1135
+ * @public
1136
+ */
1137
+ nextToken?: string;
1138
+ }
1139
+ /**
1140
+ * @public
1141
+ */
1142
+ export interface UpdateEnabledControlInput {
1143
+ /**
1144
+ * <p>A key/value pair, where <code>Key</code> is of type <code>String</code> and <code>Value</code> is of type <code>Document</code>.</p>
1145
+ * @public
1146
+ */
1147
+ parameters: EnabledControlParameter[] | undefined;
1148
+ /**
1149
+ * <p>
1150
+ * The ARN of the enabled control that will be updated.
1151
+ * </p>
1152
+ * @public
1153
+ */
1154
+ enabledControlIdentifier: string | undefined;
1155
+ }
1156
+ /**
1157
+ * @public
1158
+ */
1159
+ export interface UpdateEnabledControlOutput {
1160
+ /**
1161
+ * <p>
1162
+ * The operation identifier for this <code>UpdateEnabledControl</code> operation.
1163
+ * </p>
1164
+ * @public
1165
+ */
1166
+ operationIdentifier: string | undefined;
1167
+ }
908
1168
  /**
909
1169
  * @public
910
1170
  */
@@ -915,8 +1175,8 @@ export interface CreateLandingZoneInput {
915
1175
  */
916
1176
  version: string | undefined;
917
1177
  /**
918
- * <p>The manifest.yaml file is a text file that describes your Amazon Web Services resources. For examples, review
919
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/the-manifest-file">The manifest file</a>. </p>
1178
+ * <p>The manifest JSON file is a text file that describes your Amazon Web Services resources. For examples, review
1179
+ * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch">Launch your landing zone</a>. </p>
920
1180
  * @public
921
1181
  */
922
1182
  manifest: __DocumentType | undefined;
@@ -1035,7 +1295,7 @@ export interface LandingZoneDetail {
1035
1295
  */
1036
1296
  version: string | undefined;
1037
1297
  /**
1038
- * <p>The landing zone <code>manifest.yaml</code> text file that specifies the landing zone configurations. </p>
1298
+ * <p>The landing zone manifest JSON text file that specifies the landing zone configurations. </p>
1039
1299
  * @public
1040
1300
  */
1041
1301
  manifest: __DocumentType | undefined;
@@ -1253,8 +1513,8 @@ export interface UpdateLandingZoneInput {
1253
1513
  */
1254
1514
  version: string | undefined;
1255
1515
  /**
1256
- * <p>The <code>manifest.yaml</code> file is a text file that describes your Amazon Web Services resources. For examples, review
1257
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/the-manifest-file">The manifest file</a>.</p>
1516
+ * <p>The manifest JSON file is a text file that describes your Amazon Web Services resources. For examples, review
1517
+ * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch">Launch your landing zone</a>. </p>
1258
1518
  * @public
1259
1519
  */
1260
1520
  manifest: __DocumentType | undefined;
@@ -1275,74 +1535,6 @@ export interface UpdateLandingZoneOutput {
1275
1535
  */
1276
1536
  operationIdentifier: string | undefined;
1277
1537
  }
1278
- /**
1279
- * @public
1280
- */
1281
- export interface ListEnabledControlsInput {
1282
- /**
1283
- * <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>
1284
- * @public
1285
- */
1286
- targetIdentifier: string | undefined;
1287
- /**
1288
- * <p>The token to continue the list from a previous API call with the same parameters.</p>
1289
- * @public
1290
- */
1291
- nextToken?: string;
1292
- /**
1293
- * <p>How many results to return per API call.</p>
1294
- * @public
1295
- */
1296
- maxResults?: number;
1297
- }
1298
- /**
1299
- * <p>Returns a summary of information about an enabled control.</p>
1300
- * @public
1301
- */
1302
- export interface EnabledControlSummary {
1303
- /**
1304
- * <p>The <code>controlIdentifier</code> of the enabled control.</p>
1305
- * @public
1306
- */
1307
- controlIdentifier?: string;
1308
- /**
1309
- * <p>The ARN of the enabled control.</p>
1310
- * @public
1311
- */
1312
- arn?: string;
1313
- /**
1314
- * <p>The ARN of the organizational unit.</p>
1315
- * @public
1316
- */
1317
- targetIdentifier?: string;
1318
- /**
1319
- * <p>A short description of the status of the enabled control.</p>
1320
- * @public
1321
- */
1322
- statusSummary?: EnablementStatusSummary;
1323
- /**
1324
- * <p>The drift status of the enabled control.</p>
1325
- * @public
1326
- */
1327
- driftStatusSummary?: DriftStatusSummary;
1328
- }
1329
- /**
1330
- * @public
1331
- */
1332
- export interface ListEnabledControlsOutput {
1333
- /**
1334
- * <p>Lists the controls enabled by Amazon Web Services Control Tower on the specified organizational unit and
1335
- * the accounts it contains.</p>
1336
- * @public
1337
- */
1338
- enabledControls: EnabledControlSummary[] | undefined;
1339
- /**
1340
- * <p>Retrieves the next page of results. If the string is empty, the response is the
1341
- * end of the results.</p>
1342
- * @public
1343
- */
1344
- nextToken?: string;
1345
- }
1346
1538
  /**
1347
1539
  * @public
1348
1540
  */
@@ -1403,32 +1595,3 @@ export interface UntagResourceInput {
1403
1595
  */
1404
1596
  export interface UntagResourceOutput {
1405
1597
  }
1406
- /**
1407
- * @public
1408
- */
1409
- export interface UpdateEnabledControlInput {
1410
- /**
1411
- * <p>A key/value pair, where <code>Key</code> is of type <code>String</code> and <code>Value</code> is of type <code>Document</code>.</p>
1412
- * @public
1413
- */
1414
- parameters: EnabledControlParameter[] | undefined;
1415
- /**
1416
- * <p>
1417
- * The ARN of the enabled control that will be updated.
1418
- * </p>
1419
- * @public
1420
- */
1421
- enabledControlIdentifier: string | undefined;
1422
- }
1423
- /**
1424
- * @public
1425
- */
1426
- export interface UpdateEnabledControlOutput {
1427
- /**
1428
- * <p>
1429
- * The operation identifier for this <code>UpdateEnabledControl</code> operation.
1430
- * </p>
1431
- * @public
1432
- */
1433
- operationIdentifier: string | undefined;
1434
- }