@aws-sdk/client-fis 3.687.0 → 3.691.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 +14 -0
- package/dist-es/models/models_0.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +5 -0
- package/dist-types/commands/CreateExperimentTemplateCommand.d.ts +34 -0
- package/dist-types/commands/DeleteExperimentTemplateCommand.d.ts +17 -0
- package/dist-types/commands/GetExperimentCommand.d.ts +32 -0
- package/dist-types/commands/GetExperimentTemplateCommand.d.ts +17 -0
- package/dist-types/commands/StartExperimentCommand.d.ts +32 -0
- package/dist-types/commands/StopExperimentCommand.d.ts +32 -0
- package/dist-types/commands/UpdateExperimentTemplateCommand.d.ts +34 -0
- package/dist-types/models/models_0.d.ts +591 -235
- package/dist-types/ts3.4/models/models_0.d.ts +360 -235
- package/package.json +7 -7
|
@@ -21,12 +21,12 @@ export interface ActionParameter {
|
|
|
21
21
|
* <p>The parameter description.</p>
|
|
22
22
|
* @public
|
|
23
23
|
*/
|
|
24
|
-
description?: string;
|
|
24
|
+
description?: string | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* <p>Indicates whether the parameter is required.</p>
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
29
|
-
required?: boolean;
|
|
29
|
+
required?: boolean | undefined;
|
|
30
30
|
}
|
|
31
31
|
/**
|
|
32
32
|
* <p>Describes a target for an action.</p>
|
|
@@ -37,7 +37,7 @@ export interface ActionTarget {
|
|
|
37
37
|
* <p>The resource type of the target.</p>
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
|
-
resourceType?: string;
|
|
40
|
+
resourceType?: string | undefined;
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
43
|
* <p>Describes an action. For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/fis-actions-reference.html">FIS actions</a>
|
|
@@ -49,32 +49,32 @@ export interface Action {
|
|
|
49
49
|
* <p>The ID of the action.</p>
|
|
50
50
|
* @public
|
|
51
51
|
*/
|
|
52
|
-
id?: string;
|
|
52
|
+
id?: string | undefined;
|
|
53
53
|
/**
|
|
54
54
|
* <p>The Amazon Resource Name (ARN) of the action.</p>
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
arn?: string;
|
|
57
|
+
arn?: string | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* <p>The description for the action.</p>
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
description?: string;
|
|
62
|
+
description?: string | undefined;
|
|
63
63
|
/**
|
|
64
64
|
* <p>The action parameters, if applicable.</p>
|
|
65
65
|
* @public
|
|
66
66
|
*/
|
|
67
|
-
parameters?: Record<string, ActionParameter
|
|
67
|
+
parameters?: Record<string, ActionParameter> | undefined;
|
|
68
68
|
/**
|
|
69
69
|
* <p>The supported targets for the action.</p>
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
targets?: Record<string, ActionTarget
|
|
72
|
+
targets?: Record<string, ActionTarget> | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* <p>The tags for the action.</p>
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
|
-
tags?: Record<string, string
|
|
77
|
+
tags?: Record<string, string> | undefined;
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
80
|
* @public
|
|
@@ -97,27 +97,27 @@ export interface ActionSummary {
|
|
|
97
97
|
* <p>The ID of the action.</p>
|
|
98
98
|
* @public
|
|
99
99
|
*/
|
|
100
|
-
id?: string;
|
|
100
|
+
id?: string | undefined;
|
|
101
101
|
/**
|
|
102
102
|
* <p>The Amazon Resource Name (ARN) of the action.</p>
|
|
103
103
|
* @public
|
|
104
104
|
*/
|
|
105
|
-
arn?: string;
|
|
105
|
+
arn?: string | undefined;
|
|
106
106
|
/**
|
|
107
107
|
* <p>The description for the action.</p>
|
|
108
108
|
* @public
|
|
109
109
|
*/
|
|
110
|
-
description?: string;
|
|
110
|
+
description?: string | undefined;
|
|
111
111
|
/**
|
|
112
112
|
* <p>The targets for the action.</p>
|
|
113
113
|
* @public
|
|
114
114
|
*/
|
|
115
|
-
targets?: Record<string, ActionTarget
|
|
115
|
+
targets?: Record<string, ActionTarget> | undefined;
|
|
116
116
|
/**
|
|
117
117
|
* <p>The tags for the action.</p>
|
|
118
118
|
* @public
|
|
119
119
|
*/
|
|
120
|
-
tags?: Record<string, string
|
|
120
|
+
tags?: Record<string, string> | undefined;
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
123
|
* <p>The request could not be processed because of a conflict.</p>
|
|
@@ -147,22 +147,22 @@ export interface CreateExperimentTemplateActionInput {
|
|
|
147
147
|
* <p>A description for the action.</p>
|
|
148
148
|
* @public
|
|
149
149
|
*/
|
|
150
|
-
description?: string;
|
|
150
|
+
description?: string | undefined;
|
|
151
151
|
/**
|
|
152
152
|
* <p>The parameters for the action, if applicable.</p>
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
|
-
parameters?: Record<string, string
|
|
155
|
+
parameters?: Record<string, string> | undefined;
|
|
156
156
|
/**
|
|
157
157
|
* <p>The targets for the action.</p>
|
|
158
158
|
* @public
|
|
159
159
|
*/
|
|
160
|
-
targets?: Record<string, string
|
|
160
|
+
targets?: Record<string, string> | undefined;
|
|
161
161
|
/**
|
|
162
162
|
* <p>The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.</p>
|
|
163
163
|
* @public
|
|
164
164
|
*/
|
|
165
|
-
startAfter?: string[];
|
|
165
|
+
startAfter?: string[] | undefined;
|
|
166
166
|
}
|
|
167
167
|
/**
|
|
168
168
|
* @public
|
|
@@ -185,12 +185,87 @@ export interface CreateExperimentTemplateExperimentOptionsInput {
|
|
|
185
185
|
* <p>Specifies the account targeting setting for experiment options.</p>
|
|
186
186
|
* @public
|
|
187
187
|
*/
|
|
188
|
-
accountTargeting?: AccountTargeting;
|
|
188
|
+
accountTargeting?: AccountTargeting | undefined;
|
|
189
189
|
/**
|
|
190
190
|
* <p>Specifies the empty target resolution mode for experiment options.</p>
|
|
191
191
|
* @public
|
|
192
192
|
*/
|
|
193
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
193
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* <p>Specifies the CloudWatch dashboard for the experiment report.</p>
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
export interface ReportConfigurationCloudWatchDashboardInput {
|
|
200
|
+
/**
|
|
201
|
+
* <p>The Amazon Resource Name (ARN) of the CloudWatch dashboard to include in the experiment report.</p>
|
|
202
|
+
* @public
|
|
203
|
+
*/
|
|
204
|
+
dashboardIdentifier?: string | undefined;
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* <p>Specifies the data sources for the experiment report.</p>
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export interface ExperimentTemplateReportConfigurationDataSourcesInput {
|
|
211
|
+
/**
|
|
212
|
+
* <p>The CloudWatch dashboards to include as data sources in the experiment report.</p>
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
cloudWatchDashboards?: ReportConfigurationCloudWatchDashboardInput[] | undefined;
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* <p>Specifies the S3 destination for the experiment report.</p>
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
export interface ReportConfigurationS3OutputInput {
|
|
222
|
+
/**
|
|
223
|
+
* <p>The name of the S3 bucket where the experiment report will be stored.</p>
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
bucketName?: string | undefined;
|
|
227
|
+
/**
|
|
228
|
+
* <p>The prefix of the S3 bucket where the experiment report will be stored.</p>
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
231
|
+
prefix?: string | undefined;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* <p>Specifies the outputs for the experiment templates.</p>
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export interface ExperimentTemplateReportConfigurationOutputsInput {
|
|
238
|
+
/**
|
|
239
|
+
* <p>The S3 destination for the experiment report.</p>
|
|
240
|
+
* @public
|
|
241
|
+
*/
|
|
242
|
+
s3Configuration?: ReportConfigurationS3OutputInput | undefined;
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* <p>Specifies the configuration for experiment reports.</p>
|
|
246
|
+
* @public
|
|
247
|
+
*/
|
|
248
|
+
export interface CreateExperimentTemplateReportConfigurationInput {
|
|
249
|
+
/**
|
|
250
|
+
* <p>The output destinations of the experiment report. </p>
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
253
|
+
outputs?: ExperimentTemplateReportConfigurationOutputsInput | undefined;
|
|
254
|
+
/**
|
|
255
|
+
* <p>The data sources for the experiment report.</p>
|
|
256
|
+
* @public
|
|
257
|
+
*/
|
|
258
|
+
dataSources?: ExperimentTemplateReportConfigurationDataSourcesInput | undefined;
|
|
259
|
+
/**
|
|
260
|
+
* <p>The duration before the experiment start time for the data sources to include in the report. </p>
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
preExperimentDuration?: string | undefined;
|
|
264
|
+
/**
|
|
265
|
+
* <p>The duration after the experiment end time for the data sources to include in the report. </p>
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
postExperimentDuration?: string | undefined;
|
|
194
269
|
}
|
|
195
270
|
/**
|
|
196
271
|
* <p>Specifies the configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
@@ -217,7 +292,7 @@ export interface ExperimentTemplateS3LogConfigurationInput {
|
|
|
217
292
|
* <p>The bucket prefix.</p>
|
|
218
293
|
* @public
|
|
219
294
|
*/
|
|
220
|
-
prefix?: string;
|
|
295
|
+
prefix?: string | undefined;
|
|
221
296
|
}
|
|
222
297
|
/**
|
|
223
298
|
* <p>Specifies the configuration for experiment logging.</p>
|
|
@@ -228,12 +303,12 @@ export interface CreateExperimentTemplateLogConfigurationInput {
|
|
|
228
303
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
229
304
|
* @public
|
|
230
305
|
*/
|
|
231
|
-
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
306
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput | undefined;
|
|
232
307
|
/**
|
|
233
308
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
234
309
|
* @public
|
|
235
310
|
*/
|
|
236
|
-
s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
|
|
311
|
+
s3Configuration?: ExperimentTemplateS3LogConfigurationInput | undefined;
|
|
237
312
|
/**
|
|
238
313
|
* <p>The schema version.</p>
|
|
239
314
|
* @public
|
|
@@ -257,7 +332,7 @@ export interface CreateExperimentTemplateStopConditionInput {
|
|
|
257
332
|
* a CloudWatch alarm.</p>
|
|
258
333
|
* @public
|
|
259
334
|
*/
|
|
260
|
-
value?: string;
|
|
335
|
+
value?: string | undefined;
|
|
261
336
|
}
|
|
262
337
|
/**
|
|
263
338
|
* <p>Specifies a filter used for the target resource input in an experiment template.</p>
|
|
@@ -294,17 +369,17 @@ export interface CreateExperimentTemplateTargetInput {
|
|
|
294
369
|
* <p>The Amazon Resource Names (ARNs) of the resources.</p>
|
|
295
370
|
* @public
|
|
296
371
|
*/
|
|
297
|
-
resourceArns?: string[];
|
|
372
|
+
resourceArns?: string[] | undefined;
|
|
298
373
|
/**
|
|
299
374
|
* <p>The tags for the target resources.</p>
|
|
300
375
|
* @public
|
|
301
376
|
*/
|
|
302
|
-
resourceTags?: Record<string, string
|
|
377
|
+
resourceTags?: Record<string, string> | undefined;
|
|
303
378
|
/**
|
|
304
379
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
305
380
|
* @public
|
|
306
381
|
*/
|
|
307
|
-
filters?: ExperimentTemplateTargetInputFilter[];
|
|
382
|
+
filters?: ExperimentTemplateTargetInputFilter[] | undefined;
|
|
308
383
|
/**
|
|
309
384
|
* <p>Scopes the identified resources to a specific count of the resources at random, or a percentage of the resources. All identified resources are included in the target.</p>
|
|
310
385
|
* <ul>
|
|
@@ -327,7 +402,7 @@ export interface CreateExperimentTemplateTargetInput {
|
|
|
327
402
|
* <p>The resource type parameters.</p>
|
|
328
403
|
* @public
|
|
329
404
|
*/
|
|
330
|
-
parameters?: Record<string, string
|
|
405
|
+
parameters?: Record<string, string> | undefined;
|
|
331
406
|
}
|
|
332
407
|
/**
|
|
333
408
|
* @public
|
|
@@ -337,7 +412,7 @@ export interface CreateExperimentTemplateRequest {
|
|
|
337
412
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
338
413
|
* @public
|
|
339
414
|
*/
|
|
340
|
-
clientToken?: string;
|
|
415
|
+
clientToken?: string | undefined;
|
|
341
416
|
/**
|
|
342
417
|
* <p>A description for the experiment template.</p>
|
|
343
418
|
* @public
|
|
@@ -352,7 +427,7 @@ export interface CreateExperimentTemplateRequest {
|
|
|
352
427
|
* <p>The targets for the experiment.</p>
|
|
353
428
|
* @public
|
|
354
429
|
*/
|
|
355
|
-
targets?: Record<string, CreateExperimentTemplateTargetInput
|
|
430
|
+
targets?: Record<string, CreateExperimentTemplateTargetInput> | undefined;
|
|
356
431
|
/**
|
|
357
432
|
* <p>The actions for the experiment.</p>
|
|
358
433
|
* @public
|
|
@@ -367,17 +442,22 @@ export interface CreateExperimentTemplateRequest {
|
|
|
367
442
|
* <p>The tags to apply to the experiment template.</p>
|
|
368
443
|
* @public
|
|
369
444
|
*/
|
|
370
|
-
tags?: Record<string, string
|
|
445
|
+
tags?: Record<string, string> | undefined;
|
|
371
446
|
/**
|
|
372
447
|
* <p>The configuration for experiment logging.</p>
|
|
373
448
|
* @public
|
|
374
449
|
*/
|
|
375
|
-
logConfiguration?: CreateExperimentTemplateLogConfigurationInput;
|
|
450
|
+
logConfiguration?: CreateExperimentTemplateLogConfigurationInput | undefined;
|
|
376
451
|
/**
|
|
377
452
|
* <p>The experiment options for the experiment template.</p>
|
|
378
453
|
* @public
|
|
379
454
|
*/
|
|
380
|
-
experimentOptions?: CreateExperimentTemplateExperimentOptionsInput;
|
|
455
|
+
experimentOptions?: CreateExperimentTemplateExperimentOptionsInput | undefined;
|
|
456
|
+
/**
|
|
457
|
+
* <p>The experiment report configuration for the experiment template.</p>
|
|
458
|
+
* @public
|
|
459
|
+
*/
|
|
460
|
+
experimentReportConfiguration?: CreateExperimentTemplateReportConfigurationInput | undefined;
|
|
381
461
|
}
|
|
382
462
|
/**
|
|
383
463
|
* <p>Describes an action for an experiment template.</p>
|
|
@@ -388,27 +468,27 @@ export interface ExperimentTemplateAction {
|
|
|
388
468
|
* <p>The ID of the action.</p>
|
|
389
469
|
* @public
|
|
390
470
|
*/
|
|
391
|
-
actionId?: string;
|
|
471
|
+
actionId?: string | undefined;
|
|
392
472
|
/**
|
|
393
473
|
* <p>A description for the action.</p>
|
|
394
474
|
* @public
|
|
395
475
|
*/
|
|
396
|
-
description?: string;
|
|
476
|
+
description?: string | undefined;
|
|
397
477
|
/**
|
|
398
478
|
* <p>The parameters for the action.</p>
|
|
399
479
|
* @public
|
|
400
480
|
*/
|
|
401
|
-
parameters?: Record<string, string
|
|
481
|
+
parameters?: Record<string, string> | undefined;
|
|
402
482
|
/**
|
|
403
483
|
* <p>The targets for the action.</p>
|
|
404
484
|
* @public
|
|
405
485
|
*/
|
|
406
|
-
targets?: Record<string, string
|
|
486
|
+
targets?: Record<string, string> | undefined;
|
|
407
487
|
/**
|
|
408
488
|
* <p>The name of the action that must be completed before the current action starts.</p>
|
|
409
489
|
* @public
|
|
410
490
|
*/
|
|
411
|
-
startAfter?: string[];
|
|
491
|
+
startAfter?: string[] | undefined;
|
|
412
492
|
}
|
|
413
493
|
/**
|
|
414
494
|
* <p>Describes the experiment options for an experiment template.</p>
|
|
@@ -419,12 +499,87 @@ export interface ExperimentTemplateExperimentOptions {
|
|
|
419
499
|
* <p>The account targeting setting for an experiment template. </p>
|
|
420
500
|
* @public
|
|
421
501
|
*/
|
|
422
|
-
accountTargeting?: AccountTargeting;
|
|
502
|
+
accountTargeting?: AccountTargeting | undefined;
|
|
423
503
|
/**
|
|
424
504
|
* <p>The empty target resolution mode for an experiment template.</p>
|
|
425
505
|
* @public
|
|
426
506
|
*/
|
|
427
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
507
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
508
|
+
}
|
|
509
|
+
/**
|
|
510
|
+
* <p>The CloudWatch dashboards to include as data sources in the experiment report.</p>
|
|
511
|
+
* @public
|
|
512
|
+
*/
|
|
513
|
+
export interface ExperimentTemplateReportConfigurationCloudWatchDashboard {
|
|
514
|
+
/**
|
|
515
|
+
* <p>The Amazon Resource Name (ARN) of the CloudWatch dashboard to include in the experiment report.</p>
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
518
|
+
dashboardIdentifier?: string | undefined;
|
|
519
|
+
}
|
|
520
|
+
/**
|
|
521
|
+
* <p>Describes the data sources for the experiment report.</p>
|
|
522
|
+
* @public
|
|
523
|
+
*/
|
|
524
|
+
export interface ExperimentTemplateReportConfigurationDataSources {
|
|
525
|
+
/**
|
|
526
|
+
* <p>The CloudWatch dashboards to include as data sources in the experiment report.</p>
|
|
527
|
+
* @public
|
|
528
|
+
*/
|
|
529
|
+
cloudWatchDashboards?: ExperimentTemplateReportConfigurationCloudWatchDashboard[] | undefined;
|
|
530
|
+
}
|
|
531
|
+
/**
|
|
532
|
+
* <p>Describes the S3 destination for the experiment report.</p>
|
|
533
|
+
* @public
|
|
534
|
+
*/
|
|
535
|
+
export interface ReportConfigurationS3Output {
|
|
536
|
+
/**
|
|
537
|
+
* <p>The name of the S3 bucket where the experiment report will be stored.</p>
|
|
538
|
+
* @public
|
|
539
|
+
*/
|
|
540
|
+
bucketName?: string | undefined;
|
|
541
|
+
/**
|
|
542
|
+
* <p>The prefix of the S3 bucket where the experiment report will be stored.</p>
|
|
543
|
+
* @public
|
|
544
|
+
*/
|
|
545
|
+
prefix?: string | undefined;
|
|
546
|
+
}
|
|
547
|
+
/**
|
|
548
|
+
* <p>The output destinations of the experiment report.</p>
|
|
549
|
+
* @public
|
|
550
|
+
*/
|
|
551
|
+
export interface ExperimentTemplateReportConfigurationOutputs {
|
|
552
|
+
/**
|
|
553
|
+
* <p>The S3 destination for the experiment report.</p>
|
|
554
|
+
* @public
|
|
555
|
+
*/
|
|
556
|
+
s3Configuration?: ReportConfigurationS3Output | undefined;
|
|
557
|
+
}
|
|
558
|
+
/**
|
|
559
|
+
* <p>Describes the experiment report configuration. For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/experiment-report-configuration">Experiment report configurations for AWS FIS</a>.</p>
|
|
560
|
+
* @public
|
|
561
|
+
*/
|
|
562
|
+
export interface ExperimentTemplateReportConfiguration {
|
|
563
|
+
/**
|
|
564
|
+
* <p>Describes the output destinations of the experiment report.</p>
|
|
565
|
+
* @public
|
|
566
|
+
*/
|
|
567
|
+
outputs?: ExperimentTemplateReportConfigurationOutputs | undefined;
|
|
568
|
+
/**
|
|
569
|
+
* <p>The data sources for the experiment report.</p>
|
|
570
|
+
* @public
|
|
571
|
+
*/
|
|
572
|
+
dataSources?: ExperimentTemplateReportConfigurationDataSources | undefined;
|
|
573
|
+
/**
|
|
574
|
+
* <p>The duration before the experiment start time for the data sources to include in the report.</p>
|
|
575
|
+
* @public
|
|
576
|
+
*/
|
|
577
|
+
preExperimentDuration?: string | undefined;
|
|
578
|
+
/**
|
|
579
|
+
* <p>The duration after the experiment end time for the data sources to include in the report.</p>
|
|
580
|
+
* @public
|
|
581
|
+
*/
|
|
582
|
+
postExperimentDuration?: string | undefined;
|
|
428
583
|
}
|
|
429
584
|
/**
|
|
430
585
|
* <p>Describes the configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
@@ -435,7 +590,7 @@ export interface ExperimentTemplateCloudWatchLogsLogConfiguration {
|
|
|
435
590
|
* <p>The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.</p>
|
|
436
591
|
* @public
|
|
437
592
|
*/
|
|
438
|
-
logGroupArn?: string;
|
|
593
|
+
logGroupArn?: string | undefined;
|
|
439
594
|
}
|
|
440
595
|
/**
|
|
441
596
|
* <p>Describes the configuration for experiment logging to Amazon S3.</p>
|
|
@@ -446,12 +601,12 @@ export interface ExperimentTemplateS3LogConfiguration {
|
|
|
446
601
|
* <p>The name of the destination bucket.</p>
|
|
447
602
|
* @public
|
|
448
603
|
*/
|
|
449
|
-
bucketName?: string;
|
|
604
|
+
bucketName?: string | undefined;
|
|
450
605
|
/**
|
|
451
606
|
* <p>The bucket prefix.</p>
|
|
452
607
|
* @public
|
|
453
608
|
*/
|
|
454
|
-
prefix?: string;
|
|
609
|
+
prefix?: string | undefined;
|
|
455
610
|
}
|
|
456
611
|
/**
|
|
457
612
|
* <p>Describes the configuration for experiment logging.</p>
|
|
@@ -462,17 +617,17 @@ export interface ExperimentTemplateLogConfiguration {
|
|
|
462
617
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
463
618
|
* @public
|
|
464
619
|
*/
|
|
465
|
-
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfiguration;
|
|
620
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfiguration | undefined;
|
|
466
621
|
/**
|
|
467
622
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
468
623
|
* @public
|
|
469
624
|
*/
|
|
470
|
-
s3Configuration?: ExperimentTemplateS3LogConfiguration;
|
|
625
|
+
s3Configuration?: ExperimentTemplateS3LogConfiguration | undefined;
|
|
471
626
|
/**
|
|
472
627
|
* <p>The schema version.</p>
|
|
473
628
|
* @public
|
|
474
629
|
*/
|
|
475
|
-
logSchemaVersion?: number;
|
|
630
|
+
logSchemaVersion?: number | undefined;
|
|
476
631
|
}
|
|
477
632
|
/**
|
|
478
633
|
* <p>Describes a stop condition for an experiment template.</p>
|
|
@@ -483,12 +638,12 @@ export interface ExperimentTemplateStopCondition {
|
|
|
483
638
|
* <p>The source for the stop condition.</p>
|
|
484
639
|
* @public
|
|
485
640
|
*/
|
|
486
|
-
source?: string;
|
|
641
|
+
source?: string | undefined;
|
|
487
642
|
/**
|
|
488
643
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.</p>
|
|
489
644
|
* @public
|
|
490
645
|
*/
|
|
491
|
-
value?: string;
|
|
646
|
+
value?: string | undefined;
|
|
492
647
|
}
|
|
493
648
|
/**
|
|
494
649
|
* <p>Describes a filter used for the target resources in an experiment template.</p>
|
|
@@ -499,12 +654,12 @@ export interface ExperimentTemplateTargetFilter {
|
|
|
499
654
|
* <p>The attribute path for the filter.</p>
|
|
500
655
|
* @public
|
|
501
656
|
*/
|
|
502
|
-
path?: string;
|
|
657
|
+
path?: string | undefined;
|
|
503
658
|
/**
|
|
504
659
|
* <p>The attribute values for the filter.</p>
|
|
505
660
|
* @public
|
|
506
661
|
*/
|
|
507
|
-
values?: string[];
|
|
662
|
+
values?: string[] | undefined;
|
|
508
663
|
}
|
|
509
664
|
/**
|
|
510
665
|
* <p>Describes a target for an experiment template.</p>
|
|
@@ -515,32 +670,32 @@ export interface ExperimentTemplateTarget {
|
|
|
515
670
|
* <p>The resource type.</p>
|
|
516
671
|
* @public
|
|
517
672
|
*/
|
|
518
|
-
resourceType?: string;
|
|
673
|
+
resourceType?: string | undefined;
|
|
519
674
|
/**
|
|
520
675
|
* <p>The Amazon Resource Names (ARNs) of the targets.</p>
|
|
521
676
|
* @public
|
|
522
677
|
*/
|
|
523
|
-
resourceArns?: string[];
|
|
678
|
+
resourceArns?: string[] | undefined;
|
|
524
679
|
/**
|
|
525
680
|
* <p>The tags for the target resources.</p>
|
|
526
681
|
* @public
|
|
527
682
|
*/
|
|
528
|
-
resourceTags?: Record<string, string
|
|
683
|
+
resourceTags?: Record<string, string> | undefined;
|
|
529
684
|
/**
|
|
530
685
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
531
686
|
* @public
|
|
532
687
|
*/
|
|
533
|
-
filters?: ExperimentTemplateTargetFilter[];
|
|
688
|
+
filters?: ExperimentTemplateTargetFilter[] | undefined;
|
|
534
689
|
/**
|
|
535
690
|
* <p>Scopes the identified resources to a specific count or percentage.</p>
|
|
536
691
|
* @public
|
|
537
692
|
*/
|
|
538
|
-
selectionMode?: string;
|
|
693
|
+
selectionMode?: string | undefined;
|
|
539
694
|
/**
|
|
540
695
|
* <p>The resource type parameters.</p>
|
|
541
696
|
* @public
|
|
542
697
|
*/
|
|
543
|
-
parameters?: Record<string, string
|
|
698
|
+
parameters?: Record<string, string> | undefined;
|
|
544
699
|
}
|
|
545
700
|
/**
|
|
546
701
|
* <p>Describes an experiment template.</p>
|
|
@@ -551,67 +706,72 @@ export interface ExperimentTemplate {
|
|
|
551
706
|
* <p>The ID of the experiment template.</p>
|
|
552
707
|
* @public
|
|
553
708
|
*/
|
|
554
|
-
id?: string;
|
|
709
|
+
id?: string | undefined;
|
|
555
710
|
/**
|
|
556
711
|
* <p>The Amazon Resource Name (ARN) of the experiment template.</p>
|
|
557
712
|
* @public
|
|
558
713
|
*/
|
|
559
|
-
arn?: string;
|
|
714
|
+
arn?: string | undefined;
|
|
560
715
|
/**
|
|
561
716
|
* <p>The description for the experiment template.</p>
|
|
562
717
|
* @public
|
|
563
718
|
*/
|
|
564
|
-
description?: string;
|
|
719
|
+
description?: string | undefined;
|
|
565
720
|
/**
|
|
566
721
|
* <p>The targets for the experiment.</p>
|
|
567
722
|
* @public
|
|
568
723
|
*/
|
|
569
|
-
targets?: Record<string, ExperimentTemplateTarget
|
|
724
|
+
targets?: Record<string, ExperimentTemplateTarget> | undefined;
|
|
570
725
|
/**
|
|
571
726
|
* <p>The actions for the experiment.</p>
|
|
572
727
|
* @public
|
|
573
728
|
*/
|
|
574
|
-
actions?: Record<string, ExperimentTemplateAction
|
|
729
|
+
actions?: Record<string, ExperimentTemplateAction> | undefined;
|
|
575
730
|
/**
|
|
576
731
|
* <p>The stop conditions for the experiment.</p>
|
|
577
732
|
* @public
|
|
578
733
|
*/
|
|
579
|
-
stopConditions?: ExperimentTemplateStopCondition[];
|
|
734
|
+
stopConditions?: ExperimentTemplateStopCondition[] | undefined;
|
|
580
735
|
/**
|
|
581
736
|
* <p>The time the experiment template was created.</p>
|
|
582
737
|
* @public
|
|
583
738
|
*/
|
|
584
|
-
creationTime?: Date;
|
|
739
|
+
creationTime?: Date | undefined;
|
|
585
740
|
/**
|
|
586
741
|
* <p>The time the experiment template was last updated.</p>
|
|
587
742
|
* @public
|
|
588
743
|
*/
|
|
589
|
-
lastUpdateTime?: Date;
|
|
744
|
+
lastUpdateTime?: Date | undefined;
|
|
590
745
|
/**
|
|
591
746
|
* <p>The Amazon Resource Name (ARN) of an IAM role.</p>
|
|
592
747
|
* @public
|
|
593
748
|
*/
|
|
594
|
-
roleArn?: string;
|
|
749
|
+
roleArn?: string | undefined;
|
|
595
750
|
/**
|
|
596
751
|
* <p>The tags for the experiment template.</p>
|
|
597
752
|
* @public
|
|
598
753
|
*/
|
|
599
|
-
tags?: Record<string, string
|
|
754
|
+
tags?: Record<string, string> | undefined;
|
|
600
755
|
/**
|
|
601
756
|
* <p>The configuration for experiment logging.</p>
|
|
602
757
|
* @public
|
|
603
758
|
*/
|
|
604
|
-
logConfiguration?: ExperimentTemplateLogConfiguration;
|
|
759
|
+
logConfiguration?: ExperimentTemplateLogConfiguration | undefined;
|
|
605
760
|
/**
|
|
606
761
|
* <p>The experiment options for an experiment template.</p>
|
|
607
762
|
* @public
|
|
608
763
|
*/
|
|
609
|
-
experimentOptions?: ExperimentTemplateExperimentOptions;
|
|
764
|
+
experimentOptions?: ExperimentTemplateExperimentOptions | undefined;
|
|
610
765
|
/**
|
|
611
766
|
* <p>The count of target account configurations for the experiment template.</p>
|
|
612
767
|
* @public
|
|
613
768
|
*/
|
|
614
|
-
targetAccountConfigurationsCount?: number;
|
|
769
|
+
targetAccountConfigurationsCount?: number | undefined;
|
|
770
|
+
/**
|
|
771
|
+
* <p>Describes the report configuration for the experiment template.</p>
|
|
772
|
+
* @public
|
|
773
|
+
*/
|
|
774
|
+
experimentReportConfiguration?: ExperimentTemplateReportConfiguration | undefined;
|
|
615
775
|
}
|
|
616
776
|
/**
|
|
617
777
|
* @public
|
|
@@ -621,7 +781,7 @@ export interface CreateExperimentTemplateResponse {
|
|
|
621
781
|
* <p>Information about the experiment template.</p>
|
|
622
782
|
* @public
|
|
623
783
|
*/
|
|
624
|
-
experimentTemplate?: ExperimentTemplate;
|
|
784
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
625
785
|
}
|
|
626
786
|
/**
|
|
627
787
|
* <p>The specified resource cannot be found.</p>
|
|
@@ -667,7 +827,7 @@ export interface CreateTargetAccountConfigurationRequest {
|
|
|
667
827
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
668
828
|
* @public
|
|
669
829
|
*/
|
|
670
|
-
clientToken?: string;
|
|
830
|
+
clientToken?: string | undefined;
|
|
671
831
|
/**
|
|
672
832
|
* <p>The experiment template ID.</p>
|
|
673
833
|
* @public
|
|
@@ -687,7 +847,7 @@ export interface CreateTargetAccountConfigurationRequest {
|
|
|
687
847
|
* <p>The description of the target account.</p>
|
|
688
848
|
* @public
|
|
689
849
|
*/
|
|
690
|
-
description?: string;
|
|
850
|
+
description?: string | undefined;
|
|
691
851
|
}
|
|
692
852
|
/**
|
|
693
853
|
* <p>Describes a target account configuration.</p>
|
|
@@ -698,17 +858,17 @@ export interface TargetAccountConfiguration {
|
|
|
698
858
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
699
859
|
* @public
|
|
700
860
|
*/
|
|
701
|
-
roleArn?: string;
|
|
861
|
+
roleArn?: string | undefined;
|
|
702
862
|
/**
|
|
703
863
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
704
864
|
* @public
|
|
705
865
|
*/
|
|
706
|
-
accountId?: string;
|
|
866
|
+
accountId?: string | undefined;
|
|
707
867
|
/**
|
|
708
868
|
* <p>The description of the target account.</p>
|
|
709
869
|
* @public
|
|
710
870
|
*/
|
|
711
|
-
description?: string;
|
|
871
|
+
description?: string | undefined;
|
|
712
872
|
}
|
|
713
873
|
/**
|
|
714
874
|
* @public
|
|
@@ -718,7 +878,7 @@ export interface CreateTargetAccountConfigurationResponse {
|
|
|
718
878
|
* <p>Information about the target account configuration.</p>
|
|
719
879
|
* @public
|
|
720
880
|
*/
|
|
721
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
881
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
722
882
|
}
|
|
723
883
|
/**
|
|
724
884
|
* @public
|
|
@@ -738,7 +898,7 @@ export interface DeleteExperimentTemplateResponse {
|
|
|
738
898
|
* <p>Information about the experiment template.</p>
|
|
739
899
|
* @public
|
|
740
900
|
*/
|
|
741
|
-
experimentTemplate?: ExperimentTemplate;
|
|
901
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
742
902
|
}
|
|
743
903
|
/**
|
|
744
904
|
* @public
|
|
@@ -763,7 +923,7 @@ export interface DeleteTargetAccountConfigurationResponse {
|
|
|
763
923
|
* <p>Information about the target account configuration.</p>
|
|
764
924
|
* @public
|
|
765
925
|
*/
|
|
766
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
926
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
767
927
|
}
|
|
768
928
|
/**
|
|
769
929
|
* @public
|
|
@@ -793,12 +953,12 @@ export interface ExperimentActionState {
|
|
|
793
953
|
* <p>The state of the action.</p>
|
|
794
954
|
* @public
|
|
795
955
|
*/
|
|
796
|
-
status?: ExperimentActionStatus;
|
|
956
|
+
status?: ExperimentActionStatus | undefined;
|
|
797
957
|
/**
|
|
798
958
|
* <p>The reason for the state.</p>
|
|
799
959
|
* @public
|
|
800
960
|
*/
|
|
801
|
-
reason?: string;
|
|
961
|
+
reason?: string | undefined;
|
|
802
962
|
}
|
|
803
963
|
/**
|
|
804
964
|
* <p>Describes the action for an experiment.</p>
|
|
@@ -809,42 +969,42 @@ export interface ExperimentAction {
|
|
|
809
969
|
* <p>The ID of the action.</p>
|
|
810
970
|
* @public
|
|
811
971
|
*/
|
|
812
|
-
actionId?: string;
|
|
972
|
+
actionId?: string | undefined;
|
|
813
973
|
/**
|
|
814
974
|
* <p>The description for the action.</p>
|
|
815
975
|
* @public
|
|
816
976
|
*/
|
|
817
|
-
description?: string;
|
|
977
|
+
description?: string | undefined;
|
|
818
978
|
/**
|
|
819
979
|
* <p>The parameters for the action.</p>
|
|
820
980
|
* @public
|
|
821
981
|
*/
|
|
822
|
-
parameters?: Record<string, string
|
|
982
|
+
parameters?: Record<string, string> | undefined;
|
|
823
983
|
/**
|
|
824
984
|
* <p>The targets for the action.</p>
|
|
825
985
|
* @public
|
|
826
986
|
*/
|
|
827
|
-
targets?: Record<string, string
|
|
987
|
+
targets?: Record<string, string> | undefined;
|
|
828
988
|
/**
|
|
829
989
|
* <p>The name of the action that must be completed before this action starts.</p>
|
|
830
990
|
* @public
|
|
831
991
|
*/
|
|
832
|
-
startAfter?: string[];
|
|
992
|
+
startAfter?: string[] | undefined;
|
|
833
993
|
/**
|
|
834
994
|
* <p>The state of the action.</p>
|
|
835
995
|
* @public
|
|
836
996
|
*/
|
|
837
|
-
state?: ExperimentActionState;
|
|
997
|
+
state?: ExperimentActionState | undefined;
|
|
838
998
|
/**
|
|
839
999
|
* <p>The time that the action started.</p>
|
|
840
1000
|
* @public
|
|
841
1001
|
*/
|
|
842
|
-
startTime?: Date;
|
|
1002
|
+
startTime?: Date | undefined;
|
|
843
1003
|
/**
|
|
844
1004
|
* <p>The time that the action ended.</p>
|
|
845
1005
|
* @public
|
|
846
1006
|
*/
|
|
847
|
-
endTime?: Date;
|
|
1007
|
+
endTime?: Date | undefined;
|
|
848
1008
|
}
|
|
849
1009
|
/**
|
|
850
1010
|
* <p>Describes the options for an experiment.</p>
|
|
@@ -855,17 +1015,171 @@ export interface ExperimentOptions {
|
|
|
855
1015
|
* <p>The account targeting setting for an experiment.</p>
|
|
856
1016
|
* @public
|
|
857
1017
|
*/
|
|
858
|
-
accountTargeting?: AccountTargeting;
|
|
1018
|
+
accountTargeting?: AccountTargeting | undefined;
|
|
859
1019
|
/**
|
|
860
1020
|
* <p>The empty target resolution mode for an experiment.</p>
|
|
861
1021
|
* @public
|
|
862
1022
|
*/
|
|
863
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
1023
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
864
1024
|
/**
|
|
865
1025
|
* <p>The actions mode of the experiment that is set from the StartExperiment API command.</p>
|
|
866
1026
|
* @public
|
|
867
1027
|
*/
|
|
868
|
-
actionsMode?: ActionsMode;
|
|
1028
|
+
actionsMode?: ActionsMode | undefined;
|
|
1029
|
+
}
|
|
1030
|
+
/**
|
|
1031
|
+
* <p>Describes the S3 destination for the report.</p>
|
|
1032
|
+
* @public
|
|
1033
|
+
*/
|
|
1034
|
+
export interface ExperimentReportS3Report {
|
|
1035
|
+
/**
|
|
1036
|
+
* <p>The Amazon Resource Name (ARN) of the generated report.</p>
|
|
1037
|
+
* @public
|
|
1038
|
+
*/
|
|
1039
|
+
arn?: string | undefined;
|
|
1040
|
+
/**
|
|
1041
|
+
* <p>The report type for the experiment report.</p>
|
|
1042
|
+
* @public
|
|
1043
|
+
*/
|
|
1044
|
+
reportType?: string | undefined;
|
|
1045
|
+
}
|
|
1046
|
+
/**
|
|
1047
|
+
* <p>Describes the error when experiment report generation has failed.</p>
|
|
1048
|
+
* @public
|
|
1049
|
+
*/
|
|
1050
|
+
export interface ExperimentReportError {
|
|
1051
|
+
/**
|
|
1052
|
+
* <p>The error code for the failed experiment report generation.</p>
|
|
1053
|
+
* @public
|
|
1054
|
+
*/
|
|
1055
|
+
code?: string | undefined;
|
|
1056
|
+
}
|
|
1057
|
+
/**
|
|
1058
|
+
* @public
|
|
1059
|
+
* @enum
|
|
1060
|
+
*/
|
|
1061
|
+
export declare const ExperimentReportStatus: {
|
|
1062
|
+
readonly cancelled: "cancelled";
|
|
1063
|
+
readonly completed: "completed";
|
|
1064
|
+
readonly failed: "failed";
|
|
1065
|
+
readonly pending: "pending";
|
|
1066
|
+
readonly running: "running";
|
|
1067
|
+
};
|
|
1068
|
+
/**
|
|
1069
|
+
* @public
|
|
1070
|
+
*/
|
|
1071
|
+
export type ExperimentReportStatus = (typeof ExperimentReportStatus)[keyof typeof ExperimentReportStatus];
|
|
1072
|
+
/**
|
|
1073
|
+
* <p>Describes the state of the experiment report generation.</p>
|
|
1074
|
+
* @public
|
|
1075
|
+
*/
|
|
1076
|
+
export interface ExperimentReportState {
|
|
1077
|
+
/**
|
|
1078
|
+
* <p>The state of the experiment report generation.</p>
|
|
1079
|
+
* @public
|
|
1080
|
+
*/
|
|
1081
|
+
status?: ExperimentReportStatus | undefined;
|
|
1082
|
+
/**
|
|
1083
|
+
* <p>The reason for the state of the experiment report generation.</p>
|
|
1084
|
+
* @public
|
|
1085
|
+
*/
|
|
1086
|
+
reason?: string | undefined;
|
|
1087
|
+
/**
|
|
1088
|
+
* <p>The error information of the experiment when the experiment report generation has failed.</p>
|
|
1089
|
+
* @public
|
|
1090
|
+
*/
|
|
1091
|
+
error?: ExperimentReportError | undefined;
|
|
1092
|
+
}
|
|
1093
|
+
/**
|
|
1094
|
+
* <p>Describes the experiment report.</p>
|
|
1095
|
+
* @public
|
|
1096
|
+
*/
|
|
1097
|
+
export interface ExperimentReport {
|
|
1098
|
+
/**
|
|
1099
|
+
* <p>The state of the experiment report.</p>
|
|
1100
|
+
* @public
|
|
1101
|
+
*/
|
|
1102
|
+
state?: ExperimentReportState | undefined;
|
|
1103
|
+
/**
|
|
1104
|
+
* <p>The S3 destination of the experiment report.</p>
|
|
1105
|
+
* @public
|
|
1106
|
+
*/
|
|
1107
|
+
s3Reports?: ExperimentReportS3Report[] | undefined;
|
|
1108
|
+
}
|
|
1109
|
+
/**
|
|
1110
|
+
* <p>Specifies the CloudWatch dashboard to include in the experiment report. The dashboard widgets will be captured as snapshot graphs within the report.</p>
|
|
1111
|
+
* @public
|
|
1112
|
+
*/
|
|
1113
|
+
export interface ExperimentReportConfigurationCloudWatchDashboard {
|
|
1114
|
+
/**
|
|
1115
|
+
* <p>The Amazon Resource Name (ARN) of the CloudWatch dashboard to include in the experiment report.</p>
|
|
1116
|
+
* @public
|
|
1117
|
+
*/
|
|
1118
|
+
dashboardIdentifier?: string | undefined;
|
|
1119
|
+
}
|
|
1120
|
+
/**
|
|
1121
|
+
* <p>Describes the data sources for the experiment report.</p>
|
|
1122
|
+
* @public
|
|
1123
|
+
*/
|
|
1124
|
+
export interface ExperimentReportConfigurationDataSources {
|
|
1125
|
+
/**
|
|
1126
|
+
* <p>The CloudWatch dashboards to include as data sources in the experiment report.</p>
|
|
1127
|
+
* @public
|
|
1128
|
+
*/
|
|
1129
|
+
cloudWatchDashboards?: ExperimentReportConfigurationCloudWatchDashboard[] | undefined;
|
|
1130
|
+
}
|
|
1131
|
+
/**
|
|
1132
|
+
* <p>Specifies the S3 destination for the experiment report.</p>
|
|
1133
|
+
* @public
|
|
1134
|
+
*/
|
|
1135
|
+
export interface ExperimentReportConfigurationOutputsS3Configuration {
|
|
1136
|
+
/**
|
|
1137
|
+
* <p>The name of the S3 bucket where the experiment report will be stored.</p>
|
|
1138
|
+
* @public
|
|
1139
|
+
*/
|
|
1140
|
+
bucketName?: string | undefined;
|
|
1141
|
+
/**
|
|
1142
|
+
* <p>The prefix of the S3 bucket where the experiment report will be stored.</p>
|
|
1143
|
+
* @public
|
|
1144
|
+
*/
|
|
1145
|
+
prefix?: string | undefined;
|
|
1146
|
+
}
|
|
1147
|
+
/**
|
|
1148
|
+
* <p>Describes the output destinations of the experiment report.</p>
|
|
1149
|
+
* @public
|
|
1150
|
+
*/
|
|
1151
|
+
export interface ExperimentReportConfigurationOutputs {
|
|
1152
|
+
/**
|
|
1153
|
+
* <p>The S3 destination for the experiment report.</p>
|
|
1154
|
+
* @public
|
|
1155
|
+
*/
|
|
1156
|
+
s3Configuration?: ExperimentReportConfigurationOutputsS3Configuration | undefined;
|
|
1157
|
+
}
|
|
1158
|
+
/**
|
|
1159
|
+
* <p>Describes the report configuration for the experiment. For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/experiment-report-configuration">Experiment report configurations for AWS FIS</a>.</p>
|
|
1160
|
+
* @public
|
|
1161
|
+
*/
|
|
1162
|
+
export interface ExperimentReportConfiguration {
|
|
1163
|
+
/**
|
|
1164
|
+
* <p>The output destinations of the experiment report.</p>
|
|
1165
|
+
* @public
|
|
1166
|
+
*/
|
|
1167
|
+
outputs?: ExperimentReportConfigurationOutputs | undefined;
|
|
1168
|
+
/**
|
|
1169
|
+
* <p>The data sources for the experiment report.</p>
|
|
1170
|
+
* @public
|
|
1171
|
+
*/
|
|
1172
|
+
dataSources?: ExperimentReportConfigurationDataSources | undefined;
|
|
1173
|
+
/**
|
|
1174
|
+
* <p>The duration before the experiment start time for the data sources to include in the report.</p>
|
|
1175
|
+
* @public
|
|
1176
|
+
*/
|
|
1177
|
+
preExperimentDuration?: string | undefined;
|
|
1178
|
+
/**
|
|
1179
|
+
* <p>The duration after the experiment end time for the data sources to include in the report.</p>
|
|
1180
|
+
* @public
|
|
1181
|
+
*/
|
|
1182
|
+
postExperimentDuration?: string | undefined;
|
|
869
1183
|
}
|
|
870
1184
|
/**
|
|
871
1185
|
* <p>Describes the configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
@@ -876,7 +1190,7 @@ export interface ExperimentCloudWatchLogsLogConfiguration {
|
|
|
876
1190
|
* <p>The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.</p>
|
|
877
1191
|
* @public
|
|
878
1192
|
*/
|
|
879
|
-
logGroupArn?: string;
|
|
1193
|
+
logGroupArn?: string | undefined;
|
|
880
1194
|
}
|
|
881
1195
|
/**
|
|
882
1196
|
* <p>Describes the configuration for experiment logging to Amazon S3.</p>
|
|
@@ -887,12 +1201,12 @@ export interface ExperimentS3LogConfiguration {
|
|
|
887
1201
|
* <p>The name of the destination bucket.</p>
|
|
888
1202
|
* @public
|
|
889
1203
|
*/
|
|
890
|
-
bucketName?: string;
|
|
1204
|
+
bucketName?: string | undefined;
|
|
891
1205
|
/**
|
|
892
1206
|
* <p>The bucket prefix.</p>
|
|
893
1207
|
* @public
|
|
894
1208
|
*/
|
|
895
|
-
prefix?: string;
|
|
1209
|
+
prefix?: string | undefined;
|
|
896
1210
|
}
|
|
897
1211
|
/**
|
|
898
1212
|
* <p>Describes the configuration for experiment logging.</p>
|
|
@@ -903,17 +1217,17 @@ export interface ExperimentLogConfiguration {
|
|
|
903
1217
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
904
1218
|
* @public
|
|
905
1219
|
*/
|
|
906
|
-
cloudWatchLogsConfiguration?: ExperimentCloudWatchLogsLogConfiguration;
|
|
1220
|
+
cloudWatchLogsConfiguration?: ExperimentCloudWatchLogsLogConfiguration | undefined;
|
|
907
1221
|
/**
|
|
908
1222
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
909
1223
|
* @public
|
|
910
1224
|
*/
|
|
911
|
-
s3Configuration?: ExperimentS3LogConfiguration;
|
|
1225
|
+
s3Configuration?: ExperimentS3LogConfiguration | undefined;
|
|
912
1226
|
/**
|
|
913
1227
|
* <p>The schema version.</p>
|
|
914
1228
|
* @public
|
|
915
1229
|
*/
|
|
916
|
-
logSchemaVersion?: number;
|
|
1230
|
+
logSchemaVersion?: number | undefined;
|
|
917
1231
|
}
|
|
918
1232
|
/**
|
|
919
1233
|
* <p>Describes the error when an experiment has <code>failed</code>.</p>
|
|
@@ -924,17 +1238,17 @@ export interface ExperimentError {
|
|
|
924
1238
|
* <p>The Amazon Web Services Account ID where the experiment failure occurred.</p>
|
|
925
1239
|
* @public
|
|
926
1240
|
*/
|
|
927
|
-
accountId?: string;
|
|
1241
|
+
accountId?: string | undefined;
|
|
928
1242
|
/**
|
|
929
1243
|
* <p>The error code for the failed experiment.</p>
|
|
930
1244
|
* @public
|
|
931
1245
|
*/
|
|
932
|
-
code?: string;
|
|
1246
|
+
code?: string | undefined;
|
|
933
1247
|
/**
|
|
934
1248
|
* <p>Context for the section of the experiment template that failed.</p>
|
|
935
1249
|
* @public
|
|
936
1250
|
*/
|
|
937
|
-
location?: string;
|
|
1251
|
+
location?: string | undefined;
|
|
938
1252
|
}
|
|
939
1253
|
/**
|
|
940
1254
|
* @public
|
|
@@ -963,17 +1277,17 @@ export interface ExperimentState {
|
|
|
963
1277
|
* <p>The state of the experiment.</p>
|
|
964
1278
|
* @public
|
|
965
1279
|
*/
|
|
966
|
-
status?: ExperimentStatus;
|
|
1280
|
+
status?: ExperimentStatus | undefined;
|
|
967
1281
|
/**
|
|
968
1282
|
* <p>The reason for the state.</p>
|
|
969
1283
|
* @public
|
|
970
1284
|
*/
|
|
971
|
-
reason?: string;
|
|
1285
|
+
reason?: string | undefined;
|
|
972
1286
|
/**
|
|
973
1287
|
* <p>The error information of the experiment when the action has <code>failed</code>.</p>
|
|
974
1288
|
* @public
|
|
975
1289
|
*/
|
|
976
|
-
error?: ExperimentError;
|
|
1290
|
+
error?: ExperimentError | undefined;
|
|
977
1291
|
}
|
|
978
1292
|
/**
|
|
979
1293
|
* <p>Describes the stop condition for an experiment.</p>
|
|
@@ -984,12 +1298,12 @@ export interface ExperimentStopCondition {
|
|
|
984
1298
|
* <p>The source for the stop condition.</p>
|
|
985
1299
|
* @public
|
|
986
1300
|
*/
|
|
987
|
-
source?: string;
|
|
1301
|
+
source?: string | undefined;
|
|
988
1302
|
/**
|
|
989
1303
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.</p>
|
|
990
1304
|
* @public
|
|
991
1305
|
*/
|
|
992
|
-
value?: string;
|
|
1306
|
+
value?: string | undefined;
|
|
993
1307
|
}
|
|
994
1308
|
/**
|
|
995
1309
|
* <p>Describes a filter used for the target resources in an experiment.</p>
|
|
@@ -1000,12 +1314,12 @@ export interface ExperimentTargetFilter {
|
|
|
1000
1314
|
* <p>The attribute path for the filter.</p>
|
|
1001
1315
|
* @public
|
|
1002
1316
|
*/
|
|
1003
|
-
path?: string;
|
|
1317
|
+
path?: string | undefined;
|
|
1004
1318
|
/**
|
|
1005
1319
|
* <p>The attribute values for the filter.</p>
|
|
1006
1320
|
* @public
|
|
1007
1321
|
*/
|
|
1008
|
-
values?: string[];
|
|
1322
|
+
values?: string[] | undefined;
|
|
1009
1323
|
}
|
|
1010
1324
|
/**
|
|
1011
1325
|
* <p>Describes a target for an experiment.</p>
|
|
@@ -1016,32 +1330,32 @@ export interface ExperimentTarget {
|
|
|
1016
1330
|
* <p>The resource type.</p>
|
|
1017
1331
|
* @public
|
|
1018
1332
|
*/
|
|
1019
|
-
resourceType?: string;
|
|
1333
|
+
resourceType?: string | undefined;
|
|
1020
1334
|
/**
|
|
1021
1335
|
* <p>The Amazon Resource Names (ARNs) of the resources.</p>
|
|
1022
1336
|
* @public
|
|
1023
1337
|
*/
|
|
1024
|
-
resourceArns?: string[];
|
|
1338
|
+
resourceArns?: string[] | undefined;
|
|
1025
1339
|
/**
|
|
1026
1340
|
* <p>The tags for the target resources.</p>
|
|
1027
1341
|
* @public
|
|
1028
1342
|
*/
|
|
1029
|
-
resourceTags?: Record<string, string
|
|
1343
|
+
resourceTags?: Record<string, string> | undefined;
|
|
1030
1344
|
/**
|
|
1031
1345
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
1032
1346
|
* @public
|
|
1033
1347
|
*/
|
|
1034
|
-
filters?: ExperimentTargetFilter[];
|
|
1348
|
+
filters?: ExperimentTargetFilter[] | undefined;
|
|
1035
1349
|
/**
|
|
1036
1350
|
* <p>Scopes the identified resources to a specific count or percentage.</p>
|
|
1037
1351
|
* @public
|
|
1038
1352
|
*/
|
|
1039
|
-
selectionMode?: string;
|
|
1353
|
+
selectionMode?: string | undefined;
|
|
1040
1354
|
/**
|
|
1041
1355
|
* <p>The resource type parameters.</p>
|
|
1042
1356
|
* @public
|
|
1043
1357
|
*/
|
|
1044
|
-
parameters?: Record<string, string
|
|
1358
|
+
parameters?: Record<string, string> | undefined;
|
|
1045
1359
|
}
|
|
1046
1360
|
/**
|
|
1047
1361
|
* <p>Describes an experiment.</p>
|
|
@@ -1052,77 +1366,87 @@ export interface Experiment {
|
|
|
1052
1366
|
* <p>The ID of the experiment.</p>
|
|
1053
1367
|
* @public
|
|
1054
1368
|
*/
|
|
1055
|
-
id?: string;
|
|
1369
|
+
id?: string | undefined;
|
|
1056
1370
|
/**
|
|
1057
1371
|
* <p>The Amazon Resource Name (ARN) of the experiment.</p>
|
|
1058
1372
|
* @public
|
|
1059
1373
|
*/
|
|
1060
|
-
arn?: string;
|
|
1374
|
+
arn?: string | undefined;
|
|
1061
1375
|
/**
|
|
1062
1376
|
* <p>The ID of the experiment template.</p>
|
|
1063
1377
|
* @public
|
|
1064
1378
|
*/
|
|
1065
|
-
experimentTemplateId?: string;
|
|
1379
|
+
experimentTemplateId?: string | undefined;
|
|
1066
1380
|
/**
|
|
1067
1381
|
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
|
|
1068
1382
|
* @public
|
|
1069
1383
|
*/
|
|
1070
|
-
roleArn?: string;
|
|
1384
|
+
roleArn?: string | undefined;
|
|
1071
1385
|
/**
|
|
1072
1386
|
* <p>The state of the experiment.</p>
|
|
1073
1387
|
* @public
|
|
1074
1388
|
*/
|
|
1075
|
-
state?: ExperimentState;
|
|
1389
|
+
state?: ExperimentState | undefined;
|
|
1076
1390
|
/**
|
|
1077
1391
|
* <p>The targets for the experiment.</p>
|
|
1078
1392
|
* @public
|
|
1079
1393
|
*/
|
|
1080
|
-
targets?: Record<string, ExperimentTarget
|
|
1394
|
+
targets?: Record<string, ExperimentTarget> | undefined;
|
|
1081
1395
|
/**
|
|
1082
1396
|
* <p>The actions for the experiment.</p>
|
|
1083
1397
|
* @public
|
|
1084
1398
|
*/
|
|
1085
|
-
actions?: Record<string, ExperimentAction
|
|
1399
|
+
actions?: Record<string, ExperimentAction> | undefined;
|
|
1086
1400
|
/**
|
|
1087
1401
|
* <p>The stop conditions for the experiment.</p>
|
|
1088
1402
|
* @public
|
|
1089
1403
|
*/
|
|
1090
|
-
stopConditions?: ExperimentStopCondition[];
|
|
1404
|
+
stopConditions?: ExperimentStopCondition[] | undefined;
|
|
1091
1405
|
/**
|
|
1092
1406
|
* <p>The time that the experiment was created.</p>
|
|
1093
1407
|
* @public
|
|
1094
1408
|
*/
|
|
1095
|
-
creationTime?: Date;
|
|
1409
|
+
creationTime?: Date | undefined;
|
|
1096
1410
|
/**
|
|
1097
1411
|
* <p>The time that the experiment started.</p>
|
|
1098
1412
|
* @public
|
|
1099
1413
|
*/
|
|
1100
|
-
startTime?: Date;
|
|
1414
|
+
startTime?: Date | undefined;
|
|
1101
1415
|
/**
|
|
1102
1416
|
* <p>The time that the experiment ended.</p>
|
|
1103
1417
|
* @public
|
|
1104
1418
|
*/
|
|
1105
|
-
endTime?: Date;
|
|
1419
|
+
endTime?: Date | undefined;
|
|
1106
1420
|
/**
|
|
1107
1421
|
* <p>The tags for the experiment.</p>
|
|
1108
1422
|
* @public
|
|
1109
1423
|
*/
|
|
1110
|
-
tags?: Record<string, string
|
|
1424
|
+
tags?: Record<string, string> | undefined;
|
|
1111
1425
|
/**
|
|
1112
1426
|
* <p>The configuration for experiment logging.</p>
|
|
1113
1427
|
* @public
|
|
1114
1428
|
*/
|
|
1115
|
-
logConfiguration?: ExperimentLogConfiguration;
|
|
1429
|
+
logConfiguration?: ExperimentLogConfiguration | undefined;
|
|
1116
1430
|
/**
|
|
1117
1431
|
* <p>The experiment options for the experiment.</p>
|
|
1118
1432
|
* @public
|
|
1119
1433
|
*/
|
|
1120
|
-
experimentOptions?: ExperimentOptions;
|
|
1434
|
+
experimentOptions?: ExperimentOptions | undefined;
|
|
1121
1435
|
/**
|
|
1122
1436
|
* <p>The count of target account configurations for the experiment.</p>
|
|
1123
1437
|
* @public
|
|
1124
1438
|
*/
|
|
1125
|
-
targetAccountConfigurationsCount?: number;
|
|
1439
|
+
targetAccountConfigurationsCount?: number | undefined;
|
|
1440
|
+
/**
|
|
1441
|
+
* <p>The experiment report configuration for the experiment.</p>
|
|
1442
|
+
* @public
|
|
1443
|
+
*/
|
|
1444
|
+
experimentReportConfiguration?: ExperimentReportConfiguration | undefined;
|
|
1445
|
+
/**
|
|
1446
|
+
* <p>The experiment report for the experiment.</p>
|
|
1447
|
+
* @public
|
|
1448
|
+
*/
|
|
1449
|
+
experimentReport?: ExperimentReport | undefined;
|
|
1126
1450
|
}
|
|
1127
1451
|
/**
|
|
1128
1452
|
* <p>Provides a summary of an experiment.</p>
|
|
@@ -1133,37 +1457,37 @@ export interface ExperimentSummary {
|
|
|
1133
1457
|
* <p>The ID of the experiment.</p>
|
|
1134
1458
|
* @public
|
|
1135
1459
|
*/
|
|
1136
|
-
id?: string;
|
|
1460
|
+
id?: string | undefined;
|
|
1137
1461
|
/**
|
|
1138
1462
|
* <p>The Amazon Resource Name (ARN) of the experiment.</p>
|
|
1139
1463
|
* @public
|
|
1140
1464
|
*/
|
|
1141
|
-
arn?: string;
|
|
1465
|
+
arn?: string | undefined;
|
|
1142
1466
|
/**
|
|
1143
1467
|
* <p>The ID of the experiment template.</p>
|
|
1144
1468
|
* @public
|
|
1145
1469
|
*/
|
|
1146
|
-
experimentTemplateId?: string;
|
|
1470
|
+
experimentTemplateId?: string | undefined;
|
|
1147
1471
|
/**
|
|
1148
1472
|
* <p>The state of the experiment.</p>
|
|
1149
1473
|
* @public
|
|
1150
1474
|
*/
|
|
1151
|
-
state?: ExperimentState;
|
|
1475
|
+
state?: ExperimentState | undefined;
|
|
1152
1476
|
/**
|
|
1153
1477
|
* <p>The time that the experiment was created.</p>
|
|
1154
1478
|
* @public
|
|
1155
1479
|
*/
|
|
1156
|
-
creationTime?: Date;
|
|
1480
|
+
creationTime?: Date | undefined;
|
|
1157
1481
|
/**
|
|
1158
1482
|
* <p>The tags for the experiment.</p>
|
|
1159
1483
|
* @public
|
|
1160
1484
|
*/
|
|
1161
|
-
tags?: Record<string, string
|
|
1485
|
+
tags?: Record<string, string> | undefined;
|
|
1162
1486
|
/**
|
|
1163
1487
|
* <p>The experiment options for the experiment.</p>
|
|
1164
1488
|
* @public
|
|
1165
1489
|
*/
|
|
1166
|
-
experimentOptions?: ExperimentOptions;
|
|
1490
|
+
experimentOptions?: ExperimentOptions | undefined;
|
|
1167
1491
|
}
|
|
1168
1492
|
/**
|
|
1169
1493
|
* <p>Describes a target account configuration for an experiment.</p>
|
|
@@ -1174,17 +1498,17 @@ export interface ExperimentTargetAccountConfiguration {
|
|
|
1174
1498
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
1175
1499
|
* @public
|
|
1176
1500
|
*/
|
|
1177
|
-
roleArn?: string;
|
|
1501
|
+
roleArn?: string | undefined;
|
|
1178
1502
|
/**
|
|
1179
1503
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1180
1504
|
* @public
|
|
1181
1505
|
*/
|
|
1182
|
-
accountId?: string;
|
|
1506
|
+
accountId?: string | undefined;
|
|
1183
1507
|
/**
|
|
1184
1508
|
* <p>The description of the target account.</p>
|
|
1185
1509
|
* @public
|
|
1186
1510
|
*/
|
|
1187
|
-
description?: string;
|
|
1511
|
+
description?: string | undefined;
|
|
1188
1512
|
}
|
|
1189
1513
|
/**
|
|
1190
1514
|
* <p>Provides a summary of a target account configuration.</p>
|
|
@@ -1195,17 +1519,17 @@ export interface ExperimentTargetAccountConfigurationSummary {
|
|
|
1195
1519
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
1196
1520
|
* @public
|
|
1197
1521
|
*/
|
|
1198
|
-
roleArn?: string;
|
|
1522
|
+
roleArn?: string | undefined;
|
|
1199
1523
|
/**
|
|
1200
1524
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1201
1525
|
* @public
|
|
1202
1526
|
*/
|
|
1203
|
-
accountId?: string;
|
|
1527
|
+
accountId?: string | undefined;
|
|
1204
1528
|
/**
|
|
1205
1529
|
* <p>The description of the target account.</p>
|
|
1206
1530
|
* @public
|
|
1207
1531
|
*/
|
|
1208
|
-
description?: string;
|
|
1532
|
+
description?: string | undefined;
|
|
1209
1533
|
}
|
|
1210
1534
|
/**
|
|
1211
1535
|
* <p>Provides a summary of an experiment template.</p>
|
|
@@ -1216,32 +1540,32 @@ export interface ExperimentTemplateSummary {
|
|
|
1216
1540
|
* <p>The ID of the experiment template.</p>
|
|
1217
1541
|
* @public
|
|
1218
1542
|
*/
|
|
1219
|
-
id?: string;
|
|
1543
|
+
id?: string | undefined;
|
|
1220
1544
|
/**
|
|
1221
1545
|
* <p>The Amazon Resource Name (ARN) of the experiment template.</p>
|
|
1222
1546
|
* @public
|
|
1223
1547
|
*/
|
|
1224
|
-
arn?: string;
|
|
1548
|
+
arn?: string | undefined;
|
|
1225
1549
|
/**
|
|
1226
1550
|
* <p>The description of the experiment template.</p>
|
|
1227
1551
|
* @public
|
|
1228
1552
|
*/
|
|
1229
|
-
description?: string;
|
|
1553
|
+
description?: string | undefined;
|
|
1230
1554
|
/**
|
|
1231
1555
|
* <p>The time that the experiment template was created.</p>
|
|
1232
1556
|
* @public
|
|
1233
1557
|
*/
|
|
1234
|
-
creationTime?: Date;
|
|
1558
|
+
creationTime?: Date | undefined;
|
|
1235
1559
|
/**
|
|
1236
1560
|
* <p>The time that the experiment template was last updated.</p>
|
|
1237
1561
|
* @public
|
|
1238
1562
|
*/
|
|
1239
|
-
lastUpdateTime?: Date;
|
|
1563
|
+
lastUpdateTime?: Date | undefined;
|
|
1240
1564
|
/**
|
|
1241
1565
|
* <p>The tags for the experiment template.</p>
|
|
1242
1566
|
* @public
|
|
1243
1567
|
*/
|
|
1244
|
-
tags?: Record<string, string
|
|
1568
|
+
tags?: Record<string, string> | undefined;
|
|
1245
1569
|
}
|
|
1246
1570
|
/**
|
|
1247
1571
|
* @public
|
|
@@ -1261,7 +1585,7 @@ export interface GetActionResponse {
|
|
|
1261
1585
|
* <p>Information about the action.</p>
|
|
1262
1586
|
* @public
|
|
1263
1587
|
*/
|
|
1264
|
-
action?: Action;
|
|
1588
|
+
action?: Action | undefined;
|
|
1265
1589
|
}
|
|
1266
1590
|
/**
|
|
1267
1591
|
* @public
|
|
@@ -1281,7 +1605,7 @@ export interface GetExperimentResponse {
|
|
|
1281
1605
|
* <p>Information about the experiment.</p>
|
|
1282
1606
|
* @public
|
|
1283
1607
|
*/
|
|
1284
|
-
experiment?: Experiment;
|
|
1608
|
+
experiment?: Experiment | undefined;
|
|
1285
1609
|
}
|
|
1286
1610
|
/**
|
|
1287
1611
|
* @public
|
|
@@ -1306,7 +1630,7 @@ export interface GetExperimentTargetAccountConfigurationResponse {
|
|
|
1306
1630
|
* <p>Information about the target account configuration.</p>
|
|
1307
1631
|
* @public
|
|
1308
1632
|
*/
|
|
1309
|
-
targetAccountConfiguration?: ExperimentTargetAccountConfiguration;
|
|
1633
|
+
targetAccountConfiguration?: ExperimentTargetAccountConfiguration | undefined;
|
|
1310
1634
|
}
|
|
1311
1635
|
/**
|
|
1312
1636
|
* @public
|
|
@@ -1326,7 +1650,7 @@ export interface GetExperimentTemplateResponse {
|
|
|
1326
1650
|
* <p>Information about the experiment template.</p>
|
|
1327
1651
|
* @public
|
|
1328
1652
|
*/
|
|
1329
|
-
experimentTemplate?: ExperimentTemplate;
|
|
1653
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
1330
1654
|
}
|
|
1331
1655
|
/**
|
|
1332
1656
|
* @public
|
|
@@ -1366,14 +1690,14 @@ export interface SafetyLeverState {
|
|
|
1366
1690
|
* </p>
|
|
1367
1691
|
* @public
|
|
1368
1692
|
*/
|
|
1369
|
-
status?: SafetyLeverStatus;
|
|
1693
|
+
status?: SafetyLeverStatus | undefined;
|
|
1370
1694
|
/**
|
|
1371
1695
|
* <p>
|
|
1372
1696
|
* The reason for the state of the safety lever.
|
|
1373
1697
|
* </p>
|
|
1374
1698
|
* @public
|
|
1375
1699
|
*/
|
|
1376
|
-
reason?: string;
|
|
1700
|
+
reason?: string | undefined;
|
|
1377
1701
|
}
|
|
1378
1702
|
/**
|
|
1379
1703
|
* <p>
|
|
@@ -1388,21 +1712,21 @@ export interface SafetyLever {
|
|
|
1388
1712
|
* </p>
|
|
1389
1713
|
* @public
|
|
1390
1714
|
*/
|
|
1391
|
-
id?: string;
|
|
1715
|
+
id?: string | undefined;
|
|
1392
1716
|
/**
|
|
1393
1717
|
* <p>
|
|
1394
1718
|
* The Amazon Resource Name (ARN) of the safety lever.
|
|
1395
1719
|
* </p>
|
|
1396
1720
|
* @public
|
|
1397
1721
|
*/
|
|
1398
|
-
arn?: string;
|
|
1722
|
+
arn?: string | undefined;
|
|
1399
1723
|
/**
|
|
1400
1724
|
* <p>
|
|
1401
1725
|
* The state of the safety lever.
|
|
1402
1726
|
* </p>
|
|
1403
1727
|
* @public
|
|
1404
1728
|
*/
|
|
1405
|
-
state?: SafetyLeverState;
|
|
1729
|
+
state?: SafetyLeverState | undefined;
|
|
1406
1730
|
}
|
|
1407
1731
|
/**
|
|
1408
1732
|
* @public
|
|
@@ -1414,7 +1738,7 @@ export interface GetSafetyLeverResponse {
|
|
|
1414
1738
|
* </p>
|
|
1415
1739
|
* @public
|
|
1416
1740
|
*/
|
|
1417
|
-
safetyLever?: SafetyLever;
|
|
1741
|
+
safetyLever?: SafetyLever | undefined;
|
|
1418
1742
|
}
|
|
1419
1743
|
/**
|
|
1420
1744
|
* @public
|
|
@@ -1439,7 +1763,7 @@ export interface GetTargetAccountConfigurationResponse {
|
|
|
1439
1763
|
* <p>Information about the target account configuration.</p>
|
|
1440
1764
|
* @public
|
|
1441
1765
|
*/
|
|
1442
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
1766
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
1443
1767
|
}
|
|
1444
1768
|
/**
|
|
1445
1769
|
* @public
|
|
@@ -1461,12 +1785,12 @@ export interface TargetResourceTypeParameter {
|
|
|
1461
1785
|
* <p>A description of the parameter.</p>
|
|
1462
1786
|
* @public
|
|
1463
1787
|
*/
|
|
1464
|
-
description?: string;
|
|
1788
|
+
description?: string | undefined;
|
|
1465
1789
|
/**
|
|
1466
1790
|
* <p>Indicates whether the parameter is required.</p>
|
|
1467
1791
|
* @public
|
|
1468
1792
|
*/
|
|
1469
|
-
required?: boolean;
|
|
1793
|
+
required?: boolean | undefined;
|
|
1470
1794
|
}
|
|
1471
1795
|
/**
|
|
1472
1796
|
* <p>Describes a resource type.</p>
|
|
@@ -1477,17 +1801,17 @@ export interface TargetResourceType {
|
|
|
1477
1801
|
* <p>The resource type.</p>
|
|
1478
1802
|
* @public
|
|
1479
1803
|
*/
|
|
1480
|
-
resourceType?: string;
|
|
1804
|
+
resourceType?: string | undefined;
|
|
1481
1805
|
/**
|
|
1482
1806
|
* <p>A description of the resource type.</p>
|
|
1483
1807
|
* @public
|
|
1484
1808
|
*/
|
|
1485
|
-
description?: string;
|
|
1809
|
+
description?: string | undefined;
|
|
1486
1810
|
/**
|
|
1487
1811
|
* <p>The parameters for the resource type.</p>
|
|
1488
1812
|
* @public
|
|
1489
1813
|
*/
|
|
1490
|
-
parameters?: Record<string, TargetResourceTypeParameter
|
|
1814
|
+
parameters?: Record<string, TargetResourceTypeParameter> | undefined;
|
|
1491
1815
|
}
|
|
1492
1816
|
/**
|
|
1493
1817
|
* @public
|
|
@@ -1497,7 +1821,7 @@ export interface GetTargetResourceTypeResponse {
|
|
|
1497
1821
|
* <p>Information about the resource type.</p>
|
|
1498
1822
|
* @public
|
|
1499
1823
|
*/
|
|
1500
|
-
targetResourceType?: TargetResourceType;
|
|
1824
|
+
targetResourceType?: TargetResourceType | undefined;
|
|
1501
1825
|
}
|
|
1502
1826
|
/**
|
|
1503
1827
|
* @public
|
|
@@ -1507,12 +1831,12 @@ export interface ListActionsRequest {
|
|
|
1507
1831
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
1508
1832
|
* @public
|
|
1509
1833
|
*/
|
|
1510
|
-
maxResults?: number;
|
|
1834
|
+
maxResults?: number | undefined;
|
|
1511
1835
|
/**
|
|
1512
1836
|
* <p>The token for the next page of results.</p>
|
|
1513
1837
|
* @public
|
|
1514
1838
|
*/
|
|
1515
|
-
nextToken?: string;
|
|
1839
|
+
nextToken?: string | undefined;
|
|
1516
1840
|
}
|
|
1517
1841
|
/**
|
|
1518
1842
|
* @public
|
|
@@ -1522,12 +1846,12 @@ export interface ListActionsResponse {
|
|
|
1522
1846
|
* <p>The actions.</p>
|
|
1523
1847
|
* @public
|
|
1524
1848
|
*/
|
|
1525
|
-
actions?: ActionSummary[];
|
|
1849
|
+
actions?: ActionSummary[] | undefined;
|
|
1526
1850
|
/**
|
|
1527
1851
|
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
1528
1852
|
* @public
|
|
1529
1853
|
*/
|
|
1530
|
-
nextToken?: string;
|
|
1854
|
+
nextToken?: string | undefined;
|
|
1531
1855
|
}
|
|
1532
1856
|
/**
|
|
1533
1857
|
* @public
|
|
@@ -1543,17 +1867,17 @@ export interface ListExperimentResolvedTargetsRequest {
|
|
|
1543
1867
|
* make another call with the returned nextToken value.</p>
|
|
1544
1868
|
* @public
|
|
1545
1869
|
*/
|
|
1546
|
-
maxResults?: number;
|
|
1870
|
+
maxResults?: number | undefined;
|
|
1547
1871
|
/**
|
|
1548
1872
|
* <p>The token for the next page of results.</p>
|
|
1549
1873
|
* @public
|
|
1550
1874
|
*/
|
|
1551
|
-
nextToken?: string;
|
|
1875
|
+
nextToken?: string | undefined;
|
|
1552
1876
|
/**
|
|
1553
1877
|
* <p>The name of the target.</p>
|
|
1554
1878
|
* @public
|
|
1555
1879
|
*/
|
|
1556
|
-
targetName?: string;
|
|
1880
|
+
targetName?: string | undefined;
|
|
1557
1881
|
}
|
|
1558
1882
|
/**
|
|
1559
1883
|
* <p>Describes a resolved target.</p>
|
|
@@ -1564,17 +1888,17 @@ export interface ResolvedTarget {
|
|
|
1564
1888
|
* <p>The resource type of the target.</p>
|
|
1565
1889
|
* @public
|
|
1566
1890
|
*/
|
|
1567
|
-
resourceType?: string;
|
|
1891
|
+
resourceType?: string | undefined;
|
|
1568
1892
|
/**
|
|
1569
1893
|
* <p>The name of the target.</p>
|
|
1570
1894
|
* @public
|
|
1571
1895
|
*/
|
|
1572
|
-
targetName?: string;
|
|
1896
|
+
targetName?: string | undefined;
|
|
1573
1897
|
/**
|
|
1574
1898
|
* <p>Information about the target.</p>
|
|
1575
1899
|
* @public
|
|
1576
1900
|
*/
|
|
1577
|
-
targetInformation?: Record<string, string
|
|
1901
|
+
targetInformation?: Record<string, string> | undefined;
|
|
1578
1902
|
}
|
|
1579
1903
|
/**
|
|
1580
1904
|
* @public
|
|
@@ -1584,13 +1908,13 @@ export interface ListExperimentResolvedTargetsResponse {
|
|
|
1584
1908
|
* <p>The resolved targets.</p>
|
|
1585
1909
|
* @public
|
|
1586
1910
|
*/
|
|
1587
|
-
resolvedTargets?: ResolvedTarget[];
|
|
1911
|
+
resolvedTargets?: ResolvedTarget[] | undefined;
|
|
1588
1912
|
/**
|
|
1589
1913
|
* <p>The token to use to retrieve the next page of results.
|
|
1590
1914
|
* This value is null when there are no more results to return.</p>
|
|
1591
1915
|
* @public
|
|
1592
1916
|
*/
|
|
1593
|
-
nextToken?: string;
|
|
1917
|
+
nextToken?: string | undefined;
|
|
1594
1918
|
}
|
|
1595
1919
|
/**
|
|
1596
1920
|
* @public
|
|
@@ -1600,17 +1924,17 @@ export interface ListExperimentsRequest {
|
|
|
1600
1924
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
1601
1925
|
* @public
|
|
1602
1926
|
*/
|
|
1603
|
-
maxResults?: number;
|
|
1927
|
+
maxResults?: number | undefined;
|
|
1604
1928
|
/**
|
|
1605
1929
|
* <p>The token for the next page of results.</p>
|
|
1606
1930
|
* @public
|
|
1607
1931
|
*/
|
|
1608
|
-
nextToken?: string;
|
|
1932
|
+
nextToken?: string | undefined;
|
|
1609
1933
|
/**
|
|
1610
1934
|
* <p>The ID of the experiment template.</p>
|
|
1611
1935
|
* @public
|
|
1612
1936
|
*/
|
|
1613
|
-
experimentTemplateId?: string;
|
|
1937
|
+
experimentTemplateId?: string | undefined;
|
|
1614
1938
|
}
|
|
1615
1939
|
/**
|
|
1616
1940
|
* @public
|
|
@@ -1620,12 +1944,12 @@ export interface ListExperimentsResponse {
|
|
|
1620
1944
|
* <p>The experiments.</p>
|
|
1621
1945
|
* @public
|
|
1622
1946
|
*/
|
|
1623
|
-
experiments?: ExperimentSummary[];
|
|
1947
|
+
experiments?: ExperimentSummary[] | undefined;
|
|
1624
1948
|
/**
|
|
1625
1949
|
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
1626
1950
|
* @public
|
|
1627
1951
|
*/
|
|
1628
|
-
nextToken?: string;
|
|
1952
|
+
nextToken?: string | undefined;
|
|
1629
1953
|
}
|
|
1630
1954
|
/**
|
|
1631
1955
|
* @public
|
|
@@ -1640,7 +1964,7 @@ export interface ListExperimentTargetAccountConfigurationsRequest {
|
|
|
1640
1964
|
* <p>The token for the next page of results.</p>
|
|
1641
1965
|
* @public
|
|
1642
1966
|
*/
|
|
1643
|
-
nextToken?: string;
|
|
1967
|
+
nextToken?: string | undefined;
|
|
1644
1968
|
}
|
|
1645
1969
|
/**
|
|
1646
1970
|
* @public
|
|
@@ -1650,13 +1974,13 @@ export interface ListExperimentTargetAccountConfigurationsResponse {
|
|
|
1650
1974
|
* <p>The target account configurations.</p>
|
|
1651
1975
|
* @public
|
|
1652
1976
|
*/
|
|
1653
|
-
targetAccountConfigurations?: ExperimentTargetAccountConfigurationSummary[];
|
|
1977
|
+
targetAccountConfigurations?: ExperimentTargetAccountConfigurationSummary[] | undefined;
|
|
1654
1978
|
/**
|
|
1655
1979
|
* <p>The token to use to retrieve the next page of results.
|
|
1656
1980
|
* This value is null when there are no more results to return.</p>
|
|
1657
1981
|
* @public
|
|
1658
1982
|
*/
|
|
1659
|
-
nextToken?: string;
|
|
1983
|
+
nextToken?: string | undefined;
|
|
1660
1984
|
}
|
|
1661
1985
|
/**
|
|
1662
1986
|
* @public
|
|
@@ -1666,12 +1990,12 @@ export interface ListExperimentTemplatesRequest {
|
|
|
1666
1990
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
1667
1991
|
* @public
|
|
1668
1992
|
*/
|
|
1669
|
-
maxResults?: number;
|
|
1993
|
+
maxResults?: number | undefined;
|
|
1670
1994
|
/**
|
|
1671
1995
|
* <p>The token for the next page of results.</p>
|
|
1672
1996
|
* @public
|
|
1673
1997
|
*/
|
|
1674
|
-
nextToken?: string;
|
|
1998
|
+
nextToken?: string | undefined;
|
|
1675
1999
|
}
|
|
1676
2000
|
/**
|
|
1677
2001
|
* @public
|
|
@@ -1681,12 +2005,12 @@ export interface ListExperimentTemplatesResponse {
|
|
|
1681
2005
|
* <p>The experiment templates.</p>
|
|
1682
2006
|
* @public
|
|
1683
2007
|
*/
|
|
1684
|
-
experimentTemplates?: ExperimentTemplateSummary[];
|
|
2008
|
+
experimentTemplates?: ExperimentTemplateSummary[] | undefined;
|
|
1685
2009
|
/**
|
|
1686
2010
|
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
1687
2011
|
* @public
|
|
1688
2012
|
*/
|
|
1689
|
-
nextToken?: string;
|
|
2013
|
+
nextToken?: string | undefined;
|
|
1690
2014
|
}
|
|
1691
2015
|
/**
|
|
1692
2016
|
* @public
|
|
@@ -1706,7 +2030,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1706
2030
|
* <p>The tags for the resource.</p>
|
|
1707
2031
|
* @public
|
|
1708
2032
|
*/
|
|
1709
|
-
tags?: Record<string, string
|
|
2033
|
+
tags?: Record<string, string> | undefined;
|
|
1710
2034
|
}
|
|
1711
2035
|
/**
|
|
1712
2036
|
* @public
|
|
@@ -1722,12 +2046,12 @@ export interface ListTargetAccountConfigurationsRequest {
|
|
|
1722
2046
|
* make another call with the returned nextToken value.</p>
|
|
1723
2047
|
* @public
|
|
1724
2048
|
*/
|
|
1725
|
-
maxResults?: number;
|
|
2049
|
+
maxResults?: number | undefined;
|
|
1726
2050
|
/**
|
|
1727
2051
|
* <p>The token for the next page of results.</p>
|
|
1728
2052
|
* @public
|
|
1729
2053
|
*/
|
|
1730
|
-
nextToken?: string;
|
|
2054
|
+
nextToken?: string | undefined;
|
|
1731
2055
|
}
|
|
1732
2056
|
/**
|
|
1733
2057
|
* <p>Provides a summary of a target account configuration.</p>
|
|
@@ -1738,17 +2062,17 @@ export interface TargetAccountConfigurationSummary {
|
|
|
1738
2062
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
1739
2063
|
* @public
|
|
1740
2064
|
*/
|
|
1741
|
-
roleArn?: string;
|
|
2065
|
+
roleArn?: string | undefined;
|
|
1742
2066
|
/**
|
|
1743
2067
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1744
2068
|
* @public
|
|
1745
2069
|
*/
|
|
1746
|
-
accountId?: string;
|
|
2070
|
+
accountId?: string | undefined;
|
|
1747
2071
|
/**
|
|
1748
2072
|
* <p>The description of the target account.</p>
|
|
1749
2073
|
* @public
|
|
1750
2074
|
*/
|
|
1751
|
-
description?: string;
|
|
2075
|
+
description?: string | undefined;
|
|
1752
2076
|
}
|
|
1753
2077
|
/**
|
|
1754
2078
|
* @public
|
|
@@ -1758,13 +2082,13 @@ export interface ListTargetAccountConfigurationsResponse {
|
|
|
1758
2082
|
* <p>The target account configurations.</p>
|
|
1759
2083
|
* @public
|
|
1760
2084
|
*/
|
|
1761
|
-
targetAccountConfigurations?: TargetAccountConfigurationSummary[];
|
|
2085
|
+
targetAccountConfigurations?: TargetAccountConfigurationSummary[] | undefined;
|
|
1762
2086
|
/**
|
|
1763
2087
|
* <p>The token to use to retrieve the next page of results.
|
|
1764
2088
|
* This value is null when there are no more results to return.</p>
|
|
1765
2089
|
* @public
|
|
1766
2090
|
*/
|
|
1767
|
-
nextToken?: string;
|
|
2091
|
+
nextToken?: string | undefined;
|
|
1768
2092
|
}
|
|
1769
2093
|
/**
|
|
1770
2094
|
* @public
|
|
@@ -1774,12 +2098,12 @@ export interface ListTargetResourceTypesRequest {
|
|
|
1774
2098
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
1775
2099
|
* @public
|
|
1776
2100
|
*/
|
|
1777
|
-
maxResults?: number;
|
|
2101
|
+
maxResults?: number | undefined;
|
|
1778
2102
|
/**
|
|
1779
2103
|
* <p>The token for the next page of results.</p>
|
|
1780
2104
|
* @public
|
|
1781
2105
|
*/
|
|
1782
|
-
nextToken?: string;
|
|
2106
|
+
nextToken?: string | undefined;
|
|
1783
2107
|
}
|
|
1784
2108
|
/**
|
|
1785
2109
|
* <p>Describes a resource type.</p>
|
|
@@ -1790,12 +2114,12 @@ export interface TargetResourceTypeSummary {
|
|
|
1790
2114
|
* <p>The resource type.</p>
|
|
1791
2115
|
* @public
|
|
1792
2116
|
*/
|
|
1793
|
-
resourceType?: string;
|
|
2117
|
+
resourceType?: string | undefined;
|
|
1794
2118
|
/**
|
|
1795
2119
|
* <p>A description of the resource type.</p>
|
|
1796
2120
|
* @public
|
|
1797
2121
|
*/
|
|
1798
|
-
description?: string;
|
|
2122
|
+
description?: string | undefined;
|
|
1799
2123
|
}
|
|
1800
2124
|
/**
|
|
1801
2125
|
* @public
|
|
@@ -1805,12 +2129,12 @@ export interface ListTargetResourceTypesResponse {
|
|
|
1805
2129
|
* <p>The target resource types.</p>
|
|
1806
2130
|
* @public
|
|
1807
2131
|
*/
|
|
1808
|
-
targetResourceTypes?: TargetResourceTypeSummary[];
|
|
2132
|
+
targetResourceTypes?: TargetResourceTypeSummary[] | undefined;
|
|
1809
2133
|
/**
|
|
1810
2134
|
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
1811
2135
|
* @public
|
|
1812
2136
|
*/
|
|
1813
|
-
nextToken?: string;
|
|
2137
|
+
nextToken?: string | undefined;
|
|
1814
2138
|
}
|
|
1815
2139
|
/**
|
|
1816
2140
|
* <p>Specifies experiment options for running an experiment.</p>
|
|
@@ -1821,7 +2145,7 @@ export interface StartExperimentExperimentOptionsInput {
|
|
|
1821
2145
|
* <p>Specifies the actions mode for experiment options.</p>
|
|
1822
2146
|
* @public
|
|
1823
2147
|
*/
|
|
1824
|
-
actionsMode?: ActionsMode;
|
|
2148
|
+
actionsMode?: ActionsMode | undefined;
|
|
1825
2149
|
}
|
|
1826
2150
|
/**
|
|
1827
2151
|
* @public
|
|
@@ -1831,7 +2155,7 @@ export interface StartExperimentRequest {
|
|
|
1831
2155
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
1832
2156
|
* @public
|
|
1833
2157
|
*/
|
|
1834
|
-
clientToken?: string;
|
|
2158
|
+
clientToken?: string | undefined;
|
|
1835
2159
|
/**
|
|
1836
2160
|
* <p>The ID of the experiment template.</p>
|
|
1837
2161
|
* @public
|
|
@@ -1841,12 +2165,12 @@ export interface StartExperimentRequest {
|
|
|
1841
2165
|
* <p>The experiment options for running the experiment.</p>
|
|
1842
2166
|
* @public
|
|
1843
2167
|
*/
|
|
1844
|
-
experimentOptions?: StartExperimentExperimentOptionsInput;
|
|
2168
|
+
experimentOptions?: StartExperimentExperimentOptionsInput | undefined;
|
|
1845
2169
|
/**
|
|
1846
2170
|
* <p>The tags to apply to the experiment.</p>
|
|
1847
2171
|
* @public
|
|
1848
2172
|
*/
|
|
1849
|
-
tags?: Record<string, string
|
|
2173
|
+
tags?: Record<string, string> | undefined;
|
|
1850
2174
|
}
|
|
1851
2175
|
/**
|
|
1852
2176
|
* @public
|
|
@@ -1856,7 +2180,7 @@ export interface StartExperimentResponse {
|
|
|
1856
2180
|
* <p>Information about the experiment.</p>
|
|
1857
2181
|
* @public
|
|
1858
2182
|
*/
|
|
1859
|
-
experiment?: Experiment;
|
|
2183
|
+
experiment?: Experiment | undefined;
|
|
1860
2184
|
}
|
|
1861
2185
|
/**
|
|
1862
2186
|
* @public
|
|
@@ -1876,7 +2200,7 @@ export interface StopExperimentResponse {
|
|
|
1876
2200
|
* <p>Information about the experiment.</p>
|
|
1877
2201
|
* @public
|
|
1878
2202
|
*/
|
|
1879
|
-
experiment?: Experiment;
|
|
2203
|
+
experiment?: Experiment | undefined;
|
|
1880
2204
|
}
|
|
1881
2205
|
/**
|
|
1882
2206
|
* @public
|
|
@@ -1911,7 +2235,7 @@ export interface UntagResourceRequest {
|
|
|
1911
2235
|
* <p>The tag keys to remove.</p>
|
|
1912
2236
|
* @public
|
|
1913
2237
|
*/
|
|
1914
|
-
tagKeys?: string[];
|
|
2238
|
+
tagKeys?: string[] | undefined;
|
|
1915
2239
|
}
|
|
1916
2240
|
/**
|
|
1917
2241
|
* @public
|
|
@@ -1927,27 +2251,27 @@ export interface UpdateExperimentTemplateActionInputItem {
|
|
|
1927
2251
|
* <p>The ID of the action.</p>
|
|
1928
2252
|
* @public
|
|
1929
2253
|
*/
|
|
1930
|
-
actionId?: string;
|
|
2254
|
+
actionId?: string | undefined;
|
|
1931
2255
|
/**
|
|
1932
2256
|
* <p>A description for the action.</p>
|
|
1933
2257
|
* @public
|
|
1934
2258
|
*/
|
|
1935
|
-
description?: string;
|
|
2259
|
+
description?: string | undefined;
|
|
1936
2260
|
/**
|
|
1937
2261
|
* <p>The parameters for the action, if applicable.</p>
|
|
1938
2262
|
* @public
|
|
1939
2263
|
*/
|
|
1940
|
-
parameters?: Record<string, string
|
|
2264
|
+
parameters?: Record<string, string> | undefined;
|
|
1941
2265
|
/**
|
|
1942
2266
|
* <p>The targets for the action.</p>
|
|
1943
2267
|
* @public
|
|
1944
2268
|
*/
|
|
1945
|
-
targets?: Record<string, string
|
|
2269
|
+
targets?: Record<string, string> | undefined;
|
|
1946
2270
|
/**
|
|
1947
2271
|
* <p>The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.</p>
|
|
1948
2272
|
* @public
|
|
1949
2273
|
*/
|
|
1950
|
-
startAfter?: string[];
|
|
2274
|
+
startAfter?: string[] | undefined;
|
|
1951
2275
|
}
|
|
1952
2276
|
/**
|
|
1953
2277
|
* <p>Specifies an experiment option for an experiment template.</p>
|
|
@@ -1958,7 +2282,34 @@ export interface UpdateExperimentTemplateExperimentOptionsInput {
|
|
|
1958
2282
|
* <p>The empty target resolution mode of the experiment template.</p>
|
|
1959
2283
|
* @public
|
|
1960
2284
|
*/
|
|
1961
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
2285
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
2286
|
+
}
|
|
2287
|
+
/**
|
|
2288
|
+
* <p>
|
|
2289
|
+
* Specifies the input for the experiment report configuration.</p>
|
|
2290
|
+
* @public
|
|
2291
|
+
*/
|
|
2292
|
+
export interface UpdateExperimentTemplateReportConfigurationInput {
|
|
2293
|
+
/**
|
|
2294
|
+
* <p>Describes the output destinations of the experiment report. </p>
|
|
2295
|
+
* @public
|
|
2296
|
+
*/
|
|
2297
|
+
outputs?: ExperimentTemplateReportConfigurationOutputsInput | undefined;
|
|
2298
|
+
/**
|
|
2299
|
+
* <p>The data sources for the experiment report.</p>
|
|
2300
|
+
* @public
|
|
2301
|
+
*/
|
|
2302
|
+
dataSources?: ExperimentTemplateReportConfigurationDataSourcesInput | undefined;
|
|
2303
|
+
/**
|
|
2304
|
+
* <p>The duration before the experiment start time for the data sources to include in the report. </p>
|
|
2305
|
+
* @public
|
|
2306
|
+
*/
|
|
2307
|
+
preExperimentDuration?: string | undefined;
|
|
2308
|
+
/**
|
|
2309
|
+
* <p>The duration after the experiment end time for the data sources to include in the report. </p>
|
|
2310
|
+
* @public
|
|
2311
|
+
*/
|
|
2312
|
+
postExperimentDuration?: string | undefined;
|
|
1962
2313
|
}
|
|
1963
2314
|
/**
|
|
1964
2315
|
* <p>Specifies the configuration for experiment logging.</p>
|
|
@@ -1969,17 +2320,17 @@ export interface UpdateExperimentTemplateLogConfigurationInput {
|
|
|
1969
2320
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
1970
2321
|
* @public
|
|
1971
2322
|
*/
|
|
1972
|
-
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
2323
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput | undefined;
|
|
1973
2324
|
/**
|
|
1974
2325
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
1975
2326
|
* @public
|
|
1976
2327
|
*/
|
|
1977
|
-
s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
|
|
2328
|
+
s3Configuration?: ExperimentTemplateS3LogConfigurationInput | undefined;
|
|
1978
2329
|
/**
|
|
1979
2330
|
* <p>The schema version.</p>
|
|
1980
2331
|
* @public
|
|
1981
2332
|
*/
|
|
1982
|
-
logSchemaVersion?: number;
|
|
2333
|
+
logSchemaVersion?: number | undefined;
|
|
1983
2334
|
}
|
|
1984
2335
|
/**
|
|
1985
2336
|
* <p>Specifies a stop condition for an experiment. You can define a stop condition as a CloudWatch alarm.</p>
|
|
@@ -1997,7 +2348,7 @@ export interface UpdateExperimentTemplateStopConditionInput {
|
|
|
1997
2348
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch alarm.</p>
|
|
1998
2349
|
* @public
|
|
1999
2350
|
*/
|
|
2000
|
-
value?: string;
|
|
2351
|
+
value?: string | undefined;
|
|
2001
2352
|
}
|
|
2002
2353
|
/**
|
|
2003
2354
|
* <p>Specifies a target for an experiment. You must specify at least one Amazon Resource Name (ARN) or at least one resource tag. You cannot specify both.</p>
|
|
@@ -2013,17 +2364,17 @@ export interface UpdateExperimentTemplateTargetInput {
|
|
|
2013
2364
|
* <p>The Amazon Resource Names (ARNs) of the targets.</p>
|
|
2014
2365
|
* @public
|
|
2015
2366
|
*/
|
|
2016
|
-
resourceArns?: string[];
|
|
2367
|
+
resourceArns?: string[] | undefined;
|
|
2017
2368
|
/**
|
|
2018
2369
|
* <p>The tags for the target resources.</p>
|
|
2019
2370
|
* @public
|
|
2020
2371
|
*/
|
|
2021
|
-
resourceTags?: Record<string, string
|
|
2372
|
+
resourceTags?: Record<string, string> | undefined;
|
|
2022
2373
|
/**
|
|
2023
2374
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
2024
2375
|
* @public
|
|
2025
2376
|
*/
|
|
2026
|
-
filters?: ExperimentTemplateTargetInputFilter[];
|
|
2377
|
+
filters?: ExperimentTemplateTargetInputFilter[] | undefined;
|
|
2027
2378
|
/**
|
|
2028
2379
|
* <p>Scopes the identified resources to a specific count or percentage.</p>
|
|
2029
2380
|
* @public
|
|
@@ -2033,7 +2384,7 @@ export interface UpdateExperimentTemplateTargetInput {
|
|
|
2033
2384
|
* <p>The resource type parameters.</p>
|
|
2034
2385
|
* @public
|
|
2035
2386
|
*/
|
|
2036
|
-
parameters?: Record<string, string
|
|
2387
|
+
parameters?: Record<string, string> | undefined;
|
|
2037
2388
|
}
|
|
2038
2389
|
/**
|
|
2039
2390
|
* @public
|
|
@@ -2048,37 +2399,42 @@ export interface UpdateExperimentTemplateRequest {
|
|
|
2048
2399
|
* <p>A description for the template.</p>
|
|
2049
2400
|
* @public
|
|
2050
2401
|
*/
|
|
2051
|
-
description?: string;
|
|
2402
|
+
description?: string | undefined;
|
|
2052
2403
|
/**
|
|
2053
2404
|
* <p>The stop conditions for the experiment.</p>
|
|
2054
2405
|
* @public
|
|
2055
2406
|
*/
|
|
2056
|
-
stopConditions?: UpdateExperimentTemplateStopConditionInput[];
|
|
2407
|
+
stopConditions?: UpdateExperimentTemplateStopConditionInput[] | undefined;
|
|
2057
2408
|
/**
|
|
2058
2409
|
* <p>The targets for the experiment.</p>
|
|
2059
2410
|
* @public
|
|
2060
2411
|
*/
|
|
2061
|
-
targets?: Record<string, UpdateExperimentTemplateTargetInput
|
|
2412
|
+
targets?: Record<string, UpdateExperimentTemplateTargetInput> | undefined;
|
|
2062
2413
|
/**
|
|
2063
2414
|
* <p>The actions for the experiment.</p>
|
|
2064
2415
|
* @public
|
|
2065
2416
|
*/
|
|
2066
|
-
actions?: Record<string, UpdateExperimentTemplateActionInputItem
|
|
2417
|
+
actions?: Record<string, UpdateExperimentTemplateActionInputItem> | undefined;
|
|
2067
2418
|
/**
|
|
2068
2419
|
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
|
|
2069
2420
|
* @public
|
|
2070
2421
|
*/
|
|
2071
|
-
roleArn?: string;
|
|
2422
|
+
roleArn?: string | undefined;
|
|
2072
2423
|
/**
|
|
2073
2424
|
* <p>The configuration for experiment logging.</p>
|
|
2074
2425
|
* @public
|
|
2075
2426
|
*/
|
|
2076
|
-
logConfiguration?: UpdateExperimentTemplateLogConfigurationInput;
|
|
2427
|
+
logConfiguration?: UpdateExperimentTemplateLogConfigurationInput | undefined;
|
|
2077
2428
|
/**
|
|
2078
2429
|
* <p>The experiment options for the experiment template.</p>
|
|
2079
2430
|
* @public
|
|
2080
2431
|
*/
|
|
2081
|
-
experimentOptions?: UpdateExperimentTemplateExperimentOptionsInput;
|
|
2432
|
+
experimentOptions?: UpdateExperimentTemplateExperimentOptionsInput | undefined;
|
|
2433
|
+
/**
|
|
2434
|
+
* <p>The experiment report configuration for the experiment template.</p>
|
|
2435
|
+
* @public
|
|
2436
|
+
*/
|
|
2437
|
+
experimentReportConfiguration?: UpdateExperimentTemplateReportConfigurationInput | undefined;
|
|
2082
2438
|
}
|
|
2083
2439
|
/**
|
|
2084
2440
|
* @public
|
|
@@ -2088,7 +2444,7 @@ export interface UpdateExperimentTemplateResponse {
|
|
|
2088
2444
|
* <p>Information about the experiment template.</p>
|
|
2089
2445
|
* @public
|
|
2090
2446
|
*/
|
|
2091
|
-
experimentTemplate?: ExperimentTemplate;
|
|
2447
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
2092
2448
|
}
|
|
2093
2449
|
/**
|
|
2094
2450
|
* @public
|
|
@@ -2153,7 +2509,7 @@ export interface UpdateSafetyLeverStateResponse {
|
|
|
2153
2509
|
* </p>
|
|
2154
2510
|
* @public
|
|
2155
2511
|
*/
|
|
2156
|
-
safetyLever?: SafetyLever;
|
|
2512
|
+
safetyLever?: SafetyLever | undefined;
|
|
2157
2513
|
}
|
|
2158
2514
|
/**
|
|
2159
2515
|
* @public
|
|
@@ -2173,12 +2529,12 @@ export interface UpdateTargetAccountConfigurationRequest {
|
|
|
2173
2529
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
2174
2530
|
* @public
|
|
2175
2531
|
*/
|
|
2176
|
-
roleArn?: string;
|
|
2532
|
+
roleArn?: string | undefined;
|
|
2177
2533
|
/**
|
|
2178
2534
|
* <p>The description of the target account.</p>
|
|
2179
2535
|
* @public
|
|
2180
2536
|
*/
|
|
2181
|
-
description?: string;
|
|
2537
|
+
description?: string | undefined;
|
|
2182
2538
|
}
|
|
2183
2539
|
/**
|
|
2184
2540
|
* @public
|
|
@@ -2188,5 +2544,5 @@ export interface UpdateTargetAccountConfigurationResponse {
|
|
|
2188
2544
|
* <p>Information about the target account configuration.</p>
|
|
2189
2545
|
* @public
|
|
2190
2546
|
*/
|
|
2191
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
2547
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
2192
2548
|
}
|