@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
@@ -0,0 +1,88 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient";
4
+ import { ListLandingZoneOperationsInput, ListLandingZoneOperationsOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListLandingZoneOperationsCommand}.
14
+ */
15
+ export interface ListLandingZoneOperationsCommandInput extends ListLandingZoneOperationsInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListLandingZoneOperationsCommand}.
21
+ */
22
+ export interface ListLandingZoneOperationsCommandOutput extends ListLandingZoneOperationsOutput, __MetadataBearer {
23
+ }
24
+ declare const ListLandingZoneOperationsCommand_base: {
25
+ new (input: ListLandingZoneOperationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListLandingZoneOperationsCommandInput, ListLandingZoneOperationsCommandOutput, ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListLandingZoneOperationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListLandingZoneOperationsCommandInput, ListLandingZoneOperationsCommandOutput, ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Lists all landing zone operations from the past 90 days. Results are sorted by time, with the most recent operation first.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { ControlTowerClient, ListLandingZoneOperationsCommand } from "@aws-sdk/client-controltower"; // ES Modules import
35
+ * // const { ControlTowerClient, ListLandingZoneOperationsCommand } = require("@aws-sdk/client-controltower"); // CommonJS import
36
+ * const client = new ControlTowerClient(config);
37
+ * const input = { // ListLandingZoneOperationsInput
38
+ * filter: { // LandingZoneOperationFilter
39
+ * types: [ // LandingZoneOperationTypes
40
+ * "DELETE" || "CREATE" || "UPDATE" || "RESET",
41
+ * ],
42
+ * statuses: [ // LandingZoneOperationStatuses
43
+ * "SUCCEEDED" || "FAILED" || "IN_PROGRESS",
44
+ * ],
45
+ * },
46
+ * nextToken: "STRING_VALUE",
47
+ * maxResults: Number("int"),
48
+ * };
49
+ * const command = new ListLandingZoneOperationsCommand(input);
50
+ * const response = await client.send(command);
51
+ * // { // ListLandingZoneOperationsOutput
52
+ * // landingZoneOperations: [ // LandingZoneOperations // required
53
+ * // { // LandingZoneOperationSummary
54
+ * // operationType: "DELETE" || "CREATE" || "UPDATE" || "RESET",
55
+ * // operationIdentifier: "STRING_VALUE",
56
+ * // status: "SUCCEEDED" || "FAILED" || "IN_PROGRESS",
57
+ * // },
58
+ * // ],
59
+ * // nextToken: "STRING_VALUE",
60
+ * // };
61
+ *
62
+ * ```
63
+ *
64
+ * @param ListLandingZoneOperationsCommandInput - {@link ListLandingZoneOperationsCommandInput}
65
+ * @returns {@link ListLandingZoneOperationsCommandOutput}
66
+ * @see {@link ListLandingZoneOperationsCommandInput} for command's `input` shape.
67
+ * @see {@link ListLandingZoneOperationsCommandOutput} for command's `response` shape.
68
+ * @see {@link ControlTowerClientResolvedConfig | config} for ControlTowerClient's `config` shape.
69
+ *
70
+ * @throws {@link AccessDeniedException} (client fault)
71
+ * <p>You do not have sufficient access to perform this action.</p>
72
+ *
73
+ * @throws {@link InternalServerException} (server fault)
74
+ * <p>An unexpected error occurred during processing of a request.</p>
75
+ *
76
+ * @throws {@link ThrottlingException} (client fault)
77
+ * <p>The request was denied due to request throttling.</p>
78
+ *
79
+ * @throws {@link ValidationException} (client fault)
80
+ * <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
81
+ *
82
+ * @throws {@link ControlTowerServiceException}
83
+ * <p>Base exception class for all service exceptions from ControlTower service.</p>
84
+ *
85
+ * @public
86
+ */
87
+ export declare class ListLandingZoneOperationsCommand extends ListLandingZoneOperationsCommand_base {
88
+ }
@@ -27,8 +27,8 @@ declare const ListTagsForResourceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Returns a list of tags associated with the resource. 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>Returns a list of tags associated with the resource. 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.
@@ -28,7 +28,10 @@ declare const ResetLandingZoneCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>This API call resets a landing zone. It starts an asynchronous operation that resets the
31
- * landing zone to the parameters specified in its original configuration.</p>
31
+ * landing zone to the parameters specified in the original configuration, which you specified
32
+ * in the manifest file. Nothing in the manifest file's original landing zone configuration is changed
33
+ * during the reset process, by default. This API is not the same as a rollback of a landing
34
+ * zone version, which is not a supported operation.</p>
32
35
  * @example
33
36
  * Use a bare-bones client and the command you need to make an API call.
34
37
  * ```javascript
@@ -27,8 +27,8 @@ declare const TagResourceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Applies tags to a resource. 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>Applies tags to a resource. 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.
@@ -27,8 +27,8 @@ declare const UntagResourceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Removes tags from a resource. 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>Removes tags from a resource. 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.
@@ -30,11 +30,11 @@ declare const UpdateEnabledControlCommand_base: {
30
30
  * <p>
31
31
  * Updates the configuration of an already enabled control.</p>
32
32
  * <p>If the enabled control shows an <code>EnablementStatus</code> of SUCCEEDED, supply parameters that are different from the currently configured parameters. Otherwise, Amazon Web Services Control Tower will not accept the request.</p>
33
- * <p>If the enabled control shows an <code>EnablementStatus</code> of FAILED, Amazon Web Services Control Tower will update the control to match any valid parameters that you supply.</p>
34
- * <p>If the <code>DriftSummary</code> status for the control shows as DRIFTED, you cannot call this API. Instead, you can update the control by calling <code>DisableControl</code> and again calling <code>EnableControl</code>, or you can run an extending governance operation. For usage examples, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-api-examples-short.html">
35
- * <i>the Amazon Web Services Control Tower User Guide</i>
36
- * </a>
37
- * </p>
33
+ * <p>If the enabled control shows an <code>EnablementStatus</code> of FAILED, Amazon Web Services Control Tower updates the control to match any valid parameters that you supply.</p>
34
+ * <p>If the <code>DriftSummary</code> status for the control shows as DRIFTED, you cannot call this API. Instead, you can update the control by calling <code>DisableControl</code> and again calling <code>EnableControl</code>, or you can run an extending governance operation. For usage examples, see the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html">
35
+ * <i>Controls Reference Guide</i>
36
+ * </a>.
37
+ * </p>
38
38
  * @example
39
39
  * Use a bare-bones client and the command you need to make an API call.
40
40
  * ```javascript
@@ -15,6 +15,7 @@ export * from "./ListBaselinesCommand";
15
15
  export * from "./ListControlOperationsCommand";
16
16
  export * from "./ListEnabledBaselinesCommand";
17
17
  export * from "./ListEnabledControlsCommand";
18
+ export * from "./ListLandingZoneOperationsCommand";
18
19
  export * from "./ListLandingZonesCommand";
19
20
  export * from "./ListTagsForResourceCommand";
20
21
  export * from "./ResetEnabledBaselineCommand";
@@ -4,23 +4,161 @@
4
4
  * <li>
5
5
  * <p>
6
6
  * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/controls.html">
7
- * <i>controls</i>
7
+ * <i>Controls</i>
8
8
  * </a>
9
9
  * </p>
10
+ * <ul>
11
+ * <li>
12
+ * <p>
13
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DisableControl.html">DisableControl</a>
14
+ * </p>
15
+ * </li>
16
+ * <li>
17
+ * <p>
18
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_EnableControl.html">EnableControl</a>
19
+ * </p>
20
+ * </li>
21
+ * <li>
22
+ * <p>
23
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetEnabledControl.html">GetEnabledControl</a>
24
+ * </p>
25
+ * </li>
26
+ * <li>
27
+ * <p>
28
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListControlOperations.html">ListControlOperations</a>
29
+ * </p>
30
+ * </li>
31
+ * <li>
32
+ * <p>
33
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListEnabledControls.html">ListEnabledControls</a>
34
+ * </p>
35
+ * </li>
36
+ * <li>
37
+ * <p>
38
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateEnabledControl.html">UpdateEnabledControl</a>
39
+ * </p>
40
+ * </li>
41
+ * </ul>
10
42
  * </li>
11
43
  * <li>
12
44
  * <p>
13
45
  * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch.html">
14
- * <i>landing zones</i>
46
+ * <i>Landing zones</i>
15
47
  * </a>
16
48
  * </p>
49
+ * <ul>
50
+ * <li>
51
+ * <p>
52
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_CreateLandingZone.html">CreateLandingZone</a>
53
+ * </p>
54
+ * </li>
55
+ * <li>
56
+ * <p>
57
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DeleteLandingZone.html">DeleteLandingZone</a>
58
+ * </p>
59
+ * </li>
60
+ * <li>
61
+ * <p>
62
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetLandingZone.html">GetLandingZone</a>
63
+ * </p>
64
+ * </li>
65
+ * <li>
66
+ * <p>
67
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetLandingZoneOperation.html">GetLandingZoneOperation</a>
68
+ * </p>
69
+ * </li>
70
+ * <li>
71
+ * <p>
72
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListLandingZones.html">ListLandingZones</a>
73
+ * </p>
74
+ * </li>
75
+ * <li>
76
+ * <p>
77
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ResetLandingZone.html">ResetLandingZone</a>
78
+ * </p>
79
+ * </li>
80
+ * <li>
81
+ * <p>
82
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateLandingZone.html">UpdateLandingZone</a>
83
+ * </p>
84
+ * </li>
85
+ * </ul>
17
86
  * </li>
18
87
  * <li>
19
88
  * <p>
20
89
  * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/types-of-baselines.html">
21
- * <i>baselines</i>
90
+ * <i>Baselines</i>
22
91
  * </a>
23
92
  * </p>
93
+ * <ul>
94
+ * <li>
95
+ * <p>
96
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DisableBaseline.html">DisableBaseline</a>
97
+ * </p>
98
+ * </li>
99
+ * <li>
100
+ * <p>
101
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_EnableBaseline.html">EnableBaseline</a>
102
+ * </p>
103
+ * </li>
104
+ * <li>
105
+ * <p>
106
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetBaseline.html">GetBaseline</a>
107
+ * </p>
108
+ * </li>
109
+ * <li>
110
+ * <p>
111
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetBaselineOperation.html">GetBaselineOperation</a>
112
+ * </p>
113
+ * </li>
114
+ * <li>
115
+ * <p>
116
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetEnabledBaseline.html">GetEnabledBaseline</a>
117
+ * </p>
118
+ * </li>
119
+ * <li>
120
+ * <p>
121
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListBaselines.html">ListBaselines</a>
122
+ * </p>
123
+ * </li>
124
+ * <li>
125
+ * <p>
126
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListEnabledBaselines.html">ListEnabledBaselines</a>
127
+ * </p>
128
+ * </li>
129
+ * <li>
130
+ * <p>
131
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ResetEnabledBaseline.html">ResetEnabledBaseline</a>
132
+ * </p>
133
+ * </li>
134
+ * <li>
135
+ * <p>
136
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateEnabledBaseline.html">UpdateEnabledBaseline</a>
137
+ * </p>
138
+ * </li>
139
+ * </ul>
140
+ * </li>
141
+ * <li>
142
+ * <p>
143
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/tagging.html">Tagging</a>
144
+ * </p>
145
+ * <ul>
146
+ * <li>
147
+ * <p>
148
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListTagsForResource.html">ListTagsForResource</a>
149
+ * </p>
150
+ * </li>
151
+ * <li>
152
+ * <p>
153
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_TagResource.html">TagResource</a>
154
+ * </p>
155
+ * </li>
156
+ * <li>
157
+ * <p>
158
+ * <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UntagResource.html">UntagResource</a>
159
+ * </p>
160
+ * </li>
161
+ * </ul>
24
162
  * </li>
25
163
  * </ul>
26
164
  * <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">
@@ -50,13 +188,12 @@
50
188
  * <p>The <code>controlIdentifier</code> is an ARN that is specified for each
51
189
  * 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>
52
190
  * <p>The <code>controlIdentifier</code> is unique in each Amazon Web Services Region for each control. You can
53
- * 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>
54
- * </p>
191
+ * 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>
55
192
  * <p>A quick-reference list of control identifers for the Amazon Web Services Control Tower legacy <i>Strongly recommended</i> and
56
- * <i>Elective</i> controls is given in <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html.html">Resource identifiers for
57
- * APIs and controls</a> in the <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html">Controls reference guide section</a>
58
- * of the <i>Amazon Web Services Control Tower User Guide</i>. Remember that <i>Mandatory</i> controls
59
- * cannot be added or removed.</p>
193
+ * <i>Elective</i> controls is given in <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html.html">Resource identifiers for
194
+ * APIs and controls</a> in the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html">
195
+ * <i>Amazon Web Services Control Tower Controls Reference Guide</i>
196
+ * </a>. Remember that <i>Mandatory</i> controls cannot be added or removed.</p>
60
197
  * <note>
61
198
  * <p>
62
199
  * <b>ARN format:</b>
@@ -99,7 +236,7 @@
99
236
  * <ul>
100
237
  * <li>
101
238
  * <p>
102
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-api-examples-short.html">Control API input and output examples with CLI</a>
239
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html">Control API input and output examples with CLI</a>
103
240
  * </p>
104
241
  * </li>
105
242
  * <li>
@@ -109,7 +246,7 @@
109
246
  * </li>
110
247
  * <li>
111
248
  * <p>
112
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/enable-controls.html">Enable controls with CloudFormation</a>
249
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/enable-controls.html">Enable controls with CloudFormation</a>
113
250
  * </p>
114
251
  * </li>
115
252
  * <li>
@@ -119,27 +256,27 @@
119
256
  * </li>
120
257
  * <li>
121
258
  * <p>
122
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-metadata-tables.html">Control metadata tables (large page)</a>
259
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-metadata-tables.html">Control metadata tables (large page)</a>
123
260
  * </p>
124
261
  * </li>
125
262
  * <li>
126
263
  * <p>
127
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-region-tables.html">Control availability by Region tables (large page)</a>
264
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-region-tables.html">Control availability by Region tables (large page)</a>
128
265
  * </p>
129
266
  * </li>
130
267
  * <li>
131
268
  * <p>
132
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html">List of identifiers for legacy controls</a>
269
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html">List of identifiers for legacy controls</a>
133
270
  * </p>
134
271
  * </li>
135
272
  * <li>
136
273
  * <p>
137
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/controls.html">Controls reference guide</a>
274
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/controls.html">Controls reference guide</a>
138
275
  * </p>
139
276
  * </li>
140
277
  * <li>
141
278
  * <p>
142
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/controls-reference.html">Controls library groupings</a>
279
+ * <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/controls-reference.html">Controls library groupings</a>
143
280
  * </p>
144
281
  * </li>
145
282
  * <li>