@aws-sdk/client-fis 3.458.0 → 3.460.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 (71) hide show
  1. package/README.md +64 -0
  2. package/dist-cjs/Fis.js +16 -0
  3. package/dist-cjs/commands/CreateTargetAccountConfigurationCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteTargetAccountConfigurationCommand.js +51 -0
  5. package/dist-cjs/commands/GetExperimentTargetAccountConfigurationCommand.js +51 -0
  6. package/dist-cjs/commands/GetTargetAccountConfigurationCommand.js +51 -0
  7. package/dist-cjs/commands/ListExperimentResolvedTargetsCommand.js +51 -0
  8. package/dist-cjs/commands/ListExperimentTargetAccountConfigurationsCommand.js +51 -0
  9. package/dist-cjs/commands/ListTargetAccountConfigurationsCommand.js +51 -0
  10. package/dist-cjs/commands/UpdateTargetAccountConfigurationCommand.js +51 -0
  11. package/dist-cjs/commands/index.js +8 -0
  12. package/dist-cjs/models/models_0.js +10 -1
  13. package/dist-cjs/pagination/ListExperimentResolvedTargetsPaginator.js +29 -0
  14. package/dist-cjs/pagination/ListTargetAccountConfigurationsPaginator.js +29 -0
  15. package/dist-cjs/pagination/index.js +2 -0
  16. package/dist-cjs/protocols/Aws_restJson1.js +489 -1
  17. package/dist-es/Fis.js +16 -0
  18. package/dist-es/commands/CreateTargetAccountConfigurationCommand.js +47 -0
  19. package/dist-es/commands/DeleteTargetAccountConfigurationCommand.js +47 -0
  20. package/dist-es/commands/GetExperimentTargetAccountConfigurationCommand.js +47 -0
  21. package/dist-es/commands/GetTargetAccountConfigurationCommand.js +47 -0
  22. package/dist-es/commands/ListExperimentResolvedTargetsCommand.js +47 -0
  23. package/dist-es/commands/ListExperimentTargetAccountConfigurationsCommand.js +47 -0
  24. package/dist-es/commands/ListTargetAccountConfigurationsCommand.js +47 -0
  25. package/dist-es/commands/UpdateTargetAccountConfigurationCommand.js +47 -0
  26. package/dist-es/commands/index.js +8 -0
  27. package/dist-es/models/models_0.js +9 -0
  28. package/dist-es/pagination/ListExperimentResolvedTargetsPaginator.js +25 -0
  29. package/dist-es/pagination/ListTargetAccountConfigurationsPaginator.js +25 -0
  30. package/dist-es/pagination/index.js +2 -0
  31. package/dist-es/protocols/Aws_restJson1.js +473 -1
  32. package/dist-types/Fis.d.ts +56 -0
  33. package/dist-types/FisClient.d.ts +10 -2
  34. package/dist-types/commands/CreateExperimentTemplateCommand.d.ts +10 -1
  35. package/dist-types/commands/CreateTargetAccountConfigurationCommand.d.ts +97 -0
  36. package/dist-types/commands/DeleteExperimentTemplateCommand.d.ts +5 -0
  37. package/dist-types/commands/DeleteTargetAccountConfigurationCommand.d.ts +84 -0
  38. package/dist-types/commands/GetExperimentCommand.d.ts +6 -1
  39. package/dist-types/commands/GetExperimentTargetAccountConfigurationCommand.d.ts +84 -0
  40. package/dist-types/commands/GetExperimentTemplateCommand.d.ts +5 -0
  41. package/dist-types/commands/GetTargetAccountConfigurationCommand.d.ts +84 -0
  42. package/dist-types/commands/ListExperimentResolvedTargetsCommand.d.ts +91 -0
  43. package/dist-types/commands/ListExperimentTargetAccountConfigurationsCommand.d.ts +87 -0
  44. package/dist-types/commands/ListTargetAccountConfigurationsCommand.d.ts +88 -0
  45. package/dist-types/commands/StartExperimentCommand.d.ts +6 -1
  46. package/dist-types/commands/StopExperimentCommand.d.ts +6 -1
  47. package/dist-types/commands/UpdateExperimentTemplateCommand.d.ts +8 -0
  48. package/dist-types/commands/UpdateTargetAccountConfigurationCommand.d.ts +86 -0
  49. package/dist-types/commands/index.d.ts +8 -0
  50. package/dist-types/models/models_0.d.ts +479 -0
  51. package/dist-types/pagination/ListExperimentResolvedTargetsPaginator.d.ts +7 -0
  52. package/dist-types/pagination/ListTargetAccountConfigurationsPaginator.d.ts +7 -0
  53. package/dist-types/pagination/index.d.ts +2 -0
  54. package/dist-types/protocols/Aws_restJson1.d.ts +72 -0
  55. package/dist-types/ts3.4/Fis.d.ts +148 -0
  56. package/dist-types/ts3.4/FisClient.d.ts +50 -2
  57. package/dist-types/ts3.4/commands/CreateTargetAccountConfigurationCommand.d.ts +42 -0
  58. package/dist-types/ts3.4/commands/DeleteTargetAccountConfigurationCommand.d.ts +42 -0
  59. package/dist-types/ts3.4/commands/GetExperimentTargetAccountConfigurationCommand.d.ts +42 -0
  60. package/dist-types/ts3.4/commands/GetTargetAccountConfigurationCommand.d.ts +42 -0
  61. package/dist-types/ts3.4/commands/ListExperimentResolvedTargetsCommand.d.ts +42 -0
  62. package/dist-types/ts3.4/commands/ListExperimentTargetAccountConfigurationsCommand.d.ts +42 -0
  63. package/dist-types/ts3.4/commands/ListTargetAccountConfigurationsCommand.d.ts +42 -0
  64. package/dist-types/ts3.4/commands/UpdateTargetAccountConfigurationCommand.d.ts +42 -0
  65. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  66. package/dist-types/ts3.4/models/models_0.d.ts +126 -0
  67. package/dist-types/ts3.4/pagination/ListExperimentResolvedTargetsPaginator.d.ts +11 -0
  68. package/dist-types/ts3.4/pagination/ListTargetAccountConfigurationsPaginator.d.ts +11 -0
  69. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  70. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +96 -0
  71. package/package.json +12 -12
@@ -1,5 +1,17 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { FisServiceException as __BaseException } from "./FisServiceException";
3
+ /**
4
+ * @public
5
+ * @enum
6
+ */
7
+ export declare const AccountTargeting: {
8
+ readonly MULTI_ACCOUNT: "multi-account";
9
+ readonly SINGLE_ACCOUNT: "single-account";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type AccountTargeting = (typeof AccountTargeting)[keyof typeof AccountTargeting];
3
15
  /**
4
16
  * @public
5
17
  * <p>Describes a parameter for an action.</p>
@@ -130,6 +142,34 @@ export interface CreateExperimentTemplateActionInput {
130
142
  */
131
143
  startAfter?: string[];
132
144
  }
145
+ /**
146
+ * @public
147
+ * @enum
148
+ */
149
+ export declare const EmptyTargetResolutionMode: {
150
+ readonly FAIL: "fail";
151
+ readonly SKIP: "skip";
152
+ };
153
+ /**
154
+ * @public
155
+ */
156
+ export type EmptyTargetResolutionMode = (typeof EmptyTargetResolutionMode)[keyof typeof EmptyTargetResolutionMode];
157
+ /**
158
+ * @public
159
+ * <p>Specifies experiment options for an experiment template.</p>
160
+ */
161
+ export interface CreateExperimentTemplateExperimentOptionsInput {
162
+ /**
163
+ * @public
164
+ * <p>Specifies the account targeting setting for experiment options.</p>
165
+ */
166
+ accountTargeting?: AccountTargeting;
167
+ /**
168
+ * @public
169
+ * <p>Specifies the empty target resolution mode for experiment options.</p>
170
+ */
171
+ emptyTargetResolutionMode?: EmptyTargetResolutionMode;
172
+ }
133
173
  /**
134
174
  * @public
135
175
  * <p>Specifies the configuration for experiment logging to Amazon CloudWatch Logs.</p>
@@ -311,6 +351,11 @@ export interface CreateExperimentTemplateRequest {
311
351
  * <p>The configuration for experiment logging.</p>
312
352
  */
313
353
  logConfiguration?: CreateExperimentTemplateLogConfigurationInput;
354
+ /**
355
+ * @public
356
+ * <p>The experiment options for the experiment template.</p>
357
+ */
358
+ experimentOptions?: CreateExperimentTemplateExperimentOptionsInput;
314
359
  }
315
360
  /**
316
361
  * @public
@@ -343,6 +388,22 @@ export interface ExperimentTemplateAction {
343
388
  */
344
389
  startAfter?: string[];
345
390
  }
391
+ /**
392
+ * @public
393
+ * <p>Describes the experiment options for an experiment template.</p>
394
+ */
395
+ export interface ExperimentTemplateExperimentOptions {
396
+ /**
397
+ * @public
398
+ * <p>The account targeting setting for an experiment template. </p>
399
+ */
400
+ accountTargeting?: AccountTargeting;
401
+ /**
402
+ * @public
403
+ * <p>The empty target resolution mode for an experiment template.</p>
404
+ */
405
+ emptyTargetResolutionMode?: EmptyTargetResolutionMode;
406
+ }
346
407
  /**
347
408
  * @public
348
409
  * <p>Describes the configuration for experiment logging to Amazon CloudWatch Logs.</p>
@@ -514,6 +575,16 @@ export interface ExperimentTemplate {
514
575
  * <p>The configuration for experiment logging.</p>
515
576
  */
516
577
  logConfiguration?: ExperimentTemplateLogConfiguration;
578
+ /**
579
+ * @public
580
+ * <p>The experiment options for an experiment template.</p>
581
+ */
582
+ experimentOptions?: ExperimentTemplateExperimentOptions;
583
+ /**
584
+ * @public
585
+ * <p>The count of target account configurations for the experiment template.</p>
586
+ */
587
+ targetAccountConfigurationsCount?: number;
517
588
  }
518
589
  /**
519
590
  * @public
@@ -561,6 +632,67 @@ export declare class ValidationException extends __BaseException {
561
632
  */
562
633
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
563
634
  }
635
+ /**
636
+ * @public
637
+ */
638
+ export interface CreateTargetAccountConfigurationRequest {
639
+ /**
640
+ * @public
641
+ * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
642
+ */
643
+ clientToken?: string;
644
+ /**
645
+ * @public
646
+ * <p>The experiment template ID.</p>
647
+ */
648
+ experimentTemplateId: string | undefined;
649
+ /**
650
+ * @public
651
+ * <p>The AWS account ID of the target account.</p>
652
+ */
653
+ accountId: string | undefined;
654
+ /**
655
+ * @public
656
+ * <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
657
+ */
658
+ roleArn: string | undefined;
659
+ /**
660
+ * @public
661
+ * <p>The description of the target account.</p>
662
+ */
663
+ description?: string;
664
+ }
665
+ /**
666
+ * @public
667
+ * <p>Describes a target account configuration.</p>
668
+ */
669
+ export interface TargetAccountConfiguration {
670
+ /**
671
+ * @public
672
+ * <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
673
+ */
674
+ roleArn?: string;
675
+ /**
676
+ * @public
677
+ * <p>The AWS account ID of the target account.</p>
678
+ */
679
+ accountId?: string;
680
+ /**
681
+ * @public
682
+ * <p>The description of the target account.</p>
683
+ */
684
+ description?: string;
685
+ }
686
+ /**
687
+ * @public
688
+ */
689
+ export interface CreateTargetAccountConfigurationResponse {
690
+ /**
691
+ * @public
692
+ * <p>Information about the target account configuration.</p>
693
+ */
694
+ targetAccountConfiguration?: TargetAccountConfiguration;
695
+ }
564
696
  /**
565
697
  * @public
566
698
  */
@@ -581,6 +713,31 @@ export interface DeleteExperimentTemplateResponse {
581
713
  */
582
714
  experimentTemplate?: ExperimentTemplate;
583
715
  }
716
+ /**
717
+ * @public
718
+ */
719
+ export interface DeleteTargetAccountConfigurationRequest {
720
+ /**
721
+ * @public
722
+ * <p>The ID of the experiment template.</p>
723
+ */
724
+ experimentTemplateId: string | undefined;
725
+ /**
726
+ * @public
727
+ * <p>The AWS account ID of the target account.</p>
728
+ */
729
+ accountId: string | undefined;
730
+ }
731
+ /**
732
+ * @public
733
+ */
734
+ export interface DeleteTargetAccountConfigurationResponse {
735
+ /**
736
+ * @public
737
+ * <p>Information about the target account configuration.</p>
738
+ */
739
+ targetAccountConfiguration?: TargetAccountConfiguration;
740
+ }
584
741
  /**
585
742
  * @public
586
743
  * @enum
@@ -592,6 +749,7 @@ export declare const ExperimentActionStatus: {
592
749
  readonly initiating: "initiating";
593
750
  readonly pending: "pending";
594
751
  readonly running: "running";
752
+ readonly skipped: "skipped";
595
753
  readonly stopped: "stopped";
596
754
  readonly stopping: "stopping";
597
755
  };
@@ -661,6 +819,22 @@ export interface ExperimentAction {
661
819
  */
662
820
  endTime?: Date;
663
821
  }
822
+ /**
823
+ * @public
824
+ * <p>Describes the options for an experiment.</p>
825
+ */
826
+ export interface ExperimentOptions {
827
+ /**
828
+ * @public
829
+ * <p>The account targeting setting for an experiment.</p>
830
+ */
831
+ accountTargeting?: AccountTargeting;
832
+ /**
833
+ * @public
834
+ * <p>The empty target resolution mode for an experiment.</p>
835
+ */
836
+ emptyTargetResolutionMode?: EmptyTargetResolutionMode;
837
+ }
664
838
  /**
665
839
  * @public
666
840
  * <p>Describes the configuration for experiment logging to Amazon CloudWatch Logs.</p>
@@ -875,6 +1049,16 @@ export interface Experiment {
875
1049
  * <p>The configuration for experiment logging.</p>
876
1050
  */
877
1051
  logConfiguration?: ExperimentLogConfiguration;
1052
+ /**
1053
+ * @public
1054
+ * <p>The experiment options for the experiment.</p>
1055
+ */
1056
+ experimentOptions?: ExperimentOptions;
1057
+ /**
1058
+ * @public
1059
+ * <p>The count of target account configurations for the experiment.</p>
1060
+ */
1061
+ targetAccountConfigurationsCount?: number;
878
1062
  }
879
1063
  /**
880
1064
  * @public
@@ -907,6 +1091,48 @@ export interface ExperimentSummary {
907
1091
  */
908
1092
  tags?: Record<string, string>;
909
1093
  }
1094
+ /**
1095
+ * @public
1096
+ * <p>Describes a target account configuration for an experiment.</p>
1097
+ */
1098
+ export interface ExperimentTargetAccountConfiguration {
1099
+ /**
1100
+ * @public
1101
+ * <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
1102
+ */
1103
+ roleArn?: string;
1104
+ /**
1105
+ * @public
1106
+ * <p>The AWS account ID of the target account.</p>
1107
+ */
1108
+ accountId?: string;
1109
+ /**
1110
+ * @public
1111
+ * <p>The description of the target account.</p>
1112
+ */
1113
+ description?: string;
1114
+ }
1115
+ /**
1116
+ * @public
1117
+ * <p>Provides a summary of a target account configuration.</p>
1118
+ */
1119
+ export interface ExperimentTargetAccountConfigurationSummary {
1120
+ /**
1121
+ * @public
1122
+ * <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
1123
+ */
1124
+ roleArn?: string;
1125
+ /**
1126
+ * @public
1127
+ * <p>The AWS account ID of the target account.</p>
1128
+ */
1129
+ accountId?: string;
1130
+ /**
1131
+ * @public
1132
+ * <p>The description of the target account.</p>
1133
+ */
1134
+ description?: string;
1135
+ }
910
1136
  /**
911
1137
  * @public
912
1138
  * <p>Provides a summary of an experiment template.</p>
@@ -978,6 +1204,31 @@ export interface GetExperimentResponse {
978
1204
  */
979
1205
  experiment?: Experiment;
980
1206
  }
1207
+ /**
1208
+ * @public
1209
+ */
1210
+ export interface GetExperimentTargetAccountConfigurationRequest {
1211
+ /**
1212
+ * @public
1213
+ * <p>The ID of the experiment.</p>
1214
+ */
1215
+ experimentId: string | undefined;
1216
+ /**
1217
+ * @public
1218
+ * <p>The AWS account ID of the target account.</p>
1219
+ */
1220
+ accountId: string | undefined;
1221
+ }
1222
+ /**
1223
+ * @public
1224
+ */
1225
+ export interface GetExperimentTargetAccountConfigurationResponse {
1226
+ /**
1227
+ * @public
1228
+ * <p>Information about the target account configuration.</p>
1229
+ */
1230
+ targetAccountConfiguration?: ExperimentTargetAccountConfiguration;
1231
+ }
981
1232
  /**
982
1233
  * @public
983
1234
  */
@@ -998,6 +1249,31 @@ export interface GetExperimentTemplateResponse {
998
1249
  */
999
1250
  experimentTemplate?: ExperimentTemplate;
1000
1251
  }
1252
+ /**
1253
+ * @public
1254
+ */
1255
+ export interface GetTargetAccountConfigurationRequest {
1256
+ /**
1257
+ * @public
1258
+ * <p>The ID of the experiment template.</p>
1259
+ */
1260
+ experimentTemplateId: string | undefined;
1261
+ /**
1262
+ * @public
1263
+ * <p>The AWS account ID of the target account.</p>
1264
+ */
1265
+ accountId: string | undefined;
1266
+ }
1267
+ /**
1268
+ * @public
1269
+ */
1270
+ export interface GetTargetAccountConfigurationResponse {
1271
+ /**
1272
+ * @public
1273
+ * <p>Information about the target account configuration.</p>
1274
+ */
1275
+ targetAccountConfiguration?: TargetAccountConfiguration;
1276
+ }
1001
1277
  /**
1002
1278
  * @public
1003
1279
  */
@@ -1086,6 +1362,69 @@ export interface ListActionsResponse {
1086
1362
  */
1087
1363
  nextToken?: string;
1088
1364
  }
1365
+ /**
1366
+ * @public
1367
+ */
1368
+ export interface ListExperimentResolvedTargetsRequest {
1369
+ /**
1370
+ * @public
1371
+ * <p>The ID of the experiment.</p>
1372
+ */
1373
+ experimentId: string | undefined;
1374
+ /**
1375
+ * @public
1376
+ * <p>The maximum number of results to return with a single call. To retrieve the remaining results,
1377
+ * make another call with the returned nextToken value.</p>
1378
+ */
1379
+ maxResults?: number;
1380
+ /**
1381
+ * @public
1382
+ * <p>The token for the next page of results.</p>
1383
+ */
1384
+ nextToken?: string;
1385
+ /**
1386
+ * @public
1387
+ * <p>The name of the target.</p>
1388
+ */
1389
+ targetName?: string;
1390
+ }
1391
+ /**
1392
+ * @public
1393
+ * <p>Describes a resolved target.</p>
1394
+ */
1395
+ export interface ResolvedTarget {
1396
+ /**
1397
+ * @public
1398
+ * <p>The resource type of the target.</p>
1399
+ */
1400
+ resourceType?: string;
1401
+ /**
1402
+ * @public
1403
+ * <p>The name of the target.</p>
1404
+ */
1405
+ targetName?: string;
1406
+ /**
1407
+ * @public
1408
+ * <p>Information about the target.</p>
1409
+ */
1410
+ targetInformation?: Record<string, string>;
1411
+ }
1412
+ /**
1413
+ * @public
1414
+ */
1415
+ export interface ListExperimentResolvedTargetsResponse {
1416
+ /**
1417
+ * @public
1418
+ * <p>The resolved targets.</p>
1419
+ */
1420
+ resolvedTargets?: ResolvedTarget[];
1421
+ /**
1422
+ * @public
1423
+ * <p>The token to use to retrieve the next page of results.
1424
+ * This value is null when there are no more results to return.</p>
1425
+ */
1426
+ nextToken?: string;
1427
+ }
1089
1428
  /**
1090
1429
  * @public
1091
1430
  */
@@ -1116,6 +1455,37 @@ export interface ListExperimentsResponse {
1116
1455
  */
1117
1456
  nextToken?: string;
1118
1457
  }
1458
+ /**
1459
+ * @public
1460
+ */
1461
+ export interface ListExperimentTargetAccountConfigurationsRequest {
1462
+ /**
1463
+ * @public
1464
+ * <p>The ID of the experiment.</p>
1465
+ */
1466
+ experimentId: string | undefined;
1467
+ /**
1468
+ * @public
1469
+ * <p>The token for the next page of results.</p>
1470
+ */
1471
+ nextToken?: string;
1472
+ }
1473
+ /**
1474
+ * @public
1475
+ */
1476
+ export interface ListExperimentTargetAccountConfigurationsResponse {
1477
+ /**
1478
+ * @public
1479
+ * <p>The target account configurations.</p>
1480
+ */
1481
+ targetAccountConfigurations?: ExperimentTargetAccountConfigurationSummary[];
1482
+ /**
1483
+ * @public
1484
+ * <p>The token to use to retrieve the next page of results.
1485
+ * This value is null when there are no more results to return.</p>
1486
+ */
1487
+ nextToken?: string;
1488
+ }
1119
1489
  /**
1120
1490
  * @public
1121
1491
  */
@@ -1166,6 +1536,64 @@ export interface ListTagsForResourceResponse {
1166
1536
  */
1167
1537
  tags?: Record<string, string>;
1168
1538
  }
1539
+ /**
1540
+ * @public
1541
+ */
1542
+ export interface ListTargetAccountConfigurationsRequest {
1543
+ /**
1544
+ * @public
1545
+ * <p>The ID of the experiment template.</p>
1546
+ */
1547
+ experimentTemplateId: string | undefined;
1548
+ /**
1549
+ * @public
1550
+ * <p>The maximum number of results to return with a single call. To retrieve the remaining results,
1551
+ * make another call with the returned nextToken value.</p>
1552
+ */
1553
+ maxResults?: number;
1554
+ /**
1555
+ * @public
1556
+ * <p>The token for the next page of results.</p>
1557
+ */
1558
+ nextToken?: string;
1559
+ }
1560
+ /**
1561
+ * @public
1562
+ * <p>Provides a summary of a target account configuration.</p>
1563
+ */
1564
+ export interface TargetAccountConfigurationSummary {
1565
+ /**
1566
+ * @public
1567
+ * <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
1568
+ */
1569
+ roleArn?: string;
1570
+ /**
1571
+ * @public
1572
+ * <p>The AWS account ID of the target account.</p>
1573
+ */
1574
+ accountId?: string;
1575
+ /**
1576
+ * @public
1577
+ * <p>The description of the target account.</p>
1578
+ */
1579
+ description?: string;
1580
+ }
1581
+ /**
1582
+ * @public
1583
+ */
1584
+ export interface ListTargetAccountConfigurationsResponse {
1585
+ /**
1586
+ * @public
1587
+ * <p>The target account configurations.</p>
1588
+ */
1589
+ targetAccountConfigurations?: TargetAccountConfigurationSummary[];
1590
+ /**
1591
+ * @public
1592
+ * <p>The token to use to retrieve the next page of results.
1593
+ * This value is null when there are no more results to return.</p>
1594
+ */
1595
+ nextToken?: string;
1596
+ }
1169
1597
  /**
1170
1598
  * @public
1171
1599
  */
@@ -1333,6 +1761,17 @@ export interface UpdateExperimentTemplateActionInputItem {
1333
1761
  */
1334
1762
  startAfter?: string[];
1335
1763
  }
1764
+ /**
1765
+ * @public
1766
+ * <p>Specifies an experiment option for an experiment template.</p>
1767
+ */
1768
+ export interface UpdateExperimentTemplateExperimentOptionsInput {
1769
+ /**
1770
+ * @public
1771
+ * <p>The empty target resolution mode of the experiment template.</p>
1772
+ */
1773
+ emptyTargetResolutionMode?: EmptyTargetResolutionMode;
1774
+ }
1336
1775
  /**
1337
1776
  * @public
1338
1777
  * <p>Specifies the configuration for experiment logging.</p>
@@ -1447,6 +1886,11 @@ export interface UpdateExperimentTemplateRequest {
1447
1886
  * <p>The configuration for experiment logging.</p>
1448
1887
  */
1449
1888
  logConfiguration?: UpdateExperimentTemplateLogConfigurationInput;
1889
+ /**
1890
+ * @public
1891
+ * <p>The experiment options for the experiment template.</p>
1892
+ */
1893
+ experimentOptions?: UpdateExperimentTemplateExperimentOptionsInput;
1450
1894
  }
1451
1895
  /**
1452
1896
  * @public
@@ -1458,3 +1902,38 @@ export interface UpdateExperimentTemplateResponse {
1458
1902
  */
1459
1903
  experimentTemplate?: ExperimentTemplate;
1460
1904
  }
1905
+ /**
1906
+ * @public
1907
+ */
1908
+ export interface UpdateTargetAccountConfigurationRequest {
1909
+ /**
1910
+ * @public
1911
+ * <p>The ID of the experiment template.</p>
1912
+ */
1913
+ experimentTemplateId: string | undefined;
1914
+ /**
1915
+ * @public
1916
+ * <p>The AWS account ID of the target account.</p>
1917
+ */
1918
+ accountId: string | undefined;
1919
+ /**
1920
+ * @public
1921
+ * <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
1922
+ */
1923
+ roleArn?: string;
1924
+ /**
1925
+ * @public
1926
+ * <p>The description of the target account.</p>
1927
+ */
1928
+ description?: string;
1929
+ }
1930
+ /**
1931
+ * @public
1932
+ */
1933
+ export interface UpdateTargetAccountConfigurationResponse {
1934
+ /**
1935
+ * @public
1936
+ * <p>Information about the target account configuration.</p>
1937
+ */
1938
+ targetAccountConfiguration?: TargetAccountConfiguration;
1939
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListExperimentResolvedTargetsCommandInput, ListExperimentResolvedTargetsCommandOutput } from "../commands/ListExperimentResolvedTargetsCommand";
3
+ import { FisPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListExperimentResolvedTargets(config: FisPaginationConfiguration, input: ListExperimentResolvedTargetsCommandInput, ...additionalArguments: any): Paginator<ListExperimentResolvedTargetsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListTargetAccountConfigurationsCommandInput, ListTargetAccountConfigurationsCommandOutput } from "../commands/ListTargetAccountConfigurationsCommand";
3
+ import { FisPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListTargetAccountConfigurations(config: FisPaginationConfiguration, input: ListTargetAccountConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListTargetAccountConfigurationsCommandOutput>;
@@ -1,5 +1,7 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListActionsPaginator";
3
+ export * from "./ListExperimentResolvedTargetsPaginator";
3
4
  export * from "./ListExperimentTemplatesPaginator";
4
5
  export * from "./ListExperimentsPaginator";
6
+ export * from "./ListTargetAccountConfigurationsPaginator";
5
7
  export * from "./ListTargetResourceTypesPaginator";