@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,32 +16,85 @@ export declare class AccessDeniedException extends __BaseException {
16
16
  /**
17
17
  * @public
18
18
  */
19
- export interface GetBaselineInput {
19
+ export interface GetBaselineOperationInput {
20
20
  /**
21
- * <p>The ARN of the <code>Baseline</code> resource to be retrieved.</p>
21
+ * <p>The operation ID returned from mutating asynchronous APIs (Enable, Disable, Update, Reset).</p>
22
22
  * @public
23
23
  */
24
- baselineIdentifier: string | undefined;
24
+ operationIdentifier: string | undefined;
25
25
  }
26
26
  /**
27
27
  * @public
28
+ * @enum
28
29
  */
29
- export interface GetBaselineOutput {
30
+ export declare const BaselineOperationType: {
31
+ readonly DISABLE_BASELINE: "DISABLE_BASELINE";
32
+ readonly ENABLE_BASELINE: "ENABLE_BASELINE";
33
+ readonly RESET_ENABLED_BASELINE: "RESET_ENABLED_BASELINE";
34
+ readonly UPDATE_ENABLED_BASELINE: "UPDATE_ENABLED_BASELINE";
35
+ };
36
+ /**
37
+ * @public
38
+ */
39
+ export type BaselineOperationType = (typeof BaselineOperationType)[keyof typeof BaselineOperationType];
40
+ /**
41
+ * @public
42
+ * @enum
43
+ */
44
+ export declare const BaselineOperationStatus: {
45
+ readonly FAILED: "FAILED";
46
+ readonly IN_PROGRESS: "IN_PROGRESS";
47
+ readonly SUCCEEDED: "SUCCEEDED";
48
+ };
49
+ /**
50
+ * @public
51
+ */
52
+ export type BaselineOperationStatus = (typeof BaselineOperationStatus)[keyof typeof BaselineOperationStatus];
53
+ /**
54
+ * <p>An object of shape <code>BaselineOperation</code>, returning details about the specified <code>Baseline</code> operation ID.</p>
55
+ * @public
56
+ */
57
+ export interface BaselineOperation {
30
58
  /**
31
- * <p>The baseline ARN.</p>
59
+ * <p>The identifier of the specified operation.</p>
32
60
  * @public
33
61
  */
34
- arn: string | undefined;
62
+ operationIdentifier?: string;
35
63
  /**
36
- * <p>A user-friendly name for the baseline.</p>
64
+ * <p>An enumerated type (<code>enum</code>) with possible values of <code>ENABLE_BASELINE</code>, <code>DISABLE_BASELINE</code>, <code>UPDATE_ENABLED_BASELINE</code>, or <code>RESET_ENABLED_BASELINE</code>.</p>
37
65
  * @public
38
66
  */
39
- name: string | undefined;
67
+ operationType?: BaselineOperationType;
40
68
  /**
41
- * <p>A description of the baseline.</p>
69
+ * <p>An enumerated type (<code>enum</code>) with possible values of <code>SUCCEEDED</code>, <code>FAILED</code>, or <code>IN_PROGRESS</code>.</p>
42
70
  * @public
43
71
  */
44
- description?: string;
72
+ status?: BaselineOperationStatus;
73
+ /**
74
+ * <p>The start time of the operation, in ISO 8601 format.</p>
75
+ * @public
76
+ */
77
+ startTime?: Date;
78
+ /**
79
+ * <p>The end time of the operation (if applicable), in ISO 8601 format.</p>
80
+ * @public
81
+ */
82
+ endTime?: Date;
83
+ /**
84
+ * <p>A status message that gives more information about the operation's status, if applicable.</p>
85
+ * @public
86
+ */
87
+ statusMessage?: string;
88
+ }
89
+ /**
90
+ * @public
91
+ */
92
+ export interface GetBaselineOperationOutput {
93
+ /**
94
+ * <p>A <code>baselineOperation</code> object that shows information about the specified operation ID.</p>
95
+ * @public
96
+ */
97
+ baselineOperation: BaselineOperation | undefined;
45
98
  }
46
99
  /**
47
100
  * <p>An unexpected error occurred during processing of a request.</p>
@@ -110,6 +163,36 @@ export declare class ValidationException extends __BaseException {
110
163
  */
111
164
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
112
165
  }
166
+ /**
167
+ * @public
168
+ */
169
+ export interface GetBaselineInput {
170
+ /**
171
+ * <p>The ARN of the <code>Baseline</code> resource to be retrieved.</p>
172
+ * @public
173
+ */
174
+ baselineIdentifier: string | undefined;
175
+ }
176
+ /**
177
+ * @public
178
+ */
179
+ export interface GetBaselineOutput {
180
+ /**
181
+ * <p>The baseline ARN.</p>
182
+ * @public
183
+ */
184
+ arn: string | undefined;
185
+ /**
186
+ * <p>A user-friendly name for the baseline.</p>
187
+ * @public
188
+ */
189
+ name: string | undefined;
190
+ /**
191
+ * <p>A description of the baseline.</p>
192
+ * @public
193
+ */
194
+ description?: string;
195
+ }
113
196
  /**
114
197
  * @public
115
198
  */
@@ -261,7 +344,7 @@ export interface GetControlOperationOutput {
261
344
  controlOperation: ControlOperation | undefined;
262
345
  }
263
346
  /**
264
- * <p>A filter object that lets you call <code>ListCOntrolOperations</code> with a specific filter.</p>
347
+ * <p>A filter object that lets you call <code>ListControlOperations</code> with a specific filter.</p>
265
348
  * @public
266
349
  */
267
350
  export interface ControlOperationFilter {
@@ -367,7 +450,7 @@ export interface ControlOperationSummary {
367
450
  */
368
451
  export interface ListControlOperationsOutput {
369
452
  /**
370
- * <p>Returns a list of output from control operations. PLACEHOLDER </p>
453
+ * <p>Returns a list of output from control operations. </p>
371
454
  * @public
372
455
  */
373
456
  controlOperations: ControlOperationSummary[] | undefined;
@@ -510,89 +593,6 @@ export interface EnableBaselineOutput {
510
593
  */
511
594
  arn: string | undefined;
512
595
  }
513
- /**
514
- * @public
515
- */
516
- export interface GetBaselineOperationInput {
517
- /**
518
- * <p>The operation ID returned from mutating asynchronous APIs (Enable, Disable, Update, Reset).</p>
519
- * @public
520
- */
521
- operationIdentifier: string | undefined;
522
- }
523
- /**
524
- * @public
525
- * @enum
526
- */
527
- export declare const BaselineOperationType: {
528
- readonly DISABLE_BASELINE: "DISABLE_BASELINE";
529
- readonly ENABLE_BASELINE: "ENABLE_BASELINE";
530
- readonly RESET_ENABLED_BASELINE: "RESET_ENABLED_BASELINE";
531
- readonly UPDATE_ENABLED_BASELINE: "UPDATE_ENABLED_BASELINE";
532
- };
533
- /**
534
- * @public
535
- */
536
- export type BaselineOperationType = (typeof BaselineOperationType)[keyof typeof BaselineOperationType];
537
- /**
538
- * @public
539
- * @enum
540
- */
541
- export declare const BaselineOperationStatus: {
542
- readonly FAILED: "FAILED";
543
- readonly IN_PROGRESS: "IN_PROGRESS";
544
- readonly SUCCEEDED: "SUCCEEDED";
545
- };
546
- /**
547
- * @public
548
- */
549
- export type BaselineOperationStatus = (typeof BaselineOperationStatus)[keyof typeof BaselineOperationStatus];
550
- /**
551
- * <p>An object of shape <code>BaselineOperation</code>, returning details about the specified <code>Baseline</code> operation ID.</p>
552
- * @public
553
- */
554
- export interface BaselineOperation {
555
- /**
556
- * <p>The identifier of the specified operation.</p>
557
- * @public
558
- */
559
- operationIdentifier?: string;
560
- /**
561
- * <p>An enumerated type (<code>enum</code>) with possible values of <code>ENABLE_BASELINE</code>, <code>DISABLE_BASELINE</code>, <code>UPDATE_ENABLED_BASELINE</code>, or <code>RESET_ENABLED_BASELINE</code>.</p>
562
- * @public
563
- */
564
- operationType?: BaselineOperationType;
565
- /**
566
- * <p>An enumerated type (<code>enum</code>) with possible values of <code>SUCCEEDED</code>, <code>FAILED</code>, or <code>IN_PROGRESS</code>.</p>
567
- * @public
568
- */
569
- status?: BaselineOperationStatus;
570
- /**
571
- * <p>The start time of the operation, in ISO 8601 format.</p>
572
- * @public
573
- */
574
- startTime?: Date;
575
- /**
576
- * <p>The end time of the operation (if applicable), in ISO 8601 format.</p>
577
- * @public
578
- */
579
- endTime?: Date;
580
- /**
581
- * <p>A status message that gives more information about the operation's status, if applicable.</p>
582
- * @public
583
- */
584
- statusMessage?: string;
585
- }
586
- /**
587
- * @public
588
- */
589
- export interface GetBaselineOperationOutput {
590
- /**
591
- * <p>A <code>baselineOperation</code> object that shows information about the specified operation ID.</p>
592
- * @public
593
- */
594
- baselineOperation: BaselineOperation | undefined;
595
- }
596
596
  /**
597
597
  * @public
598
598
  */
@@ -633,32 +633,32 @@ export declare const EnablementStatus: {
633
633
  */
634
634
  export type EnablementStatus = (typeof EnablementStatus)[keyof typeof EnablementStatus];
635
635
  /**
636
- * <p>The deployment summary of the enabled control.</p>
636
+ * <p>The deployment summary of an <code>EnabledControl</code> or <code>EnabledBaseline</code> resource.</p>
637
637
  * @public
638
638
  */
639
639
  export interface EnablementStatusSummary {
640
640
  /**
641
- * <p> The deployment status of the enabled control.</p>
641
+ * <p> The deployment status of the enabled resource.</p>
642
642
  * <p>Valid values:</p>
643
643
  * <ul>
644
644
  * <li>
645
645
  * <p>
646
- * <code>SUCCEEDED</code>: The <code>enabledControl</code> configuration was deployed successfully.</p>
646
+ * <code>SUCCEEDED</code>: The <code>EnabledControl</code> or <code>EnabledBaseline</code> configuration was deployed successfully.</p>
647
647
  * </li>
648
648
  * <li>
649
649
  * <p>
650
- * <code>UNDER_CHANGE</code>: The <code>enabledControl</code> configuration is changing. </p>
650
+ * <code>UNDER_CHANGE</code>: The <code>EnabledControl</code> or <code>EnabledBaseline</code> configuration is changing. </p>
651
651
  * </li>
652
652
  * <li>
653
653
  * <p>
654
- * <code>FAILED</code>: The <code>enabledControl</code> configuration failed to deploy.</p>
654
+ * <code>FAILED</code>: The <code>EnabledControl</code> or <code>EnabledBaseline</code> configuration failed to deploy.</p>
655
655
  * </li>
656
656
  * </ul>
657
657
  * @public
658
658
  */
659
659
  status?: EnablementStatus;
660
660
  /**
661
- * <p>The last operation identifier for the enabled control.</p>
661
+ * <p>The last operation identifier for the enabled resource.</p>
662
662
  * @public
663
663
  */
664
664
  lastOperationIdentifier?: string;
@@ -689,7 +689,7 @@ export interface EnabledBaselineDetails {
689
689
  */
690
690
  targetIdentifier: string | undefined;
691
691
  /**
692
- * <p>The deployment summary of the enabled control.</p>
692
+ * <p>The deployment summary of an <code>EnabledControl</code> or <code>EnabledBaseline</code> resource.</p>
693
693
  * @public
694
694
  */
695
695
  statusSummary: EnablementStatusSummary | undefined;
@@ -771,7 +771,7 @@ export interface EnabledBaselineSummary {
771
771
  */
772
772
  targetIdentifier: string | undefined;
773
773
  /**
774
- * <p>The deployment summary of the enabled control.</p>
774
+ * <p>The deployment summary of an <code>EnabledControl</code> or <code>EnabledBaseline</code> resource.</p>
775
775
  * @public
776
776
  */
777
777
  statusSummary: EnablementStatusSummary | undefined;
@@ -1083,7 +1083,7 @@ export interface ListEnabledControlsInput {
1083
1083
  */
1084
1084
  maxResults?: number;
1085
1085
  /**
1086
- * <p>An input filter for the <code>ListCEnabledControls</code> API that lets you select the types of control operations to view.</p>
1086
+ * <p>An input filter for the <code>ListEnabledControls</code> API that lets you select the types of control operations to view.</p>
1087
1087
  * @public
1088
1088
  */
1089
1089
  filter?: EnabledControlFilter;
@@ -1165,6 +1165,194 @@ export interface UpdateEnabledControlOutput {
1165
1165
  */
1166
1166
  operationIdentifier: string | undefined;
1167
1167
  }
1168
+ /**
1169
+ * @public
1170
+ */
1171
+ export interface GetLandingZoneOperationInput {
1172
+ /**
1173
+ * <p>A unique identifier assigned to a landing zone operation.</p>
1174
+ * @public
1175
+ */
1176
+ operationIdentifier: string | undefined;
1177
+ }
1178
+ /**
1179
+ * @public
1180
+ * @enum
1181
+ */
1182
+ export declare const LandingZoneOperationType: {
1183
+ readonly CREATE: "CREATE";
1184
+ readonly DELETE: "DELETE";
1185
+ readonly RESET: "RESET";
1186
+ readonly UPDATE: "UPDATE";
1187
+ };
1188
+ /**
1189
+ * @public
1190
+ */
1191
+ export type LandingZoneOperationType = (typeof LandingZoneOperationType)[keyof typeof LandingZoneOperationType];
1192
+ /**
1193
+ * @public
1194
+ * @enum
1195
+ */
1196
+ export declare const LandingZoneOperationStatus: {
1197
+ readonly FAILED: "FAILED";
1198
+ readonly IN_PROGRESS: "IN_PROGRESS";
1199
+ readonly SUCCEEDED: "SUCCEEDED";
1200
+ };
1201
+ /**
1202
+ * @public
1203
+ */
1204
+ export type LandingZoneOperationStatus = (typeof LandingZoneOperationStatus)[keyof typeof LandingZoneOperationStatus];
1205
+ /**
1206
+ * <p>Information about a landing zone operation.</p>
1207
+ * @public
1208
+ */
1209
+ export interface LandingZoneOperationDetail {
1210
+ /**
1211
+ * <p>The landing zone operation type. </p>
1212
+ * <p>Valid values:</p>
1213
+ * <ul>
1214
+ * <li>
1215
+ * <p>
1216
+ * <code>DELETE</code>: The <code>DeleteLandingZone</code> operation. </p>
1217
+ * </li>
1218
+ * <li>
1219
+ * <p>
1220
+ * <code>CREATE</code>: The <code>CreateLandingZone</code> operation. </p>
1221
+ * </li>
1222
+ * <li>
1223
+ * <p>
1224
+ * <code>UPDATE</code>: The <code>UpdateLandingZone</code> operation. </p>
1225
+ * </li>
1226
+ * <li>
1227
+ * <p>
1228
+ * <code>RESET</code>: The <code>ResetLandingZone</code> operation. </p>
1229
+ * </li>
1230
+ * </ul>
1231
+ * @public
1232
+ */
1233
+ operationType?: LandingZoneOperationType;
1234
+ /**
1235
+ * <p>The <code>operationIdentifier</code> of the landing zone operation.</p>
1236
+ * @public
1237
+ */
1238
+ operationIdentifier?: string;
1239
+ /**
1240
+ * <p>Valid values:</p>
1241
+ * <ul>
1242
+ * <li>
1243
+ * <p>
1244
+ * <code>SUCCEEDED</code>: The landing zone operation succeeded. </p>
1245
+ * </li>
1246
+ * <li>
1247
+ * <p>
1248
+ * <code>IN_PROGRESS</code>: The landing zone operation is in progress. </p>
1249
+ * </li>
1250
+ * <li>
1251
+ * <p>
1252
+ * <code>FAILED</code>: The landing zone operation failed. </p>
1253
+ * </li>
1254
+ * </ul>
1255
+ * @public
1256
+ */
1257
+ status?: LandingZoneOperationStatus;
1258
+ /**
1259
+ * <p>The landing zone operation start time.</p>
1260
+ * @public
1261
+ */
1262
+ startTime?: Date;
1263
+ /**
1264
+ * <p>The landing zone operation end time.</p>
1265
+ * @public
1266
+ */
1267
+ endTime?: Date;
1268
+ /**
1269
+ * <p>If the operation result is FAILED, this string contains a message explaining why the operation failed.</p>
1270
+ * @public
1271
+ */
1272
+ statusMessage?: string;
1273
+ }
1274
+ /**
1275
+ * @public
1276
+ */
1277
+ export interface GetLandingZoneOperationOutput {
1278
+ /**
1279
+ * <p>Details about a landing zone operation.</p>
1280
+ * @public
1281
+ */
1282
+ operationDetails: LandingZoneOperationDetail | undefined;
1283
+ }
1284
+ /**
1285
+ * <p>A filter object that lets you call <code>ListLandingZoneOperations</code> with a specific filter.</p>
1286
+ * @public
1287
+ */
1288
+ export interface LandingZoneOperationFilter {
1289
+ /**
1290
+ * <p>The set of landing zone operation types selected by the filter.</p>
1291
+ * @public
1292
+ */
1293
+ types?: LandingZoneOperationType[];
1294
+ /**
1295
+ * <p>The statuses of the set of landing zone operations selected by the filter.</p>
1296
+ * @public
1297
+ */
1298
+ statuses?: LandingZoneOperationStatus[];
1299
+ }
1300
+ /**
1301
+ * @public
1302
+ */
1303
+ export interface ListLandingZoneOperationsInput {
1304
+ /**
1305
+ * <p>An input filter for the <code>ListLandingZoneOperations</code> API that lets you select the types of landing zone operations to view.</p>
1306
+ * @public
1307
+ */
1308
+ filter?: LandingZoneOperationFilter;
1309
+ /**
1310
+ * <p>The token to continue the list from a previous API call with the same parameters.</p>
1311
+ * @public
1312
+ */
1313
+ nextToken?: string;
1314
+ /**
1315
+ * <p>How many results to return per API call.</p>
1316
+ * @public
1317
+ */
1318
+ maxResults?: number;
1319
+ }
1320
+ /**
1321
+ * <p>Returns a summary of information about a landing zone operation.</p>
1322
+ * @public
1323
+ */
1324
+ export interface LandingZoneOperationSummary {
1325
+ /**
1326
+ * <p>The type of the landing zone operation.</p>
1327
+ * @public
1328
+ */
1329
+ operationType?: LandingZoneOperationType;
1330
+ /**
1331
+ * <p>The <code>operationIdentifier</code> of the landing zone operation.</p>
1332
+ * @public
1333
+ */
1334
+ operationIdentifier?: string;
1335
+ /**
1336
+ * <p>The status of the landing zone operation.</p>
1337
+ * @public
1338
+ */
1339
+ status?: LandingZoneOperationStatus;
1340
+ }
1341
+ /**
1342
+ * @public
1343
+ */
1344
+ export interface ListLandingZoneOperationsOutput {
1345
+ /**
1346
+ * <p>Lists landing zone operations.</p>
1347
+ * @public
1348
+ */
1349
+ landingZoneOperations: LandingZoneOperationSummary[] | undefined;
1350
+ /**
1351
+ * <p>Retrieves the next page of results. If the string is empty, the response is the end of the results.</p>
1352
+ * @public
1353
+ */
1354
+ nextToken?: string;
1355
+ }
1168
1356
  /**
1169
1357
  * @public
1170
1358
  */
@@ -1330,117 +1518,6 @@ export interface GetLandingZoneOutput {
1330
1518
  */
1331
1519
  landingZone: LandingZoneDetail | undefined;
1332
1520
  }
1333
- /**
1334
- * @public
1335
- */
1336
- export interface GetLandingZoneOperationInput {
1337
- /**
1338
- * <p>A unique identifier assigned to a landing zone operation.</p>
1339
- * @public
1340
- */
1341
- operationIdentifier: string | undefined;
1342
- }
1343
- /**
1344
- * @public
1345
- * @enum
1346
- */
1347
- export declare const LandingZoneOperationType: {
1348
- readonly CREATE: "CREATE";
1349
- readonly DELETE: "DELETE";
1350
- readonly RESET: "RESET";
1351
- readonly UPDATE: "UPDATE";
1352
- };
1353
- /**
1354
- * @public
1355
- */
1356
- export type LandingZoneOperationType = (typeof LandingZoneOperationType)[keyof typeof LandingZoneOperationType];
1357
- /**
1358
- * @public
1359
- * @enum
1360
- */
1361
- export declare const LandingZoneOperationStatus: {
1362
- readonly FAILED: "FAILED";
1363
- readonly IN_PROGRESS: "IN_PROGRESS";
1364
- readonly SUCCEEDED: "SUCCEEDED";
1365
- };
1366
- /**
1367
- * @public
1368
- */
1369
- export type LandingZoneOperationStatus = (typeof LandingZoneOperationStatus)[keyof typeof LandingZoneOperationStatus];
1370
- /**
1371
- * <p>Information about a landing zone operation.</p>
1372
- * @public
1373
- */
1374
- export interface LandingZoneOperationDetail {
1375
- /**
1376
- * <p>The landing zone operation type. </p>
1377
- * <p>Valid values:</p>
1378
- * <ul>
1379
- * <li>
1380
- * <p>
1381
- * <code>DELETE</code>: The <code>DeleteLandingZone</code> operation. </p>
1382
- * </li>
1383
- * <li>
1384
- * <p>
1385
- * <code>CREATE</code>: The <code>CreateLandingZone</code> operation. </p>
1386
- * </li>
1387
- * <li>
1388
- * <p>
1389
- * <code>UPDATE</code>: The <code>UpdateLandingZone</code> operation. </p>
1390
- * </li>
1391
- * <li>
1392
- * <p>
1393
- * <code>RESET</code>: The <code>ResetLandingZone</code> operation. </p>
1394
- * </li>
1395
- * </ul>
1396
- * @public
1397
- */
1398
- operationType?: LandingZoneOperationType;
1399
- /**
1400
- * <p>The landing zone operation start time.</p>
1401
- * @public
1402
- */
1403
- startTime?: Date;
1404
- /**
1405
- * <p>The landing zone operation end time.</p>
1406
- * @public
1407
- */
1408
- endTime?: Date;
1409
- /**
1410
- * <p>Valid values:</p>
1411
- * <ul>
1412
- * <li>
1413
- * <p>
1414
- * <code>SUCCEEDED</code>: The landing zone operation succeeded. </p>
1415
- * </li>
1416
- * <li>
1417
- * <p>
1418
- * <code>IN_PROGRESS</code>: The landing zone operation is in progress. </p>
1419
- * </li>
1420
- * <li>
1421
- * <p>
1422
- * <code>FAILED</code>: The landing zone operation failed. </p>
1423
- * </li>
1424
- * </ul>
1425
- * @public
1426
- */
1427
- status?: LandingZoneOperationStatus;
1428
- /**
1429
- * <p>If the operation result is FAILED, this string contains a message explaining why the operation failed.</p>
1430
- * @public
1431
- */
1432
- statusMessage?: string;
1433
- }
1434
- /**
1435
- * @public
1436
- */
1437
- export interface GetLandingZoneOperationOutput {
1438
- /**
1439
- * <p>Details about a landing zone operation.</p>
1440
- * @public
1441
- */
1442
- operationDetails: LandingZoneOperationDetail | undefined;
1443
- }
1444
1521
  /**
1445
1522
  * @public
1446
1523
  */
@@ -1513,8 +1590,8 @@ export interface UpdateLandingZoneInput {
1513
1590
  */
1514
1591
  version: string | undefined;
1515
1592
  /**
1516
- * <p>The manifest JSON file is a text file that describes your Amazon Web Services resources. For examples, review
1517
- * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch">Launch your landing zone</a>. </p>
1593
+ * <p>The manifest file (JSON) is a text file that describes your Amazon Web Services resources. For an example, review
1594
+ * <a href="https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch">Launch your landing zone</a>. The example manifest file contains each of the available parameters. The schema for the landing zone's JSON manifest file is not published, by design.</p>
1518
1595
  * @public
1519
1596
  */
1520
1597
  manifest: __DocumentType | undefined;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListLandingZoneOperationsCommandInput, ListLandingZoneOperationsCommandOutput } from "../commands/ListLandingZoneOperationsCommand";
3
+ import { ControlTowerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListLandingZoneOperations: (config: ControlTowerPaginationConfiguration, input: ListLandingZoneOperationsCommandInput, ...rest: any[]) => Paginator<ListLandingZoneOperationsCommandOutput>;
@@ -3,4 +3,5 @@ export * from "./ListBaselinesPaginator";
3
3
  export * from "./ListControlOperationsPaginator";
4
4
  export * from "./ListEnabledBaselinesPaginator";
5
5
  export * from "./ListEnabledControlsPaginator";
6
+ export * from "./ListLandingZoneOperationsPaginator";
6
7
  export * from "./ListLandingZonesPaginator";
@@ -17,6 +17,7 @@ import { ListBaselinesCommandInput, ListBaselinesCommandOutput } from "../comman
17
17
  import { ListControlOperationsCommandInput, ListControlOperationsCommandOutput } from "../commands/ListControlOperationsCommand";
18
18
  import { ListEnabledBaselinesCommandInput, ListEnabledBaselinesCommandOutput } from "../commands/ListEnabledBaselinesCommand";
19
19
  import { ListEnabledControlsCommandInput, ListEnabledControlsCommandOutput } from "../commands/ListEnabledControlsCommand";
20
+ import { ListLandingZoneOperationsCommandInput, ListLandingZoneOperationsCommandOutput } from "../commands/ListLandingZoneOperationsCommand";
20
21
  import { ListLandingZonesCommandInput, ListLandingZonesCommandOutput } from "../commands/ListLandingZonesCommand";
21
22
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
22
23
  import { ResetEnabledBaselineCommandInput, ResetEnabledBaselineCommandOutput } from "../commands/ResetEnabledBaselineCommand";
@@ -94,6 +95,10 @@ export declare const se_ListEnabledBaselinesCommand: (input: ListEnabledBaseline
94
95
  * serializeAws_restJson1ListEnabledControlsCommand
95
96
  */
96
97
  export declare const se_ListEnabledControlsCommand: (input: ListEnabledControlsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ /**
99
+ * serializeAws_restJson1ListLandingZoneOperationsCommand
100
+ */
101
+ export declare const se_ListLandingZoneOperationsCommand: (input: ListLandingZoneOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
102
  /**
98
103
  * serializeAws_restJson1ListLandingZonesCommand
99
104
  */
@@ -198,6 +203,10 @@ export declare const de_ListEnabledBaselinesCommand: (output: __HttpResponse, co
198
203
  * deserializeAws_restJson1ListEnabledControlsCommand
199
204
  */
200
205
  export declare const de_ListEnabledControlsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnabledControlsCommandOutput>;
206
+ /**
207
+ * deserializeAws_restJson1ListLandingZoneOperationsCommand
208
+ */
209
+ export declare const de_ListLandingZoneOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLandingZoneOperationsCommandOutput>;
201
210
  /**
202
211
  * deserializeAws_restJson1ListLandingZonesCommand
203
212
  */