@aws-sdk/client-controltower 3.975.0 → 3.980.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.
package/dist-cjs/index.js CHANGED
@@ -1347,6 +1347,18 @@ class UpdateLandingZoneCommand extends smithyClient.Command
1347
1347
  .build() {
1348
1348
  }
1349
1349
 
1350
+ const paginateListBaselines = core.createPaginator(ControlTowerClient, ListBaselinesCommand, "nextToken", "nextToken", "maxResults");
1351
+
1352
+ const paginateListControlOperations = core.createPaginator(ControlTowerClient, ListControlOperationsCommand, "nextToken", "nextToken", "maxResults");
1353
+
1354
+ const paginateListEnabledBaselines = core.createPaginator(ControlTowerClient, ListEnabledBaselinesCommand, "nextToken", "nextToken", "maxResults");
1355
+
1356
+ const paginateListEnabledControls = core.createPaginator(ControlTowerClient, ListEnabledControlsCommand, "nextToken", "nextToken", "maxResults");
1357
+
1358
+ const paginateListLandingZoneOperations = core.createPaginator(ControlTowerClient, ListLandingZoneOperationsCommand, "nextToken", "nextToken", "maxResults");
1359
+
1360
+ const paginateListLandingZones = core.createPaginator(ControlTowerClient, ListLandingZonesCommand, "nextToken", "nextToken", "maxResults");
1361
+
1350
1362
  const commands = {
1351
1363
  CreateLandingZoneCommand,
1352
1364
  DeleteLandingZoneCommand,
@@ -1377,21 +1389,17 @@ const commands = {
1377
1389
  UpdateEnabledControlCommand,
1378
1390
  UpdateLandingZoneCommand,
1379
1391
  };
1392
+ const paginators = {
1393
+ paginateListBaselines,
1394
+ paginateListControlOperations,
1395
+ paginateListEnabledBaselines,
1396
+ paginateListEnabledControls,
1397
+ paginateListLandingZoneOperations,
1398
+ paginateListLandingZones,
1399
+ };
1380
1400
  class ControlTower extends ControlTowerClient {
1381
1401
  }
1382
- smithyClient.createAggregatedClient(commands, ControlTower);
1383
-
1384
- const paginateListBaselines = core.createPaginator(ControlTowerClient, ListBaselinesCommand, "nextToken", "nextToken", "maxResults");
1385
-
1386
- const paginateListControlOperations = core.createPaginator(ControlTowerClient, ListControlOperationsCommand, "nextToken", "nextToken", "maxResults");
1387
-
1388
- const paginateListEnabledBaselines = core.createPaginator(ControlTowerClient, ListEnabledBaselinesCommand, "nextToken", "nextToken", "maxResults");
1389
-
1390
- const paginateListEnabledControls = core.createPaginator(ControlTowerClient, ListEnabledControlsCommand, "nextToken", "nextToken", "maxResults");
1391
-
1392
- const paginateListLandingZoneOperations = core.createPaginator(ControlTowerClient, ListLandingZoneOperationsCommand, "nextToken", "nextToken", "maxResults");
1393
-
1394
- const paginateListLandingZones = core.createPaginator(ControlTowerClient, ListLandingZonesCommand, "nextToken", "nextToken", "maxResults");
1402
+ smithyClient.createAggregatedClient(commands, ControlTower, { paginators });
1395
1403
 
1396
1404
  const BaselineOperationType = {
1397
1405
  DISABLE_BASELINE: "DISABLE_BASELINE",
@@ -28,6 +28,12 @@ import { UpdateEnabledBaselineCommand, } from "./commands/UpdateEnabledBaselineC
28
28
  import { UpdateEnabledControlCommand, } from "./commands/UpdateEnabledControlCommand";
29
29
  import { UpdateLandingZoneCommand, } from "./commands/UpdateLandingZoneCommand";
30
30
  import { ControlTowerClient } from "./ControlTowerClient";
31
+ import { paginateListBaselines } from "./pagination/ListBaselinesPaginator";
32
+ import { paginateListControlOperations } from "./pagination/ListControlOperationsPaginator";
33
+ import { paginateListEnabledBaselines } from "./pagination/ListEnabledBaselinesPaginator";
34
+ import { paginateListEnabledControls } from "./pagination/ListEnabledControlsPaginator";
35
+ import { paginateListLandingZoneOperations } from "./pagination/ListLandingZoneOperationsPaginator";
36
+ import { paginateListLandingZones } from "./pagination/ListLandingZonesPaginator";
31
37
  const commands = {
32
38
  CreateLandingZoneCommand,
33
39
  DeleteLandingZoneCommand,
@@ -58,6 +64,14 @@ const commands = {
58
64
  UpdateEnabledControlCommand,
59
65
  UpdateLandingZoneCommand,
60
66
  };
67
+ const paginators = {
68
+ paginateListBaselines,
69
+ paginateListControlOperations,
70
+ paginateListEnabledBaselines,
71
+ paginateListEnabledControls,
72
+ paginateListLandingZoneOperations,
73
+ paginateListLandingZones,
74
+ };
61
75
  export class ControlTower extends ControlTowerClient {
62
76
  }
63
- createAggregatedClient(commands, ControlTower);
77
+ createAggregatedClient(commands, ControlTower, { paginators });
@@ -1,4 +1,4 @@
1
- import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
1
+ import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
2
2
  import { CreateLandingZoneCommandInput, CreateLandingZoneCommandOutput } from "./commands/CreateLandingZoneCommand";
3
3
  import { DeleteLandingZoneCommandInput, DeleteLandingZoneCommandOutput } from "./commands/DeleteLandingZoneCommand";
4
4
  import { DisableBaselineCommandInput, DisableBaselineCommandOutput } from "./commands/DisableBaselineCommand";
@@ -204,6 +204,48 @@ export interface ControlTower {
204
204
  updateLandingZone(args: UpdateLandingZoneCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLandingZoneCommandOutput>;
205
205
  updateLandingZone(args: UpdateLandingZoneCommandInput, cb: (err: any, data?: UpdateLandingZoneCommandOutput) => void): void;
206
206
  updateLandingZone(args: UpdateLandingZoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLandingZoneCommandOutput) => void): void;
207
+ /**
208
+ * @see {@link ListBaselinesCommand}
209
+ * @param args - command input.
210
+ * @param paginationConfig - optional pagination config.
211
+ * @returns AsyncIterable of {@link ListBaselinesCommandOutput}.
212
+ */
213
+ paginateListBaselines(args?: ListBaselinesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBaselinesCommandOutput>;
214
+ /**
215
+ * @see {@link ListControlOperationsCommand}
216
+ * @param args - command input.
217
+ * @param paginationConfig - optional pagination config.
218
+ * @returns AsyncIterable of {@link ListControlOperationsCommandOutput}.
219
+ */
220
+ paginateListControlOperations(args?: ListControlOperationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListControlOperationsCommandOutput>;
221
+ /**
222
+ * @see {@link ListEnabledBaselinesCommand}
223
+ * @param args - command input.
224
+ * @param paginationConfig - optional pagination config.
225
+ * @returns AsyncIterable of {@link ListEnabledBaselinesCommandOutput}.
226
+ */
227
+ paginateListEnabledBaselines(args?: ListEnabledBaselinesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEnabledBaselinesCommandOutput>;
228
+ /**
229
+ * @see {@link ListEnabledControlsCommand}
230
+ * @param args - command input.
231
+ * @param paginationConfig - optional pagination config.
232
+ * @returns AsyncIterable of {@link ListEnabledControlsCommandOutput}.
233
+ */
234
+ paginateListEnabledControls(args?: ListEnabledControlsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEnabledControlsCommandOutput>;
235
+ /**
236
+ * @see {@link ListLandingZoneOperationsCommand}
237
+ * @param args - command input.
238
+ * @param paginationConfig - optional pagination config.
239
+ * @returns AsyncIterable of {@link ListLandingZoneOperationsCommandOutput}.
240
+ */
241
+ paginateListLandingZoneOperations(args?: ListLandingZoneOperationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLandingZoneOperationsCommandOutput>;
242
+ /**
243
+ * @see {@link ListLandingZonesCommand}
244
+ * @param args - command input.
245
+ * @param paginationConfig - optional pagination config.
246
+ * @returns AsyncIterable of {@link ListLandingZonesCommandOutput}.
247
+ */
248
+ paginateListLandingZones(args?: ListLandingZonesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLandingZonesCommandOutput>;
207
249
  }
208
250
  /**
209
251
  * <p>Amazon Web Services Control Tower offers application programming interface (API) operations that support programmatic interaction with these types of resources:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/userguide/controls.html"> <i>Controls</i> </a> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DisableControl.html">DisableControl</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_EnableControl.html">EnableControl</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetEnabledControl.html">GetEnabledControl</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetControlOperation.html">GetControlOperation</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListControlOperations.html">ListControlOperations</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListEnabledControls.html">ListEnabledControls</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ResetEnabledControl.html">ResetEnabledControl</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateEnabledControl.html">UpdateEnabledControl</a> </p> </li> </ul> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch.html"> <i>Landing zones</i> </a> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_CreateLandingZone.html">CreateLandingZone</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DeleteLandingZone.html">DeleteLandingZone</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetLandingZone.html">GetLandingZone</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetLandingZoneOperation.html">GetLandingZoneOperation</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListLandingZones.html">ListLandingZones</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListLandingZoneOperations.html">ListLandingZoneOperations</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ResetLandingZone.html">ResetLandingZone</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateLandingZone.html">UpdateLandingZone</a> </p> </li> </ul> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/userguide/types-of-baselines.html"> <i>Baselines</i> </a> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_DisableBaseline.html">DisableBaseline</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_EnableBaseline.html">EnableBaseline</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetBaseline.html">GetBaseline</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetBaselineOperation.html">GetBaselineOperation</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_GetEnabledBaseline.html">GetEnabledBaseline</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListBaselines.html">ListBaselines</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListEnabledBaselines.html">ListEnabledBaselines</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ResetEnabledBaseline.html">ResetEnabledBaseline</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateEnabledBaseline.html">UpdateEnabledBaseline</a> </p> </li> </ul> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/tagging.html"> <i>Tagging</i> </a> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_ListTagsForResource.html">ListTagsForResource</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_TagResource.html">TagResource</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_UntagResource.html">UntagResource</a> </p> </li> </ul> </li> </ul> <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"> <i>Amazon Web Services Control Tower User Guide</i> </a>.</p> <p> <b>About control APIs</b> </p> <p>These interfaces allow you to apply the Amazon Web Services library of pre-defined <i>controls</i> to your organizational units, programmatically. In Amazon Web Services Control Tower, the terms "control" and "guardrail" are synonyms.</p> <p>To call these APIs, you'll need to know:</p> <ul> <li> <p>the <code>controlIdentifier</code> for the control--or guardrail--you are targeting.</p> </li> <li> <p>the ARN associated with the target organizational unit (OU), which we call the <code>targetIdentifier</code>.</p> </li> <li> <p>the ARN associated with a resource that you wish to tag or untag.</p> </li> </ul> <p> <b>To get the <code>controlIdentifier</code> for your Amazon Web Services Control Tower control:</b> </p> <p>The <code>controlIdentifier</code> is an ARN that is specified for each 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> <p> <b>About identifiers for Amazon Web Services Control Tower</b> </p> <p>The Amazon Web Services Control Tower <code>controlIdentifier</code> is unique in each Amazon Web Services Region for each control. You can 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> <p>A quick-reference list of control identifers for the Amazon Web Services Control Tower legacy <i>Strongly recommended</i> and <i>Elective</i> controls is given in <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html.html">Resource identifiers for APIs and controls</a> in the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html"> <i>Amazon Web Services Control Tower Controls Reference Guide</i> </a>. Remember that <i>Mandatory</i> controls cannot be added or removed.</p> <note> <p> <b>Some controls have two identifiers</b> </p> <ul> <li> <p> <b>ARN format for Amazon Web Services Control Tower:</b> <code>arn:aws:controltower:\{REGION\}::control/\{CONTROL_TOWER_OPAQUE_ID\}</code> </p> <p> <b>Example:</b> </p> <p> <code>arn:aws:controltower:us-west-2::control/AWS-GR_AUTOSCALING_LAUNCH_CONFIG_PUBLIC_IP_DISABLED</code> </p> </li> <li> <p> <b>ARN format for Amazon Web Services Control Catalog:</b> <code>arn:\{PARTITION\}:controlcatalog:::control/\{CONTROL_CATALOG_OPAQUE_ID\}</code> </p> </li> </ul> <p>You can find the <code>\{CONTROL_CATALOG_OPAQUE_ID\}</code> in the <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/all-global-identifiers.html"> <i>Amazon Web Services Control Tower Controls Reference Guide</i> </a>, or in the Amazon Web Services Control Tower console, on the <b>Control details</b> page.</p> <p>The Amazon Web Services Control Tower APIs for enabled controls, such as <code>GetEnabledControl</code> and <code>ListEnabledControls</code> always return an ARN of the same type given when the control was enabled.</p> </note> <p> <b>To get the <code>targetIdentifier</code>:</b> </p> <p>The <code>targetIdentifier</code> is the ARN for an OU.</p> <p>In the Amazon Web Services Organizations console, you can find the ARN for the OU on the <b>Organizational unit details</b> page associated with that OU.</p> <note> <p> <b>OU ARN format:</b> </p> <p> <code>arn:$\{Partition\}:organizations::$\{MasterAccountId\}:ou/o-$\{OrganizationId\}/ou-$\{OrganizationalUnitId\}</code> </p> </note> <p> <b> About landing zone APIs</b> </p> <p>You can configure and launch an Amazon Web Services Control Tower landing zone with APIs. For an introduction and steps, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/getting-started-apis.html">Getting started with Amazon Web Services Control Tower using APIs</a>.</p> <p>For an overview of landing zone API operations, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/2023-all.html#landing-zone-apis"> Amazon Web Services Control Tower supports landing zone APIs</a>. The individual API operations for landing zones are detailed in this document, the <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_Operations.html">API reference manual</a>, in the "Actions" section.</p> <p> <b>About baseline APIs</b> </p> <p>You can apply the <code>AWSControlTowerBaseline</code> baseline to an organizational unit (OU) as a way to register the OU with Amazon Web Services Control Tower, programmatically. For a general overview of this capability, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/2024-all.html#baseline-apis">Amazon Web Services Control Tower supports APIs for OU registration and configuration with baselines</a>.</p> <p>You can call the baseline API operations to view the baselines that Amazon Web Services Control Tower enables for your landing zone, on your behalf, when setting up the landing zone. These baselines are read-only baselines.</p> <p>The individual API operations for baselines are detailed in this document, the <a href="https://docs.aws.amazon.com/controltower/latest/APIReference/API_Operations.html">API reference manual</a>, in the "Actions" section. For usage examples, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/baseline-api-examples.html">Baseline API input and output examples with CLI</a>.</p> <p> <b> About Amazon Web Services Control Catalog identifiers</b> </p> <ul> <li> <p>The <code>EnableControl</code> and <code>DisableControl</code> API operations can be called by specifying either the Amazon Web Services Control Tower identifer or the Amazon Web Services Control Catalog identifier. The API response returns the same type of identifier that you specified when calling the API.</p> </li> <li> <p>If you use an Amazon Web Services Control Tower identifier to call the <code>EnableControl</code> API, and then call <code>EnableControl</code> again with an Amazon Web Services Control Catalog identifier, Amazon Web Services Control Tower returns an error message stating that the control is already enabled. Similar behavior applies to the <code>DisableControl</code> API operation. </p> </li> <li> <p>Mandatory controls and the landing-zone-level Region deny control have Amazon Web Services Control Tower identifiers only.</p> </li> </ul> <p class="title"> <b>Details and examples</b> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html">Control API input and output examples with CLI</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/userguide/baseline-api-examples.html">Baseline API input and output examples with CLI</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/enable-controls.html">Enable controls with CloudFormation</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-apis-cfn-setup.html">Launch a landing zone with CloudFormation</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-metadata-tables.html">Control metadata tables (large page)</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-region-tables.html">Control availability by Region tables (large page)</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/control-identifiers.html">List of identifiers for legacy controls</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/controls.html">Controls reference guide</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/controlreference/controls-reference.html">Controls library groupings</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/controltower/latest/userguide/creating-resources-with-cloudformation.html">Creating Amazon Web Services Control Tower resources with Amazon Web Services CloudFormation</a> </p> </li> </ul> <p>To view the open source resource repository on GitHub, see <a href="https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-controltower">aws-cloudformation/aws-cloudformation-resource-providers-controltower</a> </p> <p> <b>Recording API Requests</b> </p> <p>Amazon Web Services Control Tower supports Amazon Web Services CloudTrail, a service that records Amazon Web Services API calls for your Amazon Web Services account and delivers log files to an Amazon S3 bucket. By using information collected by CloudTrail, you can determine which requests the Amazon Web Services Control Tower service received, who made the request and when, and so on. For more about Amazon Web Services Control Tower and its support for CloudTrail, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/logging-using-cloudtrail.html">Logging Amazon Web Services Control Tower Actions with Amazon Web Services CloudTrail</a> in the Amazon Web Services Control Tower User Guide. To learn more about CloudTrail, including how to turn it on and find your log files, see the Amazon Web Services CloudTrail User Guide.</p>
@@ -1,4 +1,8 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
1
+ import {
2
+ HttpHandlerOptions as __HttpHandlerOptions,
3
+ PaginationConfiguration,
4
+ Paginator,
5
+ } from "@smithy/types";
2
6
  import {
3
7
  CreateLandingZoneCommandInput,
4
8
  CreateLandingZoneCommandOutput,
@@ -484,6 +488,48 @@ export interface ControlTower {
484
488
  options: __HttpHandlerOptions,
485
489
  cb: (err: any, data?: UpdateLandingZoneCommandOutput) => void
486
490
  ): void;
491
+ paginateListBaselines(
492
+ args?: ListBaselinesCommandInput,
493
+ paginationConfig?: Pick<
494
+ PaginationConfiguration,
495
+ Exclude<keyof PaginationConfiguration, "client">
496
+ >
497
+ ): Paginator<ListBaselinesCommandOutput>;
498
+ paginateListControlOperations(
499
+ args?: ListControlOperationsCommandInput,
500
+ paginationConfig?: Pick<
501
+ PaginationConfiguration,
502
+ Exclude<keyof PaginationConfiguration, "client">
503
+ >
504
+ ): Paginator<ListControlOperationsCommandOutput>;
505
+ paginateListEnabledBaselines(
506
+ args?: ListEnabledBaselinesCommandInput,
507
+ paginationConfig?: Pick<
508
+ PaginationConfiguration,
509
+ Exclude<keyof PaginationConfiguration, "client">
510
+ >
511
+ ): Paginator<ListEnabledBaselinesCommandOutput>;
512
+ paginateListEnabledControls(
513
+ args?: ListEnabledControlsCommandInput,
514
+ paginationConfig?: Pick<
515
+ PaginationConfiguration,
516
+ Exclude<keyof PaginationConfiguration, "client">
517
+ >
518
+ ): Paginator<ListEnabledControlsCommandOutput>;
519
+ paginateListLandingZoneOperations(
520
+ args?: ListLandingZoneOperationsCommandInput,
521
+ paginationConfig?: Pick<
522
+ PaginationConfiguration,
523
+ Exclude<keyof PaginationConfiguration, "client">
524
+ >
525
+ ): Paginator<ListLandingZoneOperationsCommandOutput>;
526
+ paginateListLandingZones(
527
+ args?: ListLandingZonesCommandInput,
528
+ paginationConfig?: Pick<
529
+ PaginationConfiguration,
530
+ Exclude<keyof PaginationConfiguration, "client">
531
+ >
532
+ ): Paginator<ListLandingZonesCommandOutput>;
487
533
  }
488
534
  export declare class ControlTower
489
535
  extends ControlTowerClient
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.975.0",
4
+ "version": "3.980.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-controltower",
@@ -21,38 +21,38 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.1",
25
- "@aws-sdk/credential-provider-node": "^3.972.1",
26
- "@aws-sdk/middleware-host-header": "^3.972.1",
27
- "@aws-sdk/middleware-logger": "^3.972.1",
28
- "@aws-sdk/middleware-recursion-detection": "^3.972.1",
29
- "@aws-sdk/middleware-user-agent": "^3.972.2",
30
- "@aws-sdk/region-config-resolver": "^3.972.1",
31
- "@aws-sdk/types": "^3.973.0",
32
- "@aws-sdk/util-endpoints": "3.972.0",
33
- "@aws-sdk/util-user-agent-browser": "^3.972.1",
34
- "@aws-sdk/util-user-agent-node": "^3.972.1",
24
+ "@aws-sdk/core": "^3.973.5",
25
+ "@aws-sdk/credential-provider-node": "^3.972.4",
26
+ "@aws-sdk/middleware-host-header": "^3.972.3",
27
+ "@aws-sdk/middleware-logger": "^3.972.3",
28
+ "@aws-sdk/middleware-recursion-detection": "^3.972.3",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.5",
30
+ "@aws-sdk/region-config-resolver": "^3.972.3",
31
+ "@aws-sdk/types": "^3.973.1",
32
+ "@aws-sdk/util-endpoints": "3.980.0",
33
+ "@aws-sdk/util-user-agent-browser": "^3.972.3",
34
+ "@aws-sdk/util-user-agent-node": "^3.972.3",
35
35
  "@smithy/config-resolver": "^4.4.6",
36
- "@smithy/core": "^3.21.1",
36
+ "@smithy/core": "^3.22.0",
37
37
  "@smithy/fetch-http-handler": "^5.3.9",
38
38
  "@smithy/hash-node": "^4.2.8",
39
39
  "@smithy/invalid-dependency": "^4.2.8",
40
40
  "@smithy/middleware-content-length": "^4.2.8",
41
- "@smithy/middleware-endpoint": "^4.4.11",
42
- "@smithy/middleware-retry": "^4.4.27",
41
+ "@smithy/middleware-endpoint": "^4.4.12",
42
+ "@smithy/middleware-retry": "^4.4.29",
43
43
  "@smithy/middleware-serde": "^4.2.9",
44
44
  "@smithy/middleware-stack": "^4.2.8",
45
45
  "@smithy/node-config-provider": "^4.3.8",
46
46
  "@smithy/node-http-handler": "^4.4.8",
47
47
  "@smithy/protocol-http": "^5.3.8",
48
- "@smithy/smithy-client": "^4.10.12",
48
+ "@smithy/smithy-client": "^4.11.1",
49
49
  "@smithy/types": "^4.12.0",
50
50
  "@smithy/url-parser": "^4.2.8",
51
51
  "@smithy/util-base64": "^4.3.0",
52
52
  "@smithy/util-body-length-browser": "^4.2.0",
53
53
  "@smithy/util-body-length-node": "^4.2.1",
54
- "@smithy/util-defaults-mode-browser": "^4.3.26",
55
- "@smithy/util-defaults-mode-node": "^4.2.29",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.28",
55
+ "@smithy/util-defaults-mode-node": "^4.2.31",
56
56
  "@smithy/util-endpoints": "^3.2.8",
57
57
  "@smithy/util-middleware": "^4.2.8",
58
58
  "@smithy/util-retry": "^4.2.8",