@aws-sdk/client-controltower 3.600.0 → 3.606.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 +161 -16
  2. package/dist-cjs/index.js +83 -25
  3. package/dist-es/ControlTower.js +2 -0
  4. package/dist-es/commands/ListLandingZoneOperationsCommand.js +24 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_0.js +20 -20
  7. package/dist-es/pagination/ListLandingZoneOperationsPaginator.js +4 -0
  8. package/dist-es/pagination/index.js +1 -0
  9. package/dist-es/protocols/Aws_restJson1.js +31 -0
  10. package/dist-types/ControlTower.d.ts +161 -16
  11. package/dist-types/ControlTowerClient.d.ts +156 -18
  12. package/dist-types/commands/DisableControlCommand.d.ts +3 -3
  13. package/dist-types/commands/EnableControlCommand.d.ts +2 -2
  14. package/dist-types/commands/GetControlOperationCommand.d.ts +2 -2
  15. package/dist-types/commands/GetEnabledControlCommand.d.ts +2 -2
  16. package/dist-types/commands/GetLandingZoneOperationCommand.d.ts +2 -1
  17. package/dist-types/commands/ListControlOperationsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListEnabledControlsCommand.d.ts +2 -2
  19. package/dist-types/commands/ListLandingZoneOperationsCommand.d.ts +88 -0
  20. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
  21. package/dist-types/commands/ResetLandingZoneCommand.d.ts +4 -1
  22. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  23. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  24. package/dist-types/commands/UpdateEnabledControlCommand.d.ts +5 -5
  25. package/dist-types/commands/index.d.ts +1 -0
  26. package/dist-types/index.d.ts +153 -16
  27. package/dist-types/models/models_0.d.ts +294 -217
  28. package/dist-types/pagination/ListLandingZoneOperationsPaginator.d.ts +7 -0
  29. package/dist-types/pagination/index.d.ts +1 -0
  30. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  31. package/dist-types/ts3.4/ControlTower.d.ts +18 -0
  32. package/dist-types/ts3.4/ControlTowerClient.d.ts +6 -0
  33. package/dist-types/ts3.4/commands/ListLandingZoneOperationsCommand.d.ts +40 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +82 -63
  36. package/dist-types/ts3.4/pagination/ListLandingZoneOperationsPaginator.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 +3 -3
@@ -16,6 +16,7 @@ import { ListBaselinesCommandInput, ListBaselinesCommandOutput } from "./command
16
16
  import { ListControlOperationsCommandInput, ListControlOperationsCommandOutput } from "./commands/ListControlOperationsCommand";
17
17
  import { ListEnabledBaselinesCommandInput, ListEnabledBaselinesCommandOutput } from "./commands/ListEnabledBaselinesCommand";
18
18
  import { ListEnabledControlsCommandInput, ListEnabledControlsCommandOutput } from "./commands/ListEnabledControlsCommand";
19
+ import { ListLandingZoneOperationsCommandInput, ListLandingZoneOperationsCommandOutput } from "./commands/ListLandingZoneOperationsCommand";
19
20
  import { ListLandingZonesCommandInput, ListLandingZonesCommandOutput } from "./commands/ListLandingZonesCommand";
20
21
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
21
22
  import { ResetEnabledBaselineCommandInput, ResetEnabledBaselineCommandOutput } from "./commands/ResetEnabledBaselineCommand";
@@ -133,6 +134,13 @@ export interface ControlTower {
133
134
  listEnabledControls(args: ListEnabledControlsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnabledControlsCommandOutput>;
134
135
  listEnabledControls(args: ListEnabledControlsCommandInput, cb: (err: any, data?: ListEnabledControlsCommandOutput) => void): void;
135
136
  listEnabledControls(args: ListEnabledControlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnabledControlsCommandOutput) => void): void;
137
+ /**
138
+ * @see {@link ListLandingZoneOperationsCommand}
139
+ */
140
+ listLandingZoneOperations(): Promise<ListLandingZoneOperationsCommandOutput>;
141
+ listLandingZoneOperations(args: ListLandingZoneOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListLandingZoneOperationsCommandOutput>;
142
+ listLandingZoneOperations(args: ListLandingZoneOperationsCommandInput, cb: (err: any, data?: ListLandingZoneOperationsCommandOutput) => void): void;
143
+ listLandingZoneOperations(args: ListLandingZoneOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLandingZoneOperationsCommandOutput) => void): void;
136
144
  /**
137
145
  * @see {@link ListLandingZonesCommand}
138
146
  */
@@ -195,23 +203,161 @@ export interface ControlTower {
195
203
  * <li>
196
204
  * <p>
197
205
  * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/controls.html">
198
- * <i>controls</i>
206
+ * <i>Controls</i>
199
207
  * </a>
200
208
  * </p>
209
+ * <ul>
210
+ * <li>
211
+ * <p>
212
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DisableControl.html">DisableControl</a>
213
+ * </p>
214
+ * </li>
215
+ * <li>
216
+ * <p>
217
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_EnableControl.html">EnableControl</a>
218
+ * </p>
219
+ * </li>
220
+ * <li>
221
+ * <p>
222
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetEnabledControl.html">GetEnabledControl</a>
223
+ * </p>
224
+ * </li>
225
+ * <li>
226
+ * <p>
227
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListControlOperations.html">ListControlOperations</a>
228
+ * </p>
229
+ * </li>
230
+ * <li>
231
+ * <p>
232
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListEnabledControls.html">ListEnabledControls</a>
233
+ * </p>
234
+ * </li>
235
+ * <li>
236
+ * <p>
237
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateEnabledControl.html">UpdateEnabledControl</a>
238
+ * </p>
239
+ * </li>
240
+ * </ul>
201
241
  * </li>
202
242
  * <li>
203
243
  * <p>
204
244
  * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch.html">
205
- * <i>landing zones</i>
245
+ * <i>Landing zones</i>
206
246
  * </a>
207
247
  * </p>
248
+ * <ul>
249
+ * <li>
250
+ * <p>
251
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_CreateLandingZone.html">CreateLandingZone</a>
252
+ * </p>
253
+ * </li>
254
+ * <li>
255
+ * <p>
256
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DeleteLandingZone.html">DeleteLandingZone</a>
257
+ * </p>
258
+ * </li>
259
+ * <li>
260
+ * <p>
261
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetLandingZone.html">GetLandingZone</a>
262
+ * </p>
263
+ * </li>
264
+ * <li>
265
+ * <p>
266
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetLandingZoneOperation.html">GetLandingZoneOperation</a>
267
+ * </p>
268
+ * </li>
269
+ * <li>
270
+ * <p>
271
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListLandingZones.html">ListLandingZones</a>
272
+ * </p>
273
+ * </li>
274
+ * <li>
275
+ * <p>
276
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ResetLandingZone.html">ResetLandingZone</a>
277
+ * </p>
278
+ * </li>
279
+ * <li>
280
+ * <p>
281
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateLandingZone.html">UpdateLandingZone</a>
282
+ * </p>
283
+ * </li>
284
+ * </ul>
208
285
  * </li>
209
286
  * <li>
210
287
  * <p>
211
288
  * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/types-of-baselines.html">
212
- * <i>baselines</i>
289
+ * <i>Baselines</i>
213
290
  * </a>
214
291
  * </p>
292
+ * <ul>
293
+ * <li>
294
+ * <p>
295
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DisableBaseline.html">DisableBaseline</a>
296
+ * </p>
297
+ * </li>
298
+ * <li>
299
+ * <p>
300
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_EnableBaseline.html">EnableBaseline</a>
301
+ * </p>
302
+ * </li>
303
+ * <li>
304
+ * <p>
305
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetBaseline.html">GetBaseline</a>
306
+ * </p>
307
+ * </li>
308
+ * <li>
309
+ * <p>
310
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetBaselineOperation.html">GetBaselineOperation</a>
311
+ * </p>
312
+ * </li>
313
+ * <li>
314
+ * <p>
315
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetEnabledBaseline.html">GetEnabledBaseline</a>
316
+ * </p>
317
+ * </li>
318
+ * <li>
319
+ * <p>
320
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListBaselines.html">ListBaselines</a>
321
+ * </p>
322
+ * </li>
323
+ * <li>
324
+ * <p>
325
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListEnabledBaselines.html">ListEnabledBaselines</a>
326
+ * </p>
327
+ * </li>
328
+ * <li>
329
+ * <p>
330
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ResetEnabledBaseline.html">ResetEnabledBaseline</a>
331
+ * </p>
332
+ * </li>
333
+ * <li>
334
+ * <p>
335
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateEnabledBaseline.html">UpdateEnabledBaseline</a>
336
+ * </p>
337
+ * </li>
338
+ * </ul>
339
+ * </li>
340
+ * <li>
341
+ * <p>
342
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/tagging.html">Tagging</a>
343
+ * </p>
344
+ * <ul>
345
+ * <li>
346
+ * <p>
347
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListTagsForResource.html">ListTagsForResource</a>
348
+ * </p>
349
+ * </li>
350
+ * <li>
351
+ * <p>
352
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_TagResource.html">TagResource</a>
353
+ * </p>
354
+ * </li>
355
+ * <li>
356
+ * <p>
357
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UntagResource.html">UntagResource</a>
358
+ * </p>
359
+ * </li>
360
+ * </ul>
215
361
  * </li>
216
362
  * </ul>
217
363
  * <p>For more information about these types of resources, see the <a href="https://docs.aws.amazon.com/controltower/latest/userguide/what-is-control-tower.html">
@@ -241,13 +387,12 @@ export interface ControlTower {
241
387
  * <p>The <code>controlIdentifier</code> is an ARN that is specified for each
242
388
  * control. You can view the <code>controlIdentifier</code> in the console on the <b>Control details</b> page, as well as in the documentation.</p>
243
389
  * <p>The <code>controlIdentifier</code> is unique in each Amazon Web Services Region for each control. You can
244
- * find the <code>controlIdentifier</code> for each Region and control in the <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-metadata-tables.html">Tables of control metadata</a> or the <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-region-tables.html">Control availability by Region tables</a> in the <i>Amazon Web Services Control Tower User Guide.</i>
245
- * </p>
390
+ * find the <code>controlIdentifier</code> for each Region and control in the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-metadata-tables.html">Tables of control metadata</a> or the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-region-tables.html">Control availability by Region tables</a> in the <i>Amazon Web Services Control Tower Controls Reference Guide</i>.</p>
246
391
  * <p>A quick-reference list of control identifers for the Amazon Web Services Control Tower legacy <i>Strongly recommended</i> and
247
- * <i>Elective</i> controls is given in <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html.html">Resource identifiers for
248
- * APIs and controls</a> in the <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html">Controls reference guide section</a>
249
- * of the <i>Amazon Web Services Control Tower User Guide</i>. Remember that <i>Mandatory</i> controls
250
- * cannot be added or removed.</p>
392
+ * <i>Elective</i> controls is given in <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html.html">Resource identifiers for
393
+ * APIs and controls</a> in the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html">
394
+ * <i>Amazon Web Services Control Tower Controls Reference Guide</i>
395
+ * </a>. Remember that <i>Mandatory</i> controls cannot be added or removed.</p>
251
396
  * <note>
252
397
  * <p>
253
398
  * <b>ARN format:</b>
@@ -290,7 +435,7 @@ export interface ControlTower {
290
435
  * <ul>
291
436
  * <li>
292
437
  * <p>
293
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-api-examples-short.html">Control API input and output examples with CLI</a>
438
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html">Control API input and output examples with CLI</a>
294
439
  * </p>
295
440
  * </li>
296
441
  * <li>
@@ -300,7 +445,7 @@ export interface ControlTower {
300
445
  * </li>
301
446
  * <li>
302
447
  * <p>
303
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/enable-controls.html">Enable controls with CloudFormation</a>
448
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/enable-controls.html">Enable controls with CloudFormation</a>
304
449
  * </p>
305
450
  * </li>
306
451
  * <li>
@@ -310,27 +455,27 @@ export interface ControlTower {
310
455
  * </li>
311
456
  * <li>
312
457
  * <p>
313
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-metadata-tables.html">Control metadata tables (large page)</a>
458
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-metadata-tables.html">Control metadata tables (large page)</a>
314
459
  * </p>
315
460
  * </li>
316
461
  * <li>
317
462
  * <p>
318
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-region-tables.html">Control availability by Region tables (large page)</a>
463
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-region-tables.html">Control availability by Region tables (large page)</a>
319
464
  * </p>
320
465
  * </li>
321
466
  * <li>
322
467
  * <p>
323
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html">List of identifiers for legacy controls</a>
468
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html">List of identifiers for legacy controls</a>
324
469
  * </p>
325
470
  * </li>
326
471
  * <li>
327
472
  * <p>
328
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/controls.html">Controls reference guide</a>
473
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/controls.html">Controls reference guide</a>
329
474
  * </p>
330
475
  * </li>
331
476
  * <li>
332
477
  * <p>
333
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/controls-reference.html">Controls library groupings</a>
478
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/controls-reference.html">Controls library groupings</a>
334
479
  * </p>
335
480
  * </li>
336
481
  * <li>
@@ -24,6 +24,7 @@ import { ListBaselinesCommandInput, ListBaselinesCommandOutput } from "./command
24
24
  import { ListControlOperationsCommandInput, ListControlOperationsCommandOutput } from "./commands/ListControlOperationsCommand";
25
25
  import { ListEnabledBaselinesCommandInput, ListEnabledBaselinesCommandOutput } from "./commands/ListEnabledBaselinesCommand";
26
26
  import { ListEnabledControlsCommandInput, ListEnabledControlsCommandOutput } from "./commands/ListEnabledControlsCommand";
27
+ import { ListLandingZoneOperationsCommandInput, ListLandingZoneOperationsCommandOutput } from "./commands/ListLandingZoneOperationsCommand";
27
28
  import { ListLandingZonesCommandInput, ListLandingZonesCommandOutput } from "./commands/ListLandingZonesCommand";
28
29
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
29
30
  import { ResetEnabledBaselineCommandInput, ResetEnabledBaselineCommandOutput } from "./commands/ResetEnabledBaselineCommand";
@@ -39,11 +40,11 @@ export { __Client };
39
40
  /**
40
41
  * @public
41
42
  */
42
- export type ServiceInputTypes = CreateLandingZoneCommandInput | DeleteLandingZoneCommandInput | DisableBaselineCommandInput | DisableControlCommandInput | EnableBaselineCommandInput | EnableControlCommandInput | GetBaselineCommandInput | GetBaselineOperationCommandInput | GetControlOperationCommandInput | GetEnabledBaselineCommandInput | GetEnabledControlCommandInput | GetLandingZoneCommandInput | GetLandingZoneOperationCommandInput | ListBaselinesCommandInput | ListControlOperationsCommandInput | ListEnabledBaselinesCommandInput | ListEnabledControlsCommandInput | ListLandingZonesCommandInput | ListTagsForResourceCommandInput | ResetEnabledBaselineCommandInput | ResetLandingZoneCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEnabledBaselineCommandInput | UpdateEnabledControlCommandInput | UpdateLandingZoneCommandInput;
43
+ export type ServiceInputTypes = CreateLandingZoneCommandInput | DeleteLandingZoneCommandInput | DisableBaselineCommandInput | DisableControlCommandInput | EnableBaselineCommandInput | EnableControlCommandInput | GetBaselineCommandInput | GetBaselineOperationCommandInput | GetControlOperationCommandInput | GetEnabledBaselineCommandInput | GetEnabledControlCommandInput | GetLandingZoneCommandInput | GetLandingZoneOperationCommandInput | ListBaselinesCommandInput | ListControlOperationsCommandInput | ListEnabledBaselinesCommandInput | ListEnabledControlsCommandInput | ListLandingZoneOperationsCommandInput | ListLandingZonesCommandInput | ListTagsForResourceCommandInput | ResetEnabledBaselineCommandInput | ResetLandingZoneCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEnabledBaselineCommandInput | UpdateEnabledControlCommandInput | UpdateLandingZoneCommandInput;
43
44
  /**
44
45
  * @public
45
46
  */
46
- export type ServiceOutputTypes = CreateLandingZoneCommandOutput | DeleteLandingZoneCommandOutput | DisableBaselineCommandOutput | DisableControlCommandOutput | EnableBaselineCommandOutput | EnableControlCommandOutput | GetBaselineCommandOutput | GetBaselineOperationCommandOutput | GetControlOperationCommandOutput | GetEnabledBaselineCommandOutput | GetEnabledControlCommandOutput | GetLandingZoneCommandOutput | GetLandingZoneOperationCommandOutput | ListBaselinesCommandOutput | ListControlOperationsCommandOutput | ListEnabledBaselinesCommandOutput | ListEnabledControlsCommandOutput | ListLandingZonesCommandOutput | ListTagsForResourceCommandOutput | ResetEnabledBaselineCommandOutput | ResetLandingZoneCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEnabledBaselineCommandOutput | UpdateEnabledControlCommandOutput | UpdateLandingZoneCommandOutput;
47
+ export type ServiceOutputTypes = CreateLandingZoneCommandOutput | DeleteLandingZoneCommandOutput | DisableBaselineCommandOutput | DisableControlCommandOutput | EnableBaselineCommandOutput | EnableControlCommandOutput | GetBaselineCommandOutput | GetBaselineOperationCommandOutput | GetControlOperationCommandOutput | GetEnabledBaselineCommandOutput | GetEnabledControlCommandOutput | GetLandingZoneCommandOutput | GetLandingZoneOperationCommandOutput | ListBaselinesCommandOutput | ListControlOperationsCommandOutput | ListEnabledBaselinesCommandOutput | ListEnabledControlsCommandOutput | ListLandingZoneOperationsCommandOutput | ListLandingZonesCommandOutput | ListTagsForResourceCommandOutput | ResetEnabledBaselineCommandOutput | ResetLandingZoneCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEnabledBaselineCommandOutput | UpdateEnabledControlCommandOutput | UpdateLandingZoneCommandOutput;
47
48
  /**
48
49
  * @public
49
50
  */
@@ -182,23 +183,161 @@ export interface ControlTowerClientResolvedConfig extends ControlTowerClientReso
182
183
  * <li>
183
184
  * <p>
184
185
  * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/controls.html">
185
- * <i>controls</i>
186
+ * <i>Controls</i>
186
187
  * </a>
187
188
  * </p>
189
+ * <ul>
190
+ * <li>
191
+ * <p>
192
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DisableControl.html">DisableControl</a>
193
+ * </p>
194
+ * </li>
195
+ * <li>
196
+ * <p>
197
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_EnableControl.html">EnableControl</a>
198
+ * </p>
199
+ * </li>
200
+ * <li>
201
+ * <p>
202
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetEnabledControl.html">GetEnabledControl</a>
203
+ * </p>
204
+ * </li>
205
+ * <li>
206
+ * <p>
207
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListControlOperations.html">ListControlOperations</a>
208
+ * </p>
209
+ * </li>
210
+ * <li>
211
+ * <p>
212
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListEnabledControls.html">ListEnabledControls</a>
213
+ * </p>
214
+ * </li>
215
+ * <li>
216
+ * <p>
217
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateEnabledControl.html">UpdateEnabledControl</a>
218
+ * </p>
219
+ * </li>
220
+ * </ul>
188
221
  * </li>
189
222
  * <li>
190
223
  * <p>
191
224
  * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch.html">
192
- * <i>landing zones</i>
225
+ * <i>Landing zones</i>
193
226
  * </a>
194
227
  * </p>
228
+ * <ul>
229
+ * <li>
230
+ * <p>
231
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_CreateLandingZone.html">CreateLandingZone</a>
232
+ * </p>
233
+ * </li>
234
+ * <li>
235
+ * <p>
236
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DeleteLandingZone.html">DeleteLandingZone</a>
237
+ * </p>
238
+ * </li>
239
+ * <li>
240
+ * <p>
241
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetLandingZone.html">GetLandingZone</a>
242
+ * </p>
243
+ * </li>
244
+ * <li>
245
+ * <p>
246
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetLandingZoneOperation.html">GetLandingZoneOperation</a>
247
+ * </p>
248
+ * </li>
249
+ * <li>
250
+ * <p>
251
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListLandingZones.html">ListLandingZones</a>
252
+ * </p>
253
+ * </li>
254
+ * <li>
255
+ * <p>
256
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ResetLandingZone.html">ResetLandingZone</a>
257
+ * </p>
258
+ * </li>
259
+ * <li>
260
+ * <p>
261
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateLandingZone.html">UpdateLandingZone</a>
262
+ * </p>
263
+ * </li>
264
+ * </ul>
195
265
  * </li>
196
266
  * <li>
197
267
  * <p>
198
268
  * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/types-of-baselines.html">
199
- * <i>baselines</i>
269
+ * <i>Baselines</i>
200
270
  * </a>
201
271
  * </p>
272
+ * <ul>
273
+ * <li>
274
+ * <p>
275
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DisableBaseline.html">DisableBaseline</a>
276
+ * </p>
277
+ * </li>
278
+ * <li>
279
+ * <p>
280
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_EnableBaseline.html">EnableBaseline</a>
281
+ * </p>
282
+ * </li>
283
+ * <li>
284
+ * <p>
285
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetBaseline.html">GetBaseline</a>
286
+ * </p>
287
+ * </li>
288
+ * <li>
289
+ * <p>
290
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetBaselineOperation.html">GetBaselineOperation</a>
291
+ * </p>
292
+ * </li>
293
+ * <li>
294
+ * <p>
295
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetEnabledBaseline.html">GetEnabledBaseline</a>
296
+ * </p>
297
+ * </li>
298
+ * <li>
299
+ * <p>
300
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListBaselines.html">ListBaselines</a>
301
+ * </p>
302
+ * </li>
303
+ * <li>
304
+ * <p>
305
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListEnabledBaselines.html">ListEnabledBaselines</a>
306
+ * </p>
307
+ * </li>
308
+ * <li>
309
+ * <p>
310
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ResetEnabledBaseline.html">ResetEnabledBaseline</a>
311
+ * </p>
312
+ * </li>
313
+ * <li>
314
+ * <p>
315
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateEnabledBaseline.html">UpdateEnabledBaseline</a>
316
+ * </p>
317
+ * </li>
318
+ * </ul>
319
+ * </li>
320
+ * <li>
321
+ * <p>
322
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/tagging.html">Tagging</a>
323
+ * </p>
324
+ * <ul>
325
+ * <li>
326
+ * <p>
327
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListTagsForResource.html">ListTagsForResource</a>
328
+ * </p>
329
+ * </li>
330
+ * <li>
331
+ * <p>
332
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_TagResource.html">TagResource</a>
333
+ * </p>
334
+ * </li>
335
+ * <li>
336
+ * <p>
337
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UntagResource.html">UntagResource</a>
338
+ * </p>
339
+ * </li>
340
+ * </ul>
202
341
  * </li>
203
342
  * </ul>
204
343
  * <p>For more information about these types of resources, see the <a href="https://docs.aws.amazon.com/controltower/latest/userguide/what-is-control-tower.html">
@@ -228,13 +367,12 @@ export interface ControlTowerClientResolvedConfig extends ControlTowerClientReso
228
367
  * <p>The <code>controlIdentifier</code> is an ARN that is specified for each
229
368
  * control. You can view the <code>controlIdentifier</code> in the console on the <b>Control details</b> page, as well as in the documentation.</p>
230
369
  * <p>The <code>controlIdentifier</code> is unique in each Amazon Web Services Region for each control. You can
231
- * find the <code>controlIdentifier</code> for each Region and control in the <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-metadata-tables.html">Tables of control metadata</a> or the <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-region-tables.html">Control availability by Region tables</a> in the <i>Amazon Web Services Control Tower User Guide.</i>
232
- * </p>
370
+ * find the <code>controlIdentifier</code> for each Region and control in the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-metadata-tables.html">Tables of control metadata</a> or the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-region-tables.html">Control availability by Region tables</a> in the <i>Amazon Web Services Control Tower Controls Reference Guide</i>.</p>
233
371
  * <p>A quick-reference list of control identifers for the Amazon Web Services Control Tower legacy <i>Strongly recommended</i> and
234
- * <i>Elective</i> controls is given in <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html.html">Resource identifiers for
235
- * APIs and controls</a> in the <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html">Controls reference guide section</a>
236
- * of the <i>Amazon Web Services Control Tower User Guide</i>. Remember that <i>Mandatory</i> controls
237
- * cannot be added or removed.</p>
372
+ * <i>Elective</i> controls is given in <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html.html">Resource identifiers for
373
+ * APIs and controls</a> in the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html">
374
+ * <i>Amazon Web Services Control Tower Controls Reference Guide</i>
375
+ * </a>. Remember that <i>Mandatory</i> controls cannot be added or removed.</p>
238
376
  * <note>
239
377
  * <p>
240
378
  * <b>ARN format:</b>
@@ -277,7 +415,7 @@ export interface ControlTowerClientResolvedConfig extends ControlTowerClientReso
277
415
  * <ul>
278
416
  * <li>
279
417
  * <p>
280
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-api-examples-short.html">Control API input and output examples with CLI</a>
418
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html">Control API input and output examples with CLI</a>
281
419
  * </p>
282
420
  * </li>
283
421
  * <li>
@@ -287,7 +425,7 @@ export interface ControlTowerClientResolvedConfig extends ControlTowerClientReso
287
425
  * </li>
288
426
  * <li>
289
427
  * <p>
290
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/enable-controls.html">Enable controls with CloudFormation</a>
428
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/enable-controls.html">Enable controls with CloudFormation</a>
291
429
  * </p>
292
430
  * </li>
293
431
  * <li>
@@ -297,27 +435,27 @@ export interface ControlTowerClientResolvedConfig extends ControlTowerClientReso
297
435
  * </li>
298
436
  * <li>
299
437
  * <p>
300
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-metadata-tables.html">Control metadata tables (large page)</a>
438
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-metadata-tables.html">Control metadata tables (large page)</a>
301
439
  * </p>
302
440
  * </li>
303
441
  * <li>
304
442
  * <p>
305
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-region-tables.html">Control availability by Region tables (large page)</a>
443
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-region-tables.html">Control availability by Region tables (large page)</a>
306
444
  * </p>
307
445
  * </li>
308
446
  * <li>
309
447
  * <p>
310
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html">List of identifiers for legacy controls</a>
448
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html">List of identifiers for legacy controls</a>
311
449
  * </p>
312
450
  * </li>
313
451
  * <li>
314
452
  * <p>
315
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/controls.html">Controls reference guide</a>
453
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/controls.html">Controls reference guide</a>
316
454
  * </p>
317
455
  * </li>
318
456
  * <li>
319
457
  * <p>
320
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/controls-reference.html">Controls library groupings</a>
458
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/controls-reference.html">Controls library groupings</a>
321
459
  * </p>
322
460
  * </li>
323
461
  * <li>
@@ -27,10 +27,10 @@ declare const DisableControlCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>This API call turns off a control. It starts an asynchronous operation that deletes AWS
30
+ * <p>This API call turns off a control. It starts an asynchronous operation that deletes Amazon Web Services
31
31
  * resources on the specified organizational unit and the accounts it contains. The resources
32
- * will vary according to the control that you specify. For usage examples, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-api-examples-short.html">
33
- * <i>the Amazon Web Services Control Tower User Guide</i>
32
+ * will vary according to the control that you specify. For usage examples, see the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html">
33
+ * <i>Controls Reference Guide</i>
34
34
  * </a>.</p>
35
35
  * @example
36
36
  * Use a bare-bones client and the command you need to make an API call.
@@ -29,8 +29,8 @@ declare const EnableControlCommand_base: {
29
29
  /**
30
30
  * <p>This API call activates a control. It starts an asynchronous operation that creates Amazon Web Services
31
31
  * resources on the specified organizational unit and the accounts it contains. The resources
32
- * created will vary according to the control that you specify. For usage examples, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-api-examples-short.html">
33
- * <i>the Amazon Web Services Control Tower User Guide</i>
32
+ * created will vary according to the control that you specify. For usage examples, see the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html">
33
+ * <i>Controls Reference Guide</i>
34
34
  * </a>.</p>
35
35
  * @example
36
36
  * Use a bare-bones client and the command you need to make an API call.
@@ -29,8 +29,8 @@ declare const GetControlOperationCommand_base: {
29
29
  /**
30
30
  * <p>Returns the status of a particular <code>EnableControl</code> or
31
31
  * <code>DisableControl</code> operation. Displays a message in case of error. Details for an
32
- * operation are available for 90 days. For usage examples, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-api-examples-short.html">
33
- * <i>the Amazon Web Services Control Tower User Guide</i>
32
+ * operation are available for 90 days. For usage examples, see the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html">
33
+ * <i>Controls Reference Guide</i>
34
34
  * </a>.</p>
35
35
  * @example
36
36
  * Use a bare-bones client and the command you need to make an API call.
@@ -27,8 +27,8 @@ declare const GetEnabledControlCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Retrieves details about an enabled control. For usage examples, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-api-examples-short.html">
31
- * <i>the Amazon Web Services Control Tower User Guide</i>
30
+ * <p>Retrieves details about an enabled control. For usage examples, see the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html">
31
+ * <i>Controls Reference Guide</i>
32
32
  * </a>.</p>
33
33
  * @example
34
34
  * Use a bare-bones client and the command you need to make an API call.
@@ -43,9 +43,10 @@ declare const GetLandingZoneOperationCommand_base: {
43
43
  * // { // GetLandingZoneOperationOutput
44
44
  * // operationDetails: { // LandingZoneOperationDetail
45
45
  * // operationType: "DELETE" || "CREATE" || "UPDATE" || "RESET",
46
+ * // operationIdentifier: "STRING_VALUE",
47
+ * // status: "SUCCEEDED" || "FAILED" || "IN_PROGRESS",
46
48
  * // startTime: new Date("TIMESTAMP"),
47
49
  * // endTime: new Date("TIMESTAMP"),
48
- * // status: "SUCCEEDED" || "FAILED" || "IN_PROGRESS",
49
50
  * // statusMessage: "STRING_VALUE",
50
51
  * // },
51
52
  * // };
@@ -27,7 +27,7 @@ declare const ListControlOperationsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Provides a list of operations in progress or queued.</p>
30
+ * <p>Provides a list of operations in progress or queued. For usage examples, see <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html#list-control-operations-api-examples">ListControlOperation examples</a>.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -28,8 +28,8 @@ declare const ListEnabledControlsCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Lists the controls enabled by Amazon Web Services Control Tower on the specified organizational unit and
31
- * the accounts it contains. For usage examples, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-api-examples-short.html">
32
- * <i>the Amazon Web Services Control Tower User Guide</i>
31
+ * the accounts it contains. For usage examples, see the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html">
32
+ * <i>Controls Reference Guide</i>
33
33
  * </a>.</p>
34
34
  * @example
35
35
  * Use a bare-bones client and the command you need to make an API call.