@aws-sdk/client-controltower 3.451.0 → 3.458.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/README.md +86 -30
- package/dist-cjs/ControlTower.js +14 -0
- package/dist-cjs/commands/CreateLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/DeleteLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/GetLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/GetLandingZoneOperationCommand.js +51 -0
- package/dist-cjs/commands/ListLandingZonesCommand.js +51 -0
- package/dist-cjs/commands/ResetLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/UpdateLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +21 -1
- package/dist-cjs/pagination/ListLandingZonesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +508 -1
- package/dist-es/ControlTower.js +14 -0
- package/dist-es/commands/CreateLandingZoneCommand.js +47 -0
- package/dist-es/commands/DeleteLandingZoneCommand.js +47 -0
- package/dist-es/commands/GetLandingZoneCommand.js +47 -0
- package/dist-es/commands/GetLandingZoneOperationCommand.js +47 -0
- package/dist-es/commands/ListLandingZonesCommand.js +47 -0
- package/dist-es/commands/ResetLandingZoneCommand.js +47 -0
- package/dist-es/commands/UpdateLandingZoneCommand.js +47 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/pagination/ListLandingZonesPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +493 -0
- package/dist-types/ControlTower.d.ts +64 -15
- package/dist-types/ControlTowerClient.d.ts +24 -17
- package/dist-types/commands/CreateLandingZoneCommand.d.ts +94 -0
- package/dist-types/commands/DeleteLandingZoneCommand.d.ts +92 -0
- package/dist-types/commands/DisableControlCommand.d.ts +5 -5
- package/dist-types/commands/EnableControlCommand.d.ts +5 -5
- package/dist-types/commands/GetControlOperationCommand.d.ts +4 -4
- package/dist-types/commands/GetEnabledControlCommand.d.ts +6 -6
- package/dist-types/commands/GetLandingZoneCommand.d.ts +97 -0
- package/dist-types/commands/GetLandingZoneOperationCommand.d.ts +95 -0
- package/dist-types/commands/ListEnabledControlsCommand.d.ts +7 -7
- package/dist-types/commands/ListLandingZonesCommand.d.ts +93 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/ResetLandingZoneCommand.d.ts +92 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateLandingZoneCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/index.d.ts +15 -15
- package/dist-types/models/models_0.d.ts +400 -12
- package/dist-types/pagination/ListLandingZonesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/ControlTower.d.ts +119 -0
- package/dist-types/ts3.4/ControlTowerClient.d.ts +44 -2
- package/dist-types/ts3.4/commands/CreateLandingZoneCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteLandingZoneCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetLandingZoneCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetLandingZoneOperationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListLandingZonesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ResetLandingZoneCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateLandingZoneCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +99 -0
- package/dist-types/ts3.4/pagination/ListLandingZonesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +3 -3
package/dist-types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>These interfaces allow you to apply the
|
|
3
|
-
* <i>controls</i> to your organizational units, programmatically. In
|
|
2
|
+
* <p>These interfaces allow you to apply the Amazon Web Services library of pre-defined
|
|
3
|
+
* <i>controls</i> to your organizational units, programmatically. In Amazon Web Services Control Tower, the terms "control" and "guardrail" are synonyms.</p>
|
|
4
4
|
* <p>To call these APIs, you'll need to know:</p>
|
|
5
5
|
* <ul>
|
|
6
6
|
* <li>
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
* </p>
|
|
20
20
|
* <p>The <code>controlIdentifier</code> is an ARN that is specified for each
|
|
21
21
|
* 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>
|
|
22
|
-
* <p>The <code>controlIdentifier</code> is unique in each
|
|
23
|
-
* 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> in the <i>
|
|
22
|
+
* <p>The <code>controlIdentifier</code> is unique in each Amazon Web Services Region for each control. You can
|
|
23
|
+
* 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> in the <i>Amazon Web Services Control Tower User Guide.</i>
|
|
24
24
|
* </p>
|
|
25
|
-
* <p>A quick-reference list of control identifers for the
|
|
25
|
+
* <p>A quick-reference list of control identifers for the Amazon Web Services Control Tower legacy <i>Strongly recommended</i> and
|
|
26
26
|
* <i>Elective</i> controls is given in <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html.html">Resource identifiers for
|
|
27
27
|
* APIs and controls</a> in the <a href="https://docs.aws.amazon.com/controltower/latest/userguide/control-identifiers.html">Controls reference guide section</a>
|
|
28
|
-
* of the <i>
|
|
28
|
+
* of the <i>Amazon Web Services Control Tower User Guide</i>. Remember that <i>Mandatory</i> controls
|
|
29
29
|
* cannot be added or removed.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
* <b>To get the <code>targetIdentifier</code>:</b>
|
|
44
44
|
* </p>
|
|
45
45
|
* <p>The <code>targetIdentifier</code> is the ARN for an OU.</p>
|
|
46
|
-
* <p>In the
|
|
46
|
+
* <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>
|
|
47
47
|
* <note>
|
|
48
48
|
* <p>
|
|
49
49
|
* <b>OU ARN format:</b>
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
* </li>
|
|
89
89
|
* <li>
|
|
90
90
|
* <p>
|
|
91
|
-
* <a href="https://docs.aws.amazon.com/controltower/latest/userguide/creating-resources-with-cloudformation.html">Creating
|
|
91
|
+
* <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>
|
|
92
92
|
* </p>
|
|
93
93
|
* </li>
|
|
94
94
|
* </ul>
|
|
@@ -97,13 +97,13 @@
|
|
|
97
97
|
* <p>
|
|
98
98
|
* <b>Recording API Requests</b>
|
|
99
99
|
* </p>
|
|
100
|
-
* <p>
|
|
101
|
-
*
|
|
102
|
-
* CloudTrail, you can determine which requests the
|
|
103
|
-
* the request and when, and so on. For more about
|
|
104
|
-
* CloudTrail, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/logging-using-cloudtrail.html">Logging
|
|
105
|
-
* Actions with
|
|
106
|
-
* CloudTrail, including how to turn it on and find your log files, see the
|
|
100
|
+
* <p>Amazon Web Services Control Tower supports Amazon Web Services CloudTrail, a service that records Amazon Web Services API calls for your
|
|
101
|
+
* Amazon Web Services account and delivers log files to an Amazon S3 bucket. By using information collected by
|
|
102
|
+
* CloudTrail, you can determine which requests the Amazon Web Services Control Tower service received, who made
|
|
103
|
+
* the request and when, and so on. For more about Amazon Web Services Control Tower and its support for
|
|
104
|
+
* CloudTrail, see <a href="https://docs.aws.amazon.com/controltower/latest/userguide/logging-using-cloudtrail.html">Logging Amazon Web Services Control Tower
|
|
105
|
+
* Actions with Amazon Web Services CloudTrail</a> in the Amazon Web Services Control Tower User Guide. To learn more about
|
|
106
|
+
* CloudTrail, including how to turn it on and find your log files, see the Amazon Web Services CloudTrail User
|
|
107
107
|
* Guide.</p>
|
|
108
108
|
*
|
|
109
109
|
* @packageDocumentation
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
3
|
import { ControlTowerServiceException as __BaseException } from "./ControlTowerServiceException";
|
|
3
4
|
/**
|
|
4
5
|
* @public
|
|
5
|
-
* <p>
|
|
6
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
6
7
|
*/
|
|
7
8
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
9
|
readonly name: "AccessDeniedException";
|
|
@@ -91,7 +92,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
91
92
|
}
|
|
92
93
|
/**
|
|
93
94
|
* @public
|
|
94
|
-
* <p>
|
|
95
|
+
* <p>Request was denied due to request throttling.</p>
|
|
95
96
|
*/
|
|
96
97
|
export declare class ThrottlingException extends __BaseException {
|
|
97
98
|
readonly name: "ThrottlingException";
|
|
@@ -121,7 +122,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
121
122
|
}
|
|
122
123
|
/**
|
|
123
124
|
* @public
|
|
124
|
-
* <p>The input fails to satisfy the constraints specified by an
|
|
125
|
+
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
125
126
|
*/
|
|
126
127
|
export declare class ValidationException extends __BaseException {
|
|
127
128
|
readonly name: "ValidationException";
|
|
@@ -274,7 +275,7 @@ export type DriftStatus = (typeof DriftStatus)[keyof typeof DriftStatus];
|
|
|
274
275
|
/**
|
|
275
276
|
* @public
|
|
276
277
|
* <p> The drift summary of the enabled control.</p>
|
|
277
|
-
* <p>
|
|
278
|
+
* <p>Amazon Web Services Control Tower expects the enabled control
|
|
278
279
|
* configuration to include all supported and governed Regions. If the enabled control differs
|
|
279
280
|
* from the expected configuration, it is defined to be in a state of drift. You can repair this drift by resetting the enabled control.</p>
|
|
280
281
|
*/
|
|
@@ -287,21 +288,21 @@ export interface DriftStatusSummary {
|
|
|
287
288
|
* <li>
|
|
288
289
|
* <p>
|
|
289
290
|
* <code>DRIFTED</code>: The <code>enabledControl</code> deployed in this configuration
|
|
290
|
-
* doesn’t match the configuration that
|
|
291
|
+
* doesn’t match the configuration that Amazon Web Services Control Tower expected. </p>
|
|
291
292
|
* </li>
|
|
292
293
|
* <li>
|
|
293
294
|
* <p>
|
|
294
295
|
* <code>IN_SYNC</code>: The <code>enabledControl</code> deployed in this configuration matches
|
|
295
|
-
* the configuration that
|
|
296
|
+
* the configuration that Amazon Web Services Control Tower expected.</p>
|
|
296
297
|
* </li>
|
|
297
298
|
* <li>
|
|
298
299
|
* <p>
|
|
299
|
-
* <code>NOT_CHECKING</code>:
|
|
300
|
+
* <code>NOT_CHECKING</code>: Amazon Web Services Control Tower does not check drift for this enabled
|
|
300
301
|
* control. Drift is not supported for the control type.</p>
|
|
301
302
|
* </li>
|
|
302
303
|
* <li>
|
|
303
304
|
* <p>
|
|
304
|
-
* <code>UNKNOWN</code>:
|
|
305
|
+
* <code>UNKNOWN</code>: Amazon Web Services Control Tower is not able to check the drift status for the
|
|
305
306
|
* enabled control. </p>
|
|
306
307
|
* </li>
|
|
307
308
|
* </ul>
|
|
@@ -354,7 +355,7 @@ export interface EnablementStatusSummary {
|
|
|
354
355
|
}
|
|
355
356
|
/**
|
|
356
357
|
* @public
|
|
357
|
-
* <p>An
|
|
358
|
+
* <p>An Amazon Web Services Region in which Amazon Web Services Control Tower expects to find the control deployed. </p>
|
|
358
359
|
* <p>The expected Regions are based on the Regions that are governed by the landing zone. In
|
|
359
360
|
* certain cases, a control is not actually enabled in the Region as expected, such as during
|
|
360
361
|
* drift, or <a href="https://docs.aws.amazon.com/controltower/latest/userguide/region-how.html#mixed-governance">mixed governance</a>.</p>
|
|
@@ -362,7 +363,7 @@ export interface EnablementStatusSummary {
|
|
|
362
363
|
export interface Region {
|
|
363
364
|
/**
|
|
364
365
|
* @public
|
|
365
|
-
* <p>The
|
|
366
|
+
* <p>The Amazon Web Services Region name.</p>
|
|
366
367
|
*/
|
|
367
368
|
name?: string;
|
|
368
369
|
}
|
|
@@ -388,7 +389,7 @@ export interface EnabledControlDetails {
|
|
|
388
389
|
targetIdentifier?: string;
|
|
389
390
|
/**
|
|
390
391
|
* @public
|
|
391
|
-
* <p>Target
|
|
392
|
+
* <p>Target Amazon Web Services Regions for the enabled control.</p>
|
|
392
393
|
*/
|
|
393
394
|
targetRegions?: Region[];
|
|
394
395
|
/**
|
|
@@ -412,6 +413,393 @@ export interface GetEnabledControlOutput {
|
|
|
412
413
|
*/
|
|
413
414
|
enabledControlDetails: EnabledControlDetails | undefined;
|
|
414
415
|
}
|
|
416
|
+
/**
|
|
417
|
+
* @public
|
|
418
|
+
*/
|
|
419
|
+
export interface CreateLandingZoneInput {
|
|
420
|
+
/**
|
|
421
|
+
* @public
|
|
422
|
+
* <p>The landing zone version. </p>
|
|
423
|
+
*/
|
|
424
|
+
version: string | undefined;
|
|
425
|
+
/**
|
|
426
|
+
* @public
|
|
427
|
+
* <p>The manifest.yaml file is a text file that describes your Amazon Web Services resources. For examples, review
|
|
428
|
+
* <a href="https://docs.aws.amazon.com/controltower/latest/userguide/the-manifest-file">The manifest file</a>. </p>
|
|
429
|
+
*/
|
|
430
|
+
manifest: __DocumentType | undefined;
|
|
431
|
+
/**
|
|
432
|
+
* @public
|
|
433
|
+
* <p>Tags to be applied to the landing zone. </p>
|
|
434
|
+
*/
|
|
435
|
+
tags?: Record<string, string>;
|
|
436
|
+
}
|
|
437
|
+
/**
|
|
438
|
+
* @public
|
|
439
|
+
*/
|
|
440
|
+
export interface CreateLandingZoneOutput {
|
|
441
|
+
/**
|
|
442
|
+
* @public
|
|
443
|
+
* <p>The ARN of the landing zone. </p>
|
|
444
|
+
*/
|
|
445
|
+
arn: string | undefined;
|
|
446
|
+
/**
|
|
447
|
+
* @public
|
|
448
|
+
* <p>A unique identifier assigned to a <code>CreateLandingZone</code> operation. You can use this
|
|
449
|
+
* identifier as an input of <code>GetLandingZoneOperation</code> to check the operation's status. </p>
|
|
450
|
+
*/
|
|
451
|
+
operationIdentifier: string | undefined;
|
|
452
|
+
}
|
|
453
|
+
/**
|
|
454
|
+
* @public
|
|
455
|
+
*/
|
|
456
|
+
export interface DeleteLandingZoneInput {
|
|
457
|
+
/**
|
|
458
|
+
* @public
|
|
459
|
+
* <p>The unique identifier of the landing zone. </p>
|
|
460
|
+
*/
|
|
461
|
+
landingZoneIdentifier: string | undefined;
|
|
462
|
+
}
|
|
463
|
+
/**
|
|
464
|
+
* @public
|
|
465
|
+
*/
|
|
466
|
+
export interface DeleteLandingZoneOutput {
|
|
467
|
+
/**
|
|
468
|
+
* @public
|
|
469
|
+
* <p>A unique identifier assigned to a <code>DeleteLandingZone</code> operation. You can use this
|
|
470
|
+
* identifier as an input of <code>GetLandingZoneOperation</code> to check the operation's status. </p>
|
|
471
|
+
*/
|
|
472
|
+
operationIdentifier: string | undefined;
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* @public
|
|
476
|
+
*/
|
|
477
|
+
export interface GetLandingZoneInput {
|
|
478
|
+
/**
|
|
479
|
+
* @public
|
|
480
|
+
* <p>The unique identifier of the landing zone. </p>
|
|
481
|
+
*/
|
|
482
|
+
landingZoneIdentifier: string | undefined;
|
|
483
|
+
}
|
|
484
|
+
/**
|
|
485
|
+
* @public
|
|
486
|
+
* @enum
|
|
487
|
+
*/
|
|
488
|
+
export declare const LandingZoneDriftStatus: {
|
|
489
|
+
readonly DRIFTED: "DRIFTED";
|
|
490
|
+
readonly IN_SYNC: "IN_SYNC";
|
|
491
|
+
};
|
|
492
|
+
/**
|
|
493
|
+
* @public
|
|
494
|
+
*/
|
|
495
|
+
export type LandingZoneDriftStatus = (typeof LandingZoneDriftStatus)[keyof typeof LandingZoneDriftStatus];
|
|
496
|
+
/**
|
|
497
|
+
* @public
|
|
498
|
+
* <p>The drift status summary of the landing zone. </p>
|
|
499
|
+
* <p>If the landing zone differs from the expected configuration, it is defined to be in a state of
|
|
500
|
+
* drift. You can repair this drift by resetting the landing zone. </p>
|
|
501
|
+
*/
|
|
502
|
+
export interface LandingZoneDriftStatusSummary {
|
|
503
|
+
/**
|
|
504
|
+
* @public
|
|
505
|
+
* <p>The drift status of the landing zone. </p>
|
|
506
|
+
* <p>Valid values:</p>
|
|
507
|
+
* <ul>
|
|
508
|
+
* <li>
|
|
509
|
+
* <p>
|
|
510
|
+
* <code>DRIFTED</code>: The landing zone deployed in this configuration does not match the
|
|
511
|
+
* configuration that Amazon Web Services Control Tower expected. </p>
|
|
512
|
+
* </li>
|
|
513
|
+
* <li>
|
|
514
|
+
* <p>
|
|
515
|
+
* <code>IN_SYNC</code>: The landing zone deployed in this configuration matches the
|
|
516
|
+
* configuration that Amazon Web Services Control Tower expected. </p>
|
|
517
|
+
* </li>
|
|
518
|
+
* </ul>
|
|
519
|
+
*/
|
|
520
|
+
status?: LandingZoneDriftStatus;
|
|
521
|
+
}
|
|
522
|
+
/**
|
|
523
|
+
* @public
|
|
524
|
+
* @enum
|
|
525
|
+
*/
|
|
526
|
+
export declare const LandingZoneStatus: {
|
|
527
|
+
readonly ACTIVE: "ACTIVE";
|
|
528
|
+
readonly FAILED: "FAILED";
|
|
529
|
+
readonly PROCESSING: "PROCESSING";
|
|
530
|
+
};
|
|
531
|
+
/**
|
|
532
|
+
* @public
|
|
533
|
+
*/
|
|
534
|
+
export type LandingZoneStatus = (typeof LandingZoneStatus)[keyof typeof LandingZoneStatus];
|
|
535
|
+
/**
|
|
536
|
+
* @public
|
|
537
|
+
* <p>Information about the landing zone. </p>
|
|
538
|
+
*/
|
|
539
|
+
export interface LandingZoneDetail {
|
|
540
|
+
/**
|
|
541
|
+
* @public
|
|
542
|
+
* <p>The landing zone's current deployed version. </p>
|
|
543
|
+
*/
|
|
544
|
+
version: string | undefined;
|
|
545
|
+
/**
|
|
546
|
+
* @public
|
|
547
|
+
* <p>The landing zone manifest.yaml text file that specifies the landing zone configurations. </p>
|
|
548
|
+
*/
|
|
549
|
+
manifest: __DocumentType | undefined;
|
|
550
|
+
/**
|
|
551
|
+
* @public
|
|
552
|
+
* <p>The ARN of the landing zone. </p>
|
|
553
|
+
*/
|
|
554
|
+
arn?: string;
|
|
555
|
+
/**
|
|
556
|
+
* @public
|
|
557
|
+
* <p>The landing zone deployment status. </p>
|
|
558
|
+
* <p>Valid values:</p>
|
|
559
|
+
* <ul>
|
|
560
|
+
* <li>
|
|
561
|
+
* <p>
|
|
562
|
+
* <code>ACTIVE</code>: The landing zone is actively deployed. </p>
|
|
563
|
+
* </li>
|
|
564
|
+
* <li>
|
|
565
|
+
* <p>
|
|
566
|
+
* <code>PROCESSING</code>: The landing zone is processing deployment. </p>
|
|
567
|
+
* </li>
|
|
568
|
+
* <li>
|
|
569
|
+
* <p>
|
|
570
|
+
* <code>FAILED</code>: The landing zone failed deployment. </p>
|
|
571
|
+
* </li>
|
|
572
|
+
* </ul>
|
|
573
|
+
*/
|
|
574
|
+
status?: LandingZoneStatus;
|
|
575
|
+
/**
|
|
576
|
+
* @public
|
|
577
|
+
* <p>The latest available version of the landing zone. </p>
|
|
578
|
+
*/
|
|
579
|
+
latestAvailableVersion?: string;
|
|
580
|
+
/**
|
|
581
|
+
* @public
|
|
582
|
+
* <p>The drift status of the landing zone. </p>
|
|
583
|
+
*/
|
|
584
|
+
driftStatus?: LandingZoneDriftStatusSummary;
|
|
585
|
+
}
|
|
586
|
+
/**
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
589
|
+
export interface GetLandingZoneOutput {
|
|
590
|
+
/**
|
|
591
|
+
* @public
|
|
592
|
+
* <p>Information about the landing zone. </p>
|
|
593
|
+
*/
|
|
594
|
+
landingZone: LandingZoneDetail | undefined;
|
|
595
|
+
}
|
|
596
|
+
/**
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
export interface GetLandingZoneOperationInput {
|
|
600
|
+
/**
|
|
601
|
+
* @public
|
|
602
|
+
* <p>A unique identifier assigned to a landing zone operation. </p>
|
|
603
|
+
*/
|
|
604
|
+
operationIdentifier: string | undefined;
|
|
605
|
+
}
|
|
606
|
+
/**
|
|
607
|
+
* @public
|
|
608
|
+
* @enum
|
|
609
|
+
*/
|
|
610
|
+
export declare const LandingZoneOperationType: {
|
|
611
|
+
readonly CREATE: "CREATE";
|
|
612
|
+
readonly DELETE: "DELETE";
|
|
613
|
+
readonly RESET: "RESET";
|
|
614
|
+
readonly UPDATE: "UPDATE";
|
|
615
|
+
};
|
|
616
|
+
/**
|
|
617
|
+
* @public
|
|
618
|
+
*/
|
|
619
|
+
export type LandingZoneOperationType = (typeof LandingZoneOperationType)[keyof typeof LandingZoneOperationType];
|
|
620
|
+
/**
|
|
621
|
+
* @public
|
|
622
|
+
* @enum
|
|
623
|
+
*/
|
|
624
|
+
export declare const LandingZoneOperationStatus: {
|
|
625
|
+
readonly FAILED: "FAILED";
|
|
626
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
627
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
628
|
+
};
|
|
629
|
+
/**
|
|
630
|
+
* @public
|
|
631
|
+
*/
|
|
632
|
+
export type LandingZoneOperationStatus = (typeof LandingZoneOperationStatus)[keyof typeof LandingZoneOperationStatus];
|
|
633
|
+
/**
|
|
634
|
+
* @public
|
|
635
|
+
* <p>Information about a landing zone operation. </p>
|
|
636
|
+
*/
|
|
637
|
+
export interface LandingZoneOperationDetail {
|
|
638
|
+
/**
|
|
639
|
+
* @public
|
|
640
|
+
* <p>The landing zone operation type. </p>
|
|
641
|
+
* <p>Valid values:</p>
|
|
642
|
+
* <ul>
|
|
643
|
+
* <li>
|
|
644
|
+
* <p>
|
|
645
|
+
* <code>DELETE</code>: The <code>DeleteLandingZone</code> operation. </p>
|
|
646
|
+
* </li>
|
|
647
|
+
* <li>
|
|
648
|
+
* <p>
|
|
649
|
+
* <code>CREATE</code>: The <code>CreateLandingZone</code> operation. </p>
|
|
650
|
+
* </li>
|
|
651
|
+
* <li>
|
|
652
|
+
* <p>
|
|
653
|
+
* <code>UPDATE</code>: The <code>UpdateLandingZone</code> operation. </p>
|
|
654
|
+
* </li>
|
|
655
|
+
* <li>
|
|
656
|
+
* <p>
|
|
657
|
+
* <code>RESET</code>: The <code>ResetLandingZone</code> operation. </p>
|
|
658
|
+
* </li>
|
|
659
|
+
* </ul>
|
|
660
|
+
*/
|
|
661
|
+
operationType?: LandingZoneOperationType;
|
|
662
|
+
/**
|
|
663
|
+
* @public
|
|
664
|
+
* <p>The landing zone operation start time. </p>
|
|
665
|
+
*/
|
|
666
|
+
startTime?: Date;
|
|
667
|
+
/**
|
|
668
|
+
* @public
|
|
669
|
+
* <p>The landing zone operation end time. </p>
|
|
670
|
+
*/
|
|
671
|
+
endTime?: Date;
|
|
672
|
+
/**
|
|
673
|
+
* @public
|
|
674
|
+
* <p>The landing zone operation status. </p>
|
|
675
|
+
* <p>Valid values:</p>
|
|
676
|
+
* <ul>
|
|
677
|
+
* <li>
|
|
678
|
+
* <p>
|
|
679
|
+
* <code>SUCCEEDED</code>: The landing zone operation succeeded. </p>
|
|
680
|
+
* </li>
|
|
681
|
+
* <li>
|
|
682
|
+
* <p>
|
|
683
|
+
* <code>IN_PROGRESS</code>: The landing zone operation is in progress. </p>
|
|
684
|
+
* </li>
|
|
685
|
+
* <li>
|
|
686
|
+
* <p>
|
|
687
|
+
* <code>FAILED</code>: The landing zone operation failed. </p>
|
|
688
|
+
* </li>
|
|
689
|
+
* </ul>
|
|
690
|
+
*/
|
|
691
|
+
status?: LandingZoneOperationStatus;
|
|
692
|
+
/**
|
|
693
|
+
* @public
|
|
694
|
+
* <p>If the operation result is FAILED, this string contains a message explaining why the operation failed. </p>
|
|
695
|
+
*/
|
|
696
|
+
statusMessage?: string;
|
|
697
|
+
}
|
|
698
|
+
/**
|
|
699
|
+
* @public
|
|
700
|
+
*/
|
|
701
|
+
export interface GetLandingZoneOperationOutput {
|
|
702
|
+
/**
|
|
703
|
+
* @public
|
|
704
|
+
* <p>The landing zone operation details. </p>
|
|
705
|
+
*/
|
|
706
|
+
operationDetails: LandingZoneOperationDetail | undefined;
|
|
707
|
+
}
|
|
708
|
+
/**
|
|
709
|
+
* @public
|
|
710
|
+
*/
|
|
711
|
+
export interface ListLandingZonesInput {
|
|
712
|
+
/**
|
|
713
|
+
* @public
|
|
714
|
+
* <p>The token to continue the list from a previous API call with the same parameters. </p>
|
|
715
|
+
*/
|
|
716
|
+
nextToken?: string;
|
|
717
|
+
/**
|
|
718
|
+
* @public
|
|
719
|
+
* <p>The maximum number of returned landing zone ARNs. </p>
|
|
720
|
+
*/
|
|
721
|
+
maxResults?: number;
|
|
722
|
+
}
|
|
723
|
+
/**
|
|
724
|
+
* @public
|
|
725
|
+
* <p>Returns a summary of information about a landing zone. </p>
|
|
726
|
+
*/
|
|
727
|
+
export interface LandingZoneSummary {
|
|
728
|
+
/**
|
|
729
|
+
* @public
|
|
730
|
+
* <p>The ARN of the landing zone. </p>
|
|
731
|
+
*/
|
|
732
|
+
arn?: string;
|
|
733
|
+
}
|
|
734
|
+
/**
|
|
735
|
+
* @public
|
|
736
|
+
*/
|
|
737
|
+
export interface ListLandingZonesOutput {
|
|
738
|
+
/**
|
|
739
|
+
* @public
|
|
740
|
+
* <p>The ARN of the landing zone. </p>
|
|
741
|
+
*/
|
|
742
|
+
landingZones: LandingZoneSummary[] | undefined;
|
|
743
|
+
/**
|
|
744
|
+
* @public
|
|
745
|
+
* <p>Retrieves the next page of results. If the string is empty, the current response is the end of the results. </p>
|
|
746
|
+
*/
|
|
747
|
+
nextToken?: string;
|
|
748
|
+
}
|
|
749
|
+
/**
|
|
750
|
+
* @public
|
|
751
|
+
*/
|
|
752
|
+
export interface ResetLandingZoneInput {
|
|
753
|
+
/**
|
|
754
|
+
* @public
|
|
755
|
+
* <p>The unique identifier of the landing zone. </p>
|
|
756
|
+
*/
|
|
757
|
+
landingZoneIdentifier: string | undefined;
|
|
758
|
+
}
|
|
759
|
+
/**
|
|
760
|
+
* @public
|
|
761
|
+
*/
|
|
762
|
+
export interface ResetLandingZoneOutput {
|
|
763
|
+
/**
|
|
764
|
+
* @public
|
|
765
|
+
* <p>A unique identifier assigned to a <code>ResetLandingZone</code> operation. You can use this
|
|
766
|
+
* identifier as an input of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
|
|
767
|
+
*/
|
|
768
|
+
operationIdentifier: string | undefined;
|
|
769
|
+
}
|
|
770
|
+
/**
|
|
771
|
+
* @public
|
|
772
|
+
*/
|
|
773
|
+
export interface UpdateLandingZoneInput {
|
|
774
|
+
/**
|
|
775
|
+
* @public
|
|
776
|
+
* <p>The landing zone version. </p>
|
|
777
|
+
*/
|
|
778
|
+
version: string | undefined;
|
|
779
|
+
/**
|
|
780
|
+
* @public
|
|
781
|
+
* <p>The manifest.yaml file is a text file that describes your Amazon Web Services resources. For examples, review
|
|
782
|
+
* <a href="https://docs.aws.amazon.com/controltower/latest/userguide/the-manifest-file">The manifest file</a>
|
|
783
|
+
* </p>
|
|
784
|
+
*/
|
|
785
|
+
manifest: __DocumentType | undefined;
|
|
786
|
+
/**
|
|
787
|
+
* @public
|
|
788
|
+
* <p>The unique identifier of the landing zone. </p>
|
|
789
|
+
*/
|
|
790
|
+
landingZoneIdentifier: string | undefined;
|
|
791
|
+
}
|
|
792
|
+
/**
|
|
793
|
+
* @public
|
|
794
|
+
*/
|
|
795
|
+
export interface UpdateLandingZoneOutput {
|
|
796
|
+
/**
|
|
797
|
+
* @public
|
|
798
|
+
* <p>A unique identifier assigned to a <code>UpdateLandingZone</code> operation. You can use this
|
|
799
|
+
* identifier as an input of <code>GetLandingZoneOperation</code> to check the operation's status.</p>
|
|
800
|
+
*/
|
|
801
|
+
operationIdentifier: string | undefined;
|
|
802
|
+
}
|
|
415
803
|
/**
|
|
416
804
|
* @public
|
|
417
805
|
*/
|
|
@@ -471,7 +859,7 @@ export interface EnabledControlSummary {
|
|
|
471
859
|
export interface ListEnabledControlsOutput {
|
|
472
860
|
/**
|
|
473
861
|
* @public
|
|
474
|
-
* <p>Lists the controls enabled by
|
|
862
|
+
* <p>Lists the controls enabled by Amazon Web Services Control Tower on the specified organizational unit and
|
|
475
863
|
* the accounts it contains.</p>
|
|
476
864
|
*/
|
|
477
865
|
enabledControls: EnabledControlSummary[] | undefined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListLandingZonesCommandInput, ListLandingZonesCommandOutput } from "../commands/ListLandingZonesCommand";
|
|
3
|
+
import { ControlTowerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListLandingZones(config: ControlTowerPaginationConfiguration, input: ListLandingZonesCommandInput, ...additionalArguments: any): Paginator<ListLandingZonesCommandOutput>;
|