@aws-sdk/client-fis 3.690.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-types/models/models_0.d.ts +279 -279
- package/dist-types/ts3.4/models/models_0.d.ts +311 -279
- 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,12 @@ 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
194
|
}
|
|
195
195
|
/**
|
|
196
196
|
* <p>Specifies the CloudWatch dashboard for the experiment report.</p>
|
|
@@ -201,7 +201,7 @@ export interface ReportConfigurationCloudWatchDashboardInput {
|
|
|
201
201
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch dashboard to include in the experiment report.</p>
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
|
-
dashboardIdentifier?: string;
|
|
204
|
+
dashboardIdentifier?: string | undefined;
|
|
205
205
|
}
|
|
206
206
|
/**
|
|
207
207
|
* <p>Specifies the data sources for the experiment report.</p>
|
|
@@ -212,7 +212,7 @@ export interface ExperimentTemplateReportConfigurationDataSourcesInput {
|
|
|
212
212
|
* <p>The CloudWatch dashboards to include as data sources in the experiment report.</p>
|
|
213
213
|
* @public
|
|
214
214
|
*/
|
|
215
|
-
cloudWatchDashboards?: ReportConfigurationCloudWatchDashboardInput[];
|
|
215
|
+
cloudWatchDashboards?: ReportConfigurationCloudWatchDashboardInput[] | undefined;
|
|
216
216
|
}
|
|
217
217
|
/**
|
|
218
218
|
* <p>Specifies the S3 destination for the experiment report.</p>
|
|
@@ -223,12 +223,12 @@ export interface ReportConfigurationS3OutputInput {
|
|
|
223
223
|
* <p>The name of the S3 bucket where the experiment report will be stored.</p>
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
226
|
-
bucketName?: string;
|
|
226
|
+
bucketName?: string | undefined;
|
|
227
227
|
/**
|
|
228
228
|
* <p>The prefix of the S3 bucket where the experiment report will be stored.</p>
|
|
229
229
|
* @public
|
|
230
230
|
*/
|
|
231
|
-
prefix?: string;
|
|
231
|
+
prefix?: string | undefined;
|
|
232
232
|
}
|
|
233
233
|
/**
|
|
234
234
|
* <p>Specifies the outputs for the experiment templates.</p>
|
|
@@ -239,7 +239,7 @@ export interface ExperimentTemplateReportConfigurationOutputsInput {
|
|
|
239
239
|
* <p>The S3 destination for the experiment report.</p>
|
|
240
240
|
* @public
|
|
241
241
|
*/
|
|
242
|
-
s3Configuration?: ReportConfigurationS3OutputInput;
|
|
242
|
+
s3Configuration?: ReportConfigurationS3OutputInput | undefined;
|
|
243
243
|
}
|
|
244
244
|
/**
|
|
245
245
|
* <p>Specifies the configuration for experiment reports.</p>
|
|
@@ -250,22 +250,22 @@ export interface CreateExperimentTemplateReportConfigurationInput {
|
|
|
250
250
|
* <p>The output destinations of the experiment report. </p>
|
|
251
251
|
* @public
|
|
252
252
|
*/
|
|
253
|
-
outputs?: ExperimentTemplateReportConfigurationOutputsInput;
|
|
253
|
+
outputs?: ExperimentTemplateReportConfigurationOutputsInput | undefined;
|
|
254
254
|
/**
|
|
255
255
|
* <p>The data sources for the experiment report.</p>
|
|
256
256
|
* @public
|
|
257
257
|
*/
|
|
258
|
-
dataSources?: ExperimentTemplateReportConfigurationDataSourcesInput;
|
|
258
|
+
dataSources?: ExperimentTemplateReportConfigurationDataSourcesInput | undefined;
|
|
259
259
|
/**
|
|
260
260
|
* <p>The duration before the experiment start time for the data sources to include in the report. </p>
|
|
261
261
|
* @public
|
|
262
262
|
*/
|
|
263
|
-
preExperimentDuration?: string;
|
|
263
|
+
preExperimentDuration?: string | undefined;
|
|
264
264
|
/**
|
|
265
265
|
* <p>The duration after the experiment end time for the data sources to include in the report. </p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
postExperimentDuration?: string;
|
|
268
|
+
postExperimentDuration?: string | undefined;
|
|
269
269
|
}
|
|
270
270
|
/**
|
|
271
271
|
* <p>Specifies the configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
@@ -292,7 +292,7 @@ export interface ExperimentTemplateS3LogConfigurationInput {
|
|
|
292
292
|
* <p>The bucket prefix.</p>
|
|
293
293
|
* @public
|
|
294
294
|
*/
|
|
295
|
-
prefix?: string;
|
|
295
|
+
prefix?: string | undefined;
|
|
296
296
|
}
|
|
297
297
|
/**
|
|
298
298
|
* <p>Specifies the configuration for experiment logging.</p>
|
|
@@ -303,12 +303,12 @@ export interface CreateExperimentTemplateLogConfigurationInput {
|
|
|
303
303
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
306
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput | undefined;
|
|
307
307
|
/**
|
|
308
308
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
309
309
|
* @public
|
|
310
310
|
*/
|
|
311
|
-
s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
|
|
311
|
+
s3Configuration?: ExperimentTemplateS3LogConfigurationInput | undefined;
|
|
312
312
|
/**
|
|
313
313
|
* <p>The schema version.</p>
|
|
314
314
|
* @public
|
|
@@ -332,7 +332,7 @@ export interface CreateExperimentTemplateStopConditionInput {
|
|
|
332
332
|
* a CloudWatch alarm.</p>
|
|
333
333
|
* @public
|
|
334
334
|
*/
|
|
335
|
-
value?: string;
|
|
335
|
+
value?: string | undefined;
|
|
336
336
|
}
|
|
337
337
|
/**
|
|
338
338
|
* <p>Specifies a filter used for the target resource input in an experiment template.</p>
|
|
@@ -369,17 +369,17 @@ export interface CreateExperimentTemplateTargetInput {
|
|
|
369
369
|
* <p>The Amazon Resource Names (ARNs) of the resources.</p>
|
|
370
370
|
* @public
|
|
371
371
|
*/
|
|
372
|
-
resourceArns?: string[];
|
|
372
|
+
resourceArns?: string[] | undefined;
|
|
373
373
|
/**
|
|
374
374
|
* <p>The tags for the target resources.</p>
|
|
375
375
|
* @public
|
|
376
376
|
*/
|
|
377
|
-
resourceTags?: Record<string, string
|
|
377
|
+
resourceTags?: Record<string, string> | undefined;
|
|
378
378
|
/**
|
|
379
379
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
filters?: ExperimentTemplateTargetInputFilter[];
|
|
382
|
+
filters?: ExperimentTemplateTargetInputFilter[] | undefined;
|
|
383
383
|
/**
|
|
384
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>
|
|
385
385
|
* <ul>
|
|
@@ -402,7 +402,7 @@ export interface CreateExperimentTemplateTargetInput {
|
|
|
402
402
|
* <p>The resource type parameters.</p>
|
|
403
403
|
* @public
|
|
404
404
|
*/
|
|
405
|
-
parameters?: Record<string, string
|
|
405
|
+
parameters?: Record<string, string> | undefined;
|
|
406
406
|
}
|
|
407
407
|
/**
|
|
408
408
|
* @public
|
|
@@ -412,7 +412,7 @@ export interface CreateExperimentTemplateRequest {
|
|
|
412
412
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
413
413
|
* @public
|
|
414
414
|
*/
|
|
415
|
-
clientToken?: string;
|
|
415
|
+
clientToken?: string | undefined;
|
|
416
416
|
/**
|
|
417
417
|
* <p>A description for the experiment template.</p>
|
|
418
418
|
* @public
|
|
@@ -427,7 +427,7 @@ export interface CreateExperimentTemplateRequest {
|
|
|
427
427
|
* <p>The targets for the experiment.</p>
|
|
428
428
|
* @public
|
|
429
429
|
*/
|
|
430
|
-
targets?: Record<string, CreateExperimentTemplateTargetInput
|
|
430
|
+
targets?: Record<string, CreateExperimentTemplateTargetInput> | undefined;
|
|
431
431
|
/**
|
|
432
432
|
* <p>The actions for the experiment.</p>
|
|
433
433
|
* @public
|
|
@@ -442,22 +442,22 @@ export interface CreateExperimentTemplateRequest {
|
|
|
442
442
|
* <p>The tags to apply to the experiment template.</p>
|
|
443
443
|
* @public
|
|
444
444
|
*/
|
|
445
|
-
tags?: Record<string, string
|
|
445
|
+
tags?: Record<string, string> | undefined;
|
|
446
446
|
/**
|
|
447
447
|
* <p>The configuration for experiment logging.</p>
|
|
448
448
|
* @public
|
|
449
449
|
*/
|
|
450
|
-
logConfiguration?: CreateExperimentTemplateLogConfigurationInput;
|
|
450
|
+
logConfiguration?: CreateExperimentTemplateLogConfigurationInput | undefined;
|
|
451
451
|
/**
|
|
452
452
|
* <p>The experiment options for the experiment template.</p>
|
|
453
453
|
* @public
|
|
454
454
|
*/
|
|
455
|
-
experimentOptions?: CreateExperimentTemplateExperimentOptionsInput;
|
|
455
|
+
experimentOptions?: CreateExperimentTemplateExperimentOptionsInput | undefined;
|
|
456
456
|
/**
|
|
457
457
|
* <p>The experiment report configuration for the experiment template.</p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
experimentReportConfiguration?: CreateExperimentTemplateReportConfigurationInput;
|
|
460
|
+
experimentReportConfiguration?: CreateExperimentTemplateReportConfigurationInput | undefined;
|
|
461
461
|
}
|
|
462
462
|
/**
|
|
463
463
|
* <p>Describes an action for an experiment template.</p>
|
|
@@ -468,27 +468,27 @@ export interface ExperimentTemplateAction {
|
|
|
468
468
|
* <p>The ID of the action.</p>
|
|
469
469
|
* @public
|
|
470
470
|
*/
|
|
471
|
-
actionId?: string;
|
|
471
|
+
actionId?: string | undefined;
|
|
472
472
|
/**
|
|
473
473
|
* <p>A description for the action.</p>
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
description?: string;
|
|
476
|
+
description?: string | undefined;
|
|
477
477
|
/**
|
|
478
478
|
* <p>The parameters for the action.</p>
|
|
479
479
|
* @public
|
|
480
480
|
*/
|
|
481
|
-
parameters?: Record<string, string
|
|
481
|
+
parameters?: Record<string, string> | undefined;
|
|
482
482
|
/**
|
|
483
483
|
* <p>The targets for the action.</p>
|
|
484
484
|
* @public
|
|
485
485
|
*/
|
|
486
|
-
targets?: Record<string, string
|
|
486
|
+
targets?: Record<string, string> | undefined;
|
|
487
487
|
/**
|
|
488
488
|
* <p>The name of the action that must be completed before the current action starts.</p>
|
|
489
489
|
* @public
|
|
490
490
|
*/
|
|
491
|
-
startAfter?: string[];
|
|
491
|
+
startAfter?: string[] | undefined;
|
|
492
492
|
}
|
|
493
493
|
/**
|
|
494
494
|
* <p>Describes the experiment options for an experiment template.</p>
|
|
@@ -499,12 +499,12 @@ export interface ExperimentTemplateExperimentOptions {
|
|
|
499
499
|
* <p>The account targeting setting for an experiment template. </p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
accountTargeting?: AccountTargeting;
|
|
502
|
+
accountTargeting?: AccountTargeting | undefined;
|
|
503
503
|
/**
|
|
504
504
|
* <p>The empty target resolution mode for an experiment template.</p>
|
|
505
505
|
* @public
|
|
506
506
|
*/
|
|
507
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
507
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
508
508
|
}
|
|
509
509
|
/**
|
|
510
510
|
* <p>The CloudWatch dashboards to include as data sources in the experiment report.</p>
|
|
@@ -515,7 +515,7 @@ export interface ExperimentTemplateReportConfigurationCloudWatchDashboard {
|
|
|
515
515
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch dashboard to include in the experiment report.</p>
|
|
516
516
|
* @public
|
|
517
517
|
*/
|
|
518
|
-
dashboardIdentifier?: string;
|
|
518
|
+
dashboardIdentifier?: string | undefined;
|
|
519
519
|
}
|
|
520
520
|
/**
|
|
521
521
|
* <p>Describes the data sources for the experiment report.</p>
|
|
@@ -526,7 +526,7 @@ export interface ExperimentTemplateReportConfigurationDataSources {
|
|
|
526
526
|
* <p>The CloudWatch dashboards to include as data sources in the experiment report.</p>
|
|
527
527
|
* @public
|
|
528
528
|
*/
|
|
529
|
-
cloudWatchDashboards?: ExperimentTemplateReportConfigurationCloudWatchDashboard[];
|
|
529
|
+
cloudWatchDashboards?: ExperimentTemplateReportConfigurationCloudWatchDashboard[] | undefined;
|
|
530
530
|
}
|
|
531
531
|
/**
|
|
532
532
|
* <p>Describes the S3 destination for the experiment report.</p>
|
|
@@ -537,12 +537,12 @@ export interface ReportConfigurationS3Output {
|
|
|
537
537
|
* <p>The name of the S3 bucket where the experiment report will be stored.</p>
|
|
538
538
|
* @public
|
|
539
539
|
*/
|
|
540
|
-
bucketName?: string;
|
|
540
|
+
bucketName?: string | undefined;
|
|
541
541
|
/**
|
|
542
542
|
* <p>The prefix of the S3 bucket where the experiment report will be stored.</p>
|
|
543
543
|
* @public
|
|
544
544
|
*/
|
|
545
|
-
prefix?: string;
|
|
545
|
+
prefix?: string | undefined;
|
|
546
546
|
}
|
|
547
547
|
/**
|
|
548
548
|
* <p>The output destinations of the experiment report.</p>
|
|
@@ -553,7 +553,7 @@ export interface ExperimentTemplateReportConfigurationOutputs {
|
|
|
553
553
|
* <p>The S3 destination for the experiment report.</p>
|
|
554
554
|
* @public
|
|
555
555
|
*/
|
|
556
|
-
s3Configuration?: ReportConfigurationS3Output;
|
|
556
|
+
s3Configuration?: ReportConfigurationS3Output | undefined;
|
|
557
557
|
}
|
|
558
558
|
/**
|
|
559
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>
|
|
@@ -564,22 +564,22 @@ export interface ExperimentTemplateReportConfiguration {
|
|
|
564
564
|
* <p>Describes the output destinations of the experiment report.</p>
|
|
565
565
|
* @public
|
|
566
566
|
*/
|
|
567
|
-
outputs?: ExperimentTemplateReportConfigurationOutputs;
|
|
567
|
+
outputs?: ExperimentTemplateReportConfigurationOutputs | undefined;
|
|
568
568
|
/**
|
|
569
569
|
* <p>The data sources for the experiment report.</p>
|
|
570
570
|
* @public
|
|
571
571
|
*/
|
|
572
|
-
dataSources?: ExperimentTemplateReportConfigurationDataSources;
|
|
572
|
+
dataSources?: ExperimentTemplateReportConfigurationDataSources | undefined;
|
|
573
573
|
/**
|
|
574
574
|
* <p>The duration before the experiment start time for the data sources to include in the report.</p>
|
|
575
575
|
* @public
|
|
576
576
|
*/
|
|
577
|
-
preExperimentDuration?: string;
|
|
577
|
+
preExperimentDuration?: string | undefined;
|
|
578
578
|
/**
|
|
579
579
|
* <p>The duration after the experiment end time for the data sources to include in the report.</p>
|
|
580
580
|
* @public
|
|
581
581
|
*/
|
|
582
|
-
postExperimentDuration?: string;
|
|
582
|
+
postExperimentDuration?: string | undefined;
|
|
583
583
|
}
|
|
584
584
|
/**
|
|
585
585
|
* <p>Describes the configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
@@ -590,7 +590,7 @@ export interface ExperimentTemplateCloudWatchLogsLogConfiguration {
|
|
|
590
590
|
* <p>The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.</p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
logGroupArn?: string;
|
|
593
|
+
logGroupArn?: string | undefined;
|
|
594
594
|
}
|
|
595
595
|
/**
|
|
596
596
|
* <p>Describes the configuration for experiment logging to Amazon S3.</p>
|
|
@@ -601,12 +601,12 @@ export interface ExperimentTemplateS3LogConfiguration {
|
|
|
601
601
|
* <p>The name of the destination bucket.</p>
|
|
602
602
|
* @public
|
|
603
603
|
*/
|
|
604
|
-
bucketName?: string;
|
|
604
|
+
bucketName?: string | undefined;
|
|
605
605
|
/**
|
|
606
606
|
* <p>The bucket prefix.</p>
|
|
607
607
|
* @public
|
|
608
608
|
*/
|
|
609
|
-
prefix?: string;
|
|
609
|
+
prefix?: string | undefined;
|
|
610
610
|
}
|
|
611
611
|
/**
|
|
612
612
|
* <p>Describes the configuration for experiment logging.</p>
|
|
@@ -617,17 +617,17 @@ export interface ExperimentTemplateLogConfiguration {
|
|
|
617
617
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfiguration;
|
|
620
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfiguration | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
s3Configuration?: ExperimentTemplateS3LogConfiguration;
|
|
625
|
+
s3Configuration?: ExperimentTemplateS3LogConfiguration | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* <p>The schema version.</p>
|
|
628
628
|
* @public
|
|
629
629
|
*/
|
|
630
|
-
logSchemaVersion?: number;
|
|
630
|
+
logSchemaVersion?: number | undefined;
|
|
631
631
|
}
|
|
632
632
|
/**
|
|
633
633
|
* <p>Describes a stop condition for an experiment template.</p>
|
|
@@ -638,12 +638,12 @@ export interface ExperimentTemplateStopCondition {
|
|
|
638
638
|
* <p>The source for the stop condition.</p>
|
|
639
639
|
* @public
|
|
640
640
|
*/
|
|
641
|
-
source?: string;
|
|
641
|
+
source?: string | undefined;
|
|
642
642
|
/**
|
|
643
643
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.</p>
|
|
644
644
|
* @public
|
|
645
645
|
*/
|
|
646
|
-
value?: string;
|
|
646
|
+
value?: string | undefined;
|
|
647
647
|
}
|
|
648
648
|
/**
|
|
649
649
|
* <p>Describes a filter used for the target resources in an experiment template.</p>
|
|
@@ -654,12 +654,12 @@ export interface ExperimentTemplateTargetFilter {
|
|
|
654
654
|
* <p>The attribute path for the filter.</p>
|
|
655
655
|
* @public
|
|
656
656
|
*/
|
|
657
|
-
path?: string;
|
|
657
|
+
path?: string | undefined;
|
|
658
658
|
/**
|
|
659
659
|
* <p>The attribute values for the filter.</p>
|
|
660
660
|
* @public
|
|
661
661
|
*/
|
|
662
|
-
values?: string[];
|
|
662
|
+
values?: string[] | undefined;
|
|
663
663
|
}
|
|
664
664
|
/**
|
|
665
665
|
* <p>Describes a target for an experiment template.</p>
|
|
@@ -670,32 +670,32 @@ export interface ExperimentTemplateTarget {
|
|
|
670
670
|
* <p>The resource type.</p>
|
|
671
671
|
* @public
|
|
672
672
|
*/
|
|
673
|
-
resourceType?: string;
|
|
673
|
+
resourceType?: string | undefined;
|
|
674
674
|
/**
|
|
675
675
|
* <p>The Amazon Resource Names (ARNs) of the targets.</p>
|
|
676
676
|
* @public
|
|
677
677
|
*/
|
|
678
|
-
resourceArns?: string[];
|
|
678
|
+
resourceArns?: string[] | undefined;
|
|
679
679
|
/**
|
|
680
680
|
* <p>The tags for the target resources.</p>
|
|
681
681
|
* @public
|
|
682
682
|
*/
|
|
683
|
-
resourceTags?: Record<string, string
|
|
683
|
+
resourceTags?: Record<string, string> | undefined;
|
|
684
684
|
/**
|
|
685
685
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
686
686
|
* @public
|
|
687
687
|
*/
|
|
688
|
-
filters?: ExperimentTemplateTargetFilter[];
|
|
688
|
+
filters?: ExperimentTemplateTargetFilter[] | undefined;
|
|
689
689
|
/**
|
|
690
690
|
* <p>Scopes the identified resources to a specific count or percentage.</p>
|
|
691
691
|
* @public
|
|
692
692
|
*/
|
|
693
|
-
selectionMode?: string;
|
|
693
|
+
selectionMode?: string | undefined;
|
|
694
694
|
/**
|
|
695
695
|
* <p>The resource type parameters.</p>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
parameters?: Record<string, string
|
|
698
|
+
parameters?: Record<string, string> | undefined;
|
|
699
699
|
}
|
|
700
700
|
/**
|
|
701
701
|
* <p>Describes an experiment template.</p>
|
|
@@ -706,72 +706,72 @@ export interface ExperimentTemplate {
|
|
|
706
706
|
* <p>The ID of the experiment template.</p>
|
|
707
707
|
* @public
|
|
708
708
|
*/
|
|
709
|
-
id?: string;
|
|
709
|
+
id?: string | undefined;
|
|
710
710
|
/**
|
|
711
711
|
* <p>The Amazon Resource Name (ARN) of the experiment template.</p>
|
|
712
712
|
* @public
|
|
713
713
|
*/
|
|
714
|
-
arn?: string;
|
|
714
|
+
arn?: string | undefined;
|
|
715
715
|
/**
|
|
716
716
|
* <p>The description for the experiment template.</p>
|
|
717
717
|
* @public
|
|
718
718
|
*/
|
|
719
|
-
description?: string;
|
|
719
|
+
description?: string | undefined;
|
|
720
720
|
/**
|
|
721
721
|
* <p>The targets for the experiment.</p>
|
|
722
722
|
* @public
|
|
723
723
|
*/
|
|
724
|
-
targets?: Record<string, ExperimentTemplateTarget
|
|
724
|
+
targets?: Record<string, ExperimentTemplateTarget> | undefined;
|
|
725
725
|
/**
|
|
726
726
|
* <p>The actions for the experiment.</p>
|
|
727
727
|
* @public
|
|
728
728
|
*/
|
|
729
|
-
actions?: Record<string, ExperimentTemplateAction
|
|
729
|
+
actions?: Record<string, ExperimentTemplateAction> | undefined;
|
|
730
730
|
/**
|
|
731
731
|
* <p>The stop conditions for the experiment.</p>
|
|
732
732
|
* @public
|
|
733
733
|
*/
|
|
734
|
-
stopConditions?: ExperimentTemplateStopCondition[];
|
|
734
|
+
stopConditions?: ExperimentTemplateStopCondition[] | undefined;
|
|
735
735
|
/**
|
|
736
736
|
* <p>The time the experiment template was created.</p>
|
|
737
737
|
* @public
|
|
738
738
|
*/
|
|
739
|
-
creationTime?: Date;
|
|
739
|
+
creationTime?: Date | undefined;
|
|
740
740
|
/**
|
|
741
741
|
* <p>The time the experiment template was last updated.</p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
lastUpdateTime?: Date;
|
|
744
|
+
lastUpdateTime?: Date | undefined;
|
|
745
745
|
/**
|
|
746
746
|
* <p>The Amazon Resource Name (ARN) of an IAM role.</p>
|
|
747
747
|
* @public
|
|
748
748
|
*/
|
|
749
|
-
roleArn?: string;
|
|
749
|
+
roleArn?: string | undefined;
|
|
750
750
|
/**
|
|
751
751
|
* <p>The tags for the experiment template.</p>
|
|
752
752
|
* @public
|
|
753
753
|
*/
|
|
754
|
-
tags?: Record<string, string
|
|
754
|
+
tags?: Record<string, string> | undefined;
|
|
755
755
|
/**
|
|
756
756
|
* <p>The configuration for experiment logging.</p>
|
|
757
757
|
* @public
|
|
758
758
|
*/
|
|
759
|
-
logConfiguration?: ExperimentTemplateLogConfiguration;
|
|
759
|
+
logConfiguration?: ExperimentTemplateLogConfiguration | undefined;
|
|
760
760
|
/**
|
|
761
761
|
* <p>The experiment options for an experiment template.</p>
|
|
762
762
|
* @public
|
|
763
763
|
*/
|
|
764
|
-
experimentOptions?: ExperimentTemplateExperimentOptions;
|
|
764
|
+
experimentOptions?: ExperimentTemplateExperimentOptions | undefined;
|
|
765
765
|
/**
|
|
766
766
|
* <p>The count of target account configurations for the experiment template.</p>
|
|
767
767
|
* @public
|
|
768
768
|
*/
|
|
769
|
-
targetAccountConfigurationsCount?: number;
|
|
769
|
+
targetAccountConfigurationsCount?: number | undefined;
|
|
770
770
|
/**
|
|
771
771
|
* <p>Describes the report configuration for the experiment template.</p>
|
|
772
772
|
* @public
|
|
773
773
|
*/
|
|
774
|
-
experimentReportConfiguration?: ExperimentTemplateReportConfiguration;
|
|
774
|
+
experimentReportConfiguration?: ExperimentTemplateReportConfiguration | undefined;
|
|
775
775
|
}
|
|
776
776
|
/**
|
|
777
777
|
* @public
|
|
@@ -781,7 +781,7 @@ export interface CreateExperimentTemplateResponse {
|
|
|
781
781
|
* <p>Information about the experiment template.</p>
|
|
782
782
|
* @public
|
|
783
783
|
*/
|
|
784
|
-
experimentTemplate?: ExperimentTemplate;
|
|
784
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
785
785
|
}
|
|
786
786
|
/**
|
|
787
787
|
* <p>The specified resource cannot be found.</p>
|
|
@@ -827,7 +827,7 @@ export interface CreateTargetAccountConfigurationRequest {
|
|
|
827
827
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
828
828
|
* @public
|
|
829
829
|
*/
|
|
830
|
-
clientToken?: string;
|
|
830
|
+
clientToken?: string | undefined;
|
|
831
831
|
/**
|
|
832
832
|
* <p>The experiment template ID.</p>
|
|
833
833
|
* @public
|
|
@@ -847,7 +847,7 @@ export interface CreateTargetAccountConfigurationRequest {
|
|
|
847
847
|
* <p>The description of the target account.</p>
|
|
848
848
|
* @public
|
|
849
849
|
*/
|
|
850
|
-
description?: string;
|
|
850
|
+
description?: string | undefined;
|
|
851
851
|
}
|
|
852
852
|
/**
|
|
853
853
|
* <p>Describes a target account configuration.</p>
|
|
@@ -858,17 +858,17 @@ export interface TargetAccountConfiguration {
|
|
|
858
858
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
859
859
|
* @public
|
|
860
860
|
*/
|
|
861
|
-
roleArn?: string;
|
|
861
|
+
roleArn?: string | undefined;
|
|
862
862
|
/**
|
|
863
863
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
864
864
|
* @public
|
|
865
865
|
*/
|
|
866
|
-
accountId?: string;
|
|
866
|
+
accountId?: string | undefined;
|
|
867
867
|
/**
|
|
868
868
|
* <p>The description of the target account.</p>
|
|
869
869
|
* @public
|
|
870
870
|
*/
|
|
871
|
-
description?: string;
|
|
871
|
+
description?: string | undefined;
|
|
872
872
|
}
|
|
873
873
|
/**
|
|
874
874
|
* @public
|
|
@@ -878,7 +878,7 @@ export interface CreateTargetAccountConfigurationResponse {
|
|
|
878
878
|
* <p>Information about the target account configuration.</p>
|
|
879
879
|
* @public
|
|
880
880
|
*/
|
|
881
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
881
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
882
882
|
}
|
|
883
883
|
/**
|
|
884
884
|
* @public
|
|
@@ -898,7 +898,7 @@ export interface DeleteExperimentTemplateResponse {
|
|
|
898
898
|
* <p>Information about the experiment template.</p>
|
|
899
899
|
* @public
|
|
900
900
|
*/
|
|
901
|
-
experimentTemplate?: ExperimentTemplate;
|
|
901
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
902
902
|
}
|
|
903
903
|
/**
|
|
904
904
|
* @public
|
|
@@ -923,7 +923,7 @@ export interface DeleteTargetAccountConfigurationResponse {
|
|
|
923
923
|
* <p>Information about the target account configuration.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
926
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
927
927
|
}
|
|
928
928
|
/**
|
|
929
929
|
* @public
|
|
@@ -953,12 +953,12 @@ export interface ExperimentActionState {
|
|
|
953
953
|
* <p>The state of the action.</p>
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
status?: ExperimentActionStatus;
|
|
956
|
+
status?: ExperimentActionStatus | undefined;
|
|
957
957
|
/**
|
|
958
958
|
* <p>The reason for the state.</p>
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
|
-
reason?: string;
|
|
961
|
+
reason?: string | undefined;
|
|
962
962
|
}
|
|
963
963
|
/**
|
|
964
964
|
* <p>Describes the action for an experiment.</p>
|
|
@@ -969,42 +969,42 @@ export interface ExperimentAction {
|
|
|
969
969
|
* <p>The ID of the action.</p>
|
|
970
970
|
* @public
|
|
971
971
|
*/
|
|
972
|
-
actionId?: string;
|
|
972
|
+
actionId?: string | undefined;
|
|
973
973
|
/**
|
|
974
974
|
* <p>The description for the action.</p>
|
|
975
975
|
* @public
|
|
976
976
|
*/
|
|
977
|
-
description?: string;
|
|
977
|
+
description?: string | undefined;
|
|
978
978
|
/**
|
|
979
979
|
* <p>The parameters for the action.</p>
|
|
980
980
|
* @public
|
|
981
981
|
*/
|
|
982
|
-
parameters?: Record<string, string
|
|
982
|
+
parameters?: Record<string, string> | undefined;
|
|
983
983
|
/**
|
|
984
984
|
* <p>The targets for the action.</p>
|
|
985
985
|
* @public
|
|
986
986
|
*/
|
|
987
|
-
targets?: Record<string, string
|
|
987
|
+
targets?: Record<string, string> | undefined;
|
|
988
988
|
/**
|
|
989
989
|
* <p>The name of the action that must be completed before this action starts.</p>
|
|
990
990
|
* @public
|
|
991
991
|
*/
|
|
992
|
-
startAfter?: string[];
|
|
992
|
+
startAfter?: string[] | undefined;
|
|
993
993
|
/**
|
|
994
994
|
* <p>The state of the action.</p>
|
|
995
995
|
* @public
|
|
996
996
|
*/
|
|
997
|
-
state?: ExperimentActionState;
|
|
997
|
+
state?: ExperimentActionState | undefined;
|
|
998
998
|
/**
|
|
999
999
|
* <p>The time that the action started.</p>
|
|
1000
1000
|
* @public
|
|
1001
1001
|
*/
|
|
1002
|
-
startTime?: Date;
|
|
1002
|
+
startTime?: Date | undefined;
|
|
1003
1003
|
/**
|
|
1004
1004
|
* <p>The time that the action ended.</p>
|
|
1005
1005
|
* @public
|
|
1006
1006
|
*/
|
|
1007
|
-
endTime?: Date;
|
|
1007
|
+
endTime?: Date | undefined;
|
|
1008
1008
|
}
|
|
1009
1009
|
/**
|
|
1010
1010
|
* <p>Describes the options for an experiment.</p>
|
|
@@ -1015,17 +1015,17 @@ export interface ExperimentOptions {
|
|
|
1015
1015
|
* <p>The account targeting setting for an experiment.</p>
|
|
1016
1016
|
* @public
|
|
1017
1017
|
*/
|
|
1018
|
-
accountTargeting?: AccountTargeting;
|
|
1018
|
+
accountTargeting?: AccountTargeting | undefined;
|
|
1019
1019
|
/**
|
|
1020
1020
|
* <p>The empty target resolution mode for an experiment.</p>
|
|
1021
1021
|
* @public
|
|
1022
1022
|
*/
|
|
1023
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
1023
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
1024
1024
|
/**
|
|
1025
1025
|
* <p>The actions mode of the experiment that is set from the StartExperiment API command.</p>
|
|
1026
1026
|
* @public
|
|
1027
1027
|
*/
|
|
1028
|
-
actionsMode?: ActionsMode;
|
|
1028
|
+
actionsMode?: ActionsMode | undefined;
|
|
1029
1029
|
}
|
|
1030
1030
|
/**
|
|
1031
1031
|
* <p>Describes the S3 destination for the report.</p>
|
|
@@ -1036,12 +1036,12 @@ export interface ExperimentReportS3Report {
|
|
|
1036
1036
|
* <p>The Amazon Resource Name (ARN) of the generated report.</p>
|
|
1037
1037
|
* @public
|
|
1038
1038
|
*/
|
|
1039
|
-
arn?: string;
|
|
1039
|
+
arn?: string | undefined;
|
|
1040
1040
|
/**
|
|
1041
1041
|
* <p>The report type for the experiment report.</p>
|
|
1042
1042
|
* @public
|
|
1043
1043
|
*/
|
|
1044
|
-
reportType?: string;
|
|
1044
|
+
reportType?: string | undefined;
|
|
1045
1045
|
}
|
|
1046
1046
|
/**
|
|
1047
1047
|
* <p>Describes the error when experiment report generation has failed.</p>
|
|
@@ -1052,7 +1052,7 @@ export interface ExperimentReportError {
|
|
|
1052
1052
|
* <p>The error code for the failed experiment report generation.</p>
|
|
1053
1053
|
* @public
|
|
1054
1054
|
*/
|
|
1055
|
-
code?: string;
|
|
1055
|
+
code?: string | undefined;
|
|
1056
1056
|
}
|
|
1057
1057
|
/**
|
|
1058
1058
|
* @public
|
|
@@ -1078,17 +1078,17 @@ export interface ExperimentReportState {
|
|
|
1078
1078
|
* <p>The state of the experiment report generation.</p>
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
status?: ExperimentReportStatus;
|
|
1081
|
+
status?: ExperimentReportStatus | undefined;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* <p>The reason for the state of the experiment report generation.</p>
|
|
1084
1084
|
* @public
|
|
1085
1085
|
*/
|
|
1086
|
-
reason?: string;
|
|
1086
|
+
reason?: string | undefined;
|
|
1087
1087
|
/**
|
|
1088
1088
|
* <p>The error information of the experiment when the experiment report generation has failed.</p>
|
|
1089
1089
|
* @public
|
|
1090
1090
|
*/
|
|
1091
|
-
error?: ExperimentReportError;
|
|
1091
|
+
error?: ExperimentReportError | undefined;
|
|
1092
1092
|
}
|
|
1093
1093
|
/**
|
|
1094
1094
|
* <p>Describes the experiment report.</p>
|
|
@@ -1099,12 +1099,12 @@ export interface ExperimentReport {
|
|
|
1099
1099
|
* <p>The state of the experiment report.</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
state?: ExperimentReportState;
|
|
1102
|
+
state?: ExperimentReportState | undefined;
|
|
1103
1103
|
/**
|
|
1104
1104
|
* <p>The S3 destination of the experiment report.</p>
|
|
1105
1105
|
* @public
|
|
1106
1106
|
*/
|
|
1107
|
-
s3Reports?: ExperimentReportS3Report[];
|
|
1107
|
+
s3Reports?: ExperimentReportS3Report[] | undefined;
|
|
1108
1108
|
}
|
|
1109
1109
|
/**
|
|
1110
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>
|
|
@@ -1115,7 +1115,7 @@ export interface ExperimentReportConfigurationCloudWatchDashboard {
|
|
|
1115
1115
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch dashboard to include in the experiment report.</p>
|
|
1116
1116
|
* @public
|
|
1117
1117
|
*/
|
|
1118
|
-
dashboardIdentifier?: string;
|
|
1118
|
+
dashboardIdentifier?: string | undefined;
|
|
1119
1119
|
}
|
|
1120
1120
|
/**
|
|
1121
1121
|
* <p>Describes the data sources for the experiment report.</p>
|
|
@@ -1126,7 +1126,7 @@ export interface ExperimentReportConfigurationDataSources {
|
|
|
1126
1126
|
* <p>The CloudWatch dashboards to include as data sources in the experiment report.</p>
|
|
1127
1127
|
* @public
|
|
1128
1128
|
*/
|
|
1129
|
-
cloudWatchDashboards?: ExperimentReportConfigurationCloudWatchDashboard[];
|
|
1129
|
+
cloudWatchDashboards?: ExperimentReportConfigurationCloudWatchDashboard[] | undefined;
|
|
1130
1130
|
}
|
|
1131
1131
|
/**
|
|
1132
1132
|
* <p>Specifies the S3 destination for the experiment report.</p>
|
|
@@ -1137,12 +1137,12 @@ export interface ExperimentReportConfigurationOutputsS3Configuration {
|
|
|
1137
1137
|
* <p>The name of the S3 bucket where the experiment report will be stored.</p>
|
|
1138
1138
|
* @public
|
|
1139
1139
|
*/
|
|
1140
|
-
bucketName?: string;
|
|
1140
|
+
bucketName?: string | undefined;
|
|
1141
1141
|
/**
|
|
1142
1142
|
* <p>The prefix of the S3 bucket where the experiment report will be stored.</p>
|
|
1143
1143
|
* @public
|
|
1144
1144
|
*/
|
|
1145
|
-
prefix?: string;
|
|
1145
|
+
prefix?: string | undefined;
|
|
1146
1146
|
}
|
|
1147
1147
|
/**
|
|
1148
1148
|
* <p>Describes the output destinations of the experiment report.</p>
|
|
@@ -1153,7 +1153,7 @@ export interface ExperimentReportConfigurationOutputs {
|
|
|
1153
1153
|
* <p>The S3 destination for the experiment report.</p>
|
|
1154
1154
|
* @public
|
|
1155
1155
|
*/
|
|
1156
|
-
s3Configuration?: ExperimentReportConfigurationOutputsS3Configuration;
|
|
1156
|
+
s3Configuration?: ExperimentReportConfigurationOutputsS3Configuration | undefined;
|
|
1157
1157
|
}
|
|
1158
1158
|
/**
|
|
1159
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>
|
|
@@ -1164,22 +1164,22 @@ export interface ExperimentReportConfiguration {
|
|
|
1164
1164
|
* <p>The output destinations of the experiment report.</p>
|
|
1165
1165
|
* @public
|
|
1166
1166
|
*/
|
|
1167
|
-
outputs?: ExperimentReportConfigurationOutputs;
|
|
1167
|
+
outputs?: ExperimentReportConfigurationOutputs | undefined;
|
|
1168
1168
|
/**
|
|
1169
1169
|
* <p>The data sources for the experiment report.</p>
|
|
1170
1170
|
* @public
|
|
1171
1171
|
*/
|
|
1172
|
-
dataSources?: ExperimentReportConfigurationDataSources;
|
|
1172
|
+
dataSources?: ExperimentReportConfigurationDataSources | undefined;
|
|
1173
1173
|
/**
|
|
1174
1174
|
* <p>The duration before the experiment start time for the data sources to include in the report.</p>
|
|
1175
1175
|
* @public
|
|
1176
1176
|
*/
|
|
1177
|
-
preExperimentDuration?: string;
|
|
1177
|
+
preExperimentDuration?: string | undefined;
|
|
1178
1178
|
/**
|
|
1179
1179
|
* <p>The duration after the experiment end time for the data sources to include in the report.</p>
|
|
1180
1180
|
* @public
|
|
1181
1181
|
*/
|
|
1182
|
-
postExperimentDuration?: string;
|
|
1182
|
+
postExperimentDuration?: string | undefined;
|
|
1183
1183
|
}
|
|
1184
1184
|
/**
|
|
1185
1185
|
* <p>Describes the configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
@@ -1190,7 +1190,7 @@ export interface ExperimentCloudWatchLogsLogConfiguration {
|
|
|
1190
1190
|
* <p>The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.</p>
|
|
1191
1191
|
* @public
|
|
1192
1192
|
*/
|
|
1193
|
-
logGroupArn?: string;
|
|
1193
|
+
logGroupArn?: string | undefined;
|
|
1194
1194
|
}
|
|
1195
1195
|
/**
|
|
1196
1196
|
* <p>Describes the configuration for experiment logging to Amazon S3.</p>
|
|
@@ -1201,12 +1201,12 @@ export interface ExperimentS3LogConfiguration {
|
|
|
1201
1201
|
* <p>The name of the destination bucket.</p>
|
|
1202
1202
|
* @public
|
|
1203
1203
|
*/
|
|
1204
|
-
bucketName?: string;
|
|
1204
|
+
bucketName?: string | undefined;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* <p>The bucket prefix.</p>
|
|
1207
1207
|
* @public
|
|
1208
1208
|
*/
|
|
1209
|
-
prefix?: string;
|
|
1209
|
+
prefix?: string | undefined;
|
|
1210
1210
|
}
|
|
1211
1211
|
/**
|
|
1212
1212
|
* <p>Describes the configuration for experiment logging.</p>
|
|
@@ -1217,17 +1217,17 @@ export interface ExperimentLogConfiguration {
|
|
|
1217
1217
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
1218
1218
|
* @public
|
|
1219
1219
|
*/
|
|
1220
|
-
cloudWatchLogsConfiguration?: ExperimentCloudWatchLogsLogConfiguration;
|
|
1220
|
+
cloudWatchLogsConfiguration?: ExperimentCloudWatchLogsLogConfiguration | undefined;
|
|
1221
1221
|
/**
|
|
1222
1222
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
1223
1223
|
* @public
|
|
1224
1224
|
*/
|
|
1225
|
-
s3Configuration?: ExperimentS3LogConfiguration;
|
|
1225
|
+
s3Configuration?: ExperimentS3LogConfiguration | undefined;
|
|
1226
1226
|
/**
|
|
1227
1227
|
* <p>The schema version.</p>
|
|
1228
1228
|
* @public
|
|
1229
1229
|
*/
|
|
1230
|
-
logSchemaVersion?: number;
|
|
1230
|
+
logSchemaVersion?: number | undefined;
|
|
1231
1231
|
}
|
|
1232
1232
|
/**
|
|
1233
1233
|
* <p>Describes the error when an experiment has <code>failed</code>.</p>
|
|
@@ -1238,17 +1238,17 @@ export interface ExperimentError {
|
|
|
1238
1238
|
* <p>The Amazon Web Services Account ID where the experiment failure occurred.</p>
|
|
1239
1239
|
* @public
|
|
1240
1240
|
*/
|
|
1241
|
-
accountId?: string;
|
|
1241
|
+
accountId?: string | undefined;
|
|
1242
1242
|
/**
|
|
1243
1243
|
* <p>The error code for the failed experiment.</p>
|
|
1244
1244
|
* @public
|
|
1245
1245
|
*/
|
|
1246
|
-
code?: string;
|
|
1246
|
+
code?: string | undefined;
|
|
1247
1247
|
/**
|
|
1248
1248
|
* <p>Context for the section of the experiment template that failed.</p>
|
|
1249
1249
|
* @public
|
|
1250
1250
|
*/
|
|
1251
|
-
location?: string;
|
|
1251
|
+
location?: string | undefined;
|
|
1252
1252
|
}
|
|
1253
1253
|
/**
|
|
1254
1254
|
* @public
|
|
@@ -1277,17 +1277,17 @@ export interface ExperimentState {
|
|
|
1277
1277
|
* <p>The state of the experiment.</p>
|
|
1278
1278
|
* @public
|
|
1279
1279
|
*/
|
|
1280
|
-
status?: ExperimentStatus;
|
|
1280
|
+
status?: ExperimentStatus | undefined;
|
|
1281
1281
|
/**
|
|
1282
1282
|
* <p>The reason for the state.</p>
|
|
1283
1283
|
* @public
|
|
1284
1284
|
*/
|
|
1285
|
-
reason?: string;
|
|
1285
|
+
reason?: string | undefined;
|
|
1286
1286
|
/**
|
|
1287
1287
|
* <p>The error information of the experiment when the action has <code>failed</code>.</p>
|
|
1288
1288
|
* @public
|
|
1289
1289
|
*/
|
|
1290
|
-
error?: ExperimentError;
|
|
1290
|
+
error?: ExperimentError | undefined;
|
|
1291
1291
|
}
|
|
1292
1292
|
/**
|
|
1293
1293
|
* <p>Describes the stop condition for an experiment.</p>
|
|
@@ -1298,12 +1298,12 @@ export interface ExperimentStopCondition {
|
|
|
1298
1298
|
* <p>The source for the stop condition.</p>
|
|
1299
1299
|
* @public
|
|
1300
1300
|
*/
|
|
1301
|
-
source?: string;
|
|
1301
|
+
source?: string | undefined;
|
|
1302
1302
|
/**
|
|
1303
1303
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.</p>
|
|
1304
1304
|
* @public
|
|
1305
1305
|
*/
|
|
1306
|
-
value?: string;
|
|
1306
|
+
value?: string | undefined;
|
|
1307
1307
|
}
|
|
1308
1308
|
/**
|
|
1309
1309
|
* <p>Describes a filter used for the target resources in an experiment.</p>
|
|
@@ -1314,12 +1314,12 @@ export interface ExperimentTargetFilter {
|
|
|
1314
1314
|
* <p>The attribute path for the filter.</p>
|
|
1315
1315
|
* @public
|
|
1316
1316
|
*/
|
|
1317
|
-
path?: string;
|
|
1317
|
+
path?: string | undefined;
|
|
1318
1318
|
/**
|
|
1319
1319
|
* <p>The attribute values for the filter.</p>
|
|
1320
1320
|
* @public
|
|
1321
1321
|
*/
|
|
1322
|
-
values?: string[];
|
|
1322
|
+
values?: string[] | undefined;
|
|
1323
1323
|
}
|
|
1324
1324
|
/**
|
|
1325
1325
|
* <p>Describes a target for an experiment.</p>
|
|
@@ -1330,32 +1330,32 @@ export interface ExperimentTarget {
|
|
|
1330
1330
|
* <p>The resource type.</p>
|
|
1331
1331
|
* @public
|
|
1332
1332
|
*/
|
|
1333
|
-
resourceType?: string;
|
|
1333
|
+
resourceType?: string | undefined;
|
|
1334
1334
|
/**
|
|
1335
1335
|
* <p>The Amazon Resource Names (ARNs) of the resources.</p>
|
|
1336
1336
|
* @public
|
|
1337
1337
|
*/
|
|
1338
|
-
resourceArns?: string[];
|
|
1338
|
+
resourceArns?: string[] | undefined;
|
|
1339
1339
|
/**
|
|
1340
1340
|
* <p>The tags for the target resources.</p>
|
|
1341
1341
|
* @public
|
|
1342
1342
|
*/
|
|
1343
|
-
resourceTags?: Record<string, string
|
|
1343
|
+
resourceTags?: Record<string, string> | undefined;
|
|
1344
1344
|
/**
|
|
1345
1345
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
1346
1346
|
* @public
|
|
1347
1347
|
*/
|
|
1348
|
-
filters?: ExperimentTargetFilter[];
|
|
1348
|
+
filters?: ExperimentTargetFilter[] | undefined;
|
|
1349
1349
|
/**
|
|
1350
1350
|
* <p>Scopes the identified resources to a specific count or percentage.</p>
|
|
1351
1351
|
* @public
|
|
1352
1352
|
*/
|
|
1353
|
-
selectionMode?: string;
|
|
1353
|
+
selectionMode?: string | undefined;
|
|
1354
1354
|
/**
|
|
1355
1355
|
* <p>The resource type parameters.</p>
|
|
1356
1356
|
* @public
|
|
1357
1357
|
*/
|
|
1358
|
-
parameters?: Record<string, string
|
|
1358
|
+
parameters?: Record<string, string> | undefined;
|
|
1359
1359
|
}
|
|
1360
1360
|
/**
|
|
1361
1361
|
* <p>Describes an experiment.</p>
|
|
@@ -1366,87 +1366,87 @@ export interface Experiment {
|
|
|
1366
1366
|
* <p>The ID of the experiment.</p>
|
|
1367
1367
|
* @public
|
|
1368
1368
|
*/
|
|
1369
|
-
id?: string;
|
|
1369
|
+
id?: string | undefined;
|
|
1370
1370
|
/**
|
|
1371
1371
|
* <p>The Amazon Resource Name (ARN) of the experiment.</p>
|
|
1372
1372
|
* @public
|
|
1373
1373
|
*/
|
|
1374
|
-
arn?: string;
|
|
1374
|
+
arn?: string | undefined;
|
|
1375
1375
|
/**
|
|
1376
1376
|
* <p>The ID of the experiment template.</p>
|
|
1377
1377
|
* @public
|
|
1378
1378
|
*/
|
|
1379
|
-
experimentTemplateId?: string;
|
|
1379
|
+
experimentTemplateId?: string | undefined;
|
|
1380
1380
|
/**
|
|
1381
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>
|
|
1382
1382
|
* @public
|
|
1383
1383
|
*/
|
|
1384
|
-
roleArn?: string;
|
|
1384
|
+
roleArn?: string | undefined;
|
|
1385
1385
|
/**
|
|
1386
1386
|
* <p>The state of the experiment.</p>
|
|
1387
1387
|
* @public
|
|
1388
1388
|
*/
|
|
1389
|
-
state?: ExperimentState;
|
|
1389
|
+
state?: ExperimentState | undefined;
|
|
1390
1390
|
/**
|
|
1391
1391
|
* <p>The targets for the experiment.</p>
|
|
1392
1392
|
* @public
|
|
1393
1393
|
*/
|
|
1394
|
-
targets?: Record<string, ExperimentTarget
|
|
1394
|
+
targets?: Record<string, ExperimentTarget> | undefined;
|
|
1395
1395
|
/**
|
|
1396
1396
|
* <p>The actions for the experiment.</p>
|
|
1397
1397
|
* @public
|
|
1398
1398
|
*/
|
|
1399
|
-
actions?: Record<string, ExperimentAction
|
|
1399
|
+
actions?: Record<string, ExperimentAction> | undefined;
|
|
1400
1400
|
/**
|
|
1401
1401
|
* <p>The stop conditions for the experiment.</p>
|
|
1402
1402
|
* @public
|
|
1403
1403
|
*/
|
|
1404
|
-
stopConditions?: ExperimentStopCondition[];
|
|
1404
|
+
stopConditions?: ExperimentStopCondition[] | undefined;
|
|
1405
1405
|
/**
|
|
1406
1406
|
* <p>The time that the experiment was created.</p>
|
|
1407
1407
|
* @public
|
|
1408
1408
|
*/
|
|
1409
|
-
creationTime?: Date;
|
|
1409
|
+
creationTime?: Date | undefined;
|
|
1410
1410
|
/**
|
|
1411
1411
|
* <p>The time that the experiment started.</p>
|
|
1412
1412
|
* @public
|
|
1413
1413
|
*/
|
|
1414
|
-
startTime?: Date;
|
|
1414
|
+
startTime?: Date | undefined;
|
|
1415
1415
|
/**
|
|
1416
1416
|
* <p>The time that the experiment ended.</p>
|
|
1417
1417
|
* @public
|
|
1418
1418
|
*/
|
|
1419
|
-
endTime?: Date;
|
|
1419
|
+
endTime?: Date | undefined;
|
|
1420
1420
|
/**
|
|
1421
1421
|
* <p>The tags for the experiment.</p>
|
|
1422
1422
|
* @public
|
|
1423
1423
|
*/
|
|
1424
|
-
tags?: Record<string, string
|
|
1424
|
+
tags?: Record<string, string> | undefined;
|
|
1425
1425
|
/**
|
|
1426
1426
|
* <p>The configuration for experiment logging.</p>
|
|
1427
1427
|
* @public
|
|
1428
1428
|
*/
|
|
1429
|
-
logConfiguration?: ExperimentLogConfiguration;
|
|
1429
|
+
logConfiguration?: ExperimentLogConfiguration | undefined;
|
|
1430
1430
|
/**
|
|
1431
1431
|
* <p>The experiment options for the experiment.</p>
|
|
1432
1432
|
* @public
|
|
1433
1433
|
*/
|
|
1434
|
-
experimentOptions?: ExperimentOptions;
|
|
1434
|
+
experimentOptions?: ExperimentOptions | undefined;
|
|
1435
1435
|
/**
|
|
1436
1436
|
* <p>The count of target account configurations for the experiment.</p>
|
|
1437
1437
|
* @public
|
|
1438
1438
|
*/
|
|
1439
|
-
targetAccountConfigurationsCount?: number;
|
|
1439
|
+
targetAccountConfigurationsCount?: number | undefined;
|
|
1440
1440
|
/**
|
|
1441
1441
|
* <p>The experiment report configuration for the experiment.</p>
|
|
1442
1442
|
* @public
|
|
1443
1443
|
*/
|
|
1444
|
-
experimentReportConfiguration?: ExperimentReportConfiguration;
|
|
1444
|
+
experimentReportConfiguration?: ExperimentReportConfiguration | undefined;
|
|
1445
1445
|
/**
|
|
1446
1446
|
* <p>The experiment report for the experiment.</p>
|
|
1447
1447
|
* @public
|
|
1448
1448
|
*/
|
|
1449
|
-
experimentReport?: ExperimentReport;
|
|
1449
|
+
experimentReport?: ExperimentReport | undefined;
|
|
1450
1450
|
}
|
|
1451
1451
|
/**
|
|
1452
1452
|
* <p>Provides a summary of an experiment.</p>
|
|
@@ -1457,37 +1457,37 @@ export interface ExperimentSummary {
|
|
|
1457
1457
|
* <p>The ID of the experiment.</p>
|
|
1458
1458
|
* @public
|
|
1459
1459
|
*/
|
|
1460
|
-
id?: string;
|
|
1460
|
+
id?: string | undefined;
|
|
1461
1461
|
/**
|
|
1462
1462
|
* <p>The Amazon Resource Name (ARN) of the experiment.</p>
|
|
1463
1463
|
* @public
|
|
1464
1464
|
*/
|
|
1465
|
-
arn?: string;
|
|
1465
|
+
arn?: string | undefined;
|
|
1466
1466
|
/**
|
|
1467
1467
|
* <p>The ID of the experiment template.</p>
|
|
1468
1468
|
* @public
|
|
1469
1469
|
*/
|
|
1470
|
-
experimentTemplateId?: string;
|
|
1470
|
+
experimentTemplateId?: string | undefined;
|
|
1471
1471
|
/**
|
|
1472
1472
|
* <p>The state of the experiment.</p>
|
|
1473
1473
|
* @public
|
|
1474
1474
|
*/
|
|
1475
|
-
state?: ExperimentState;
|
|
1475
|
+
state?: ExperimentState | undefined;
|
|
1476
1476
|
/**
|
|
1477
1477
|
* <p>The time that the experiment was created.</p>
|
|
1478
1478
|
* @public
|
|
1479
1479
|
*/
|
|
1480
|
-
creationTime?: Date;
|
|
1480
|
+
creationTime?: Date | undefined;
|
|
1481
1481
|
/**
|
|
1482
1482
|
* <p>The tags for the experiment.</p>
|
|
1483
1483
|
* @public
|
|
1484
1484
|
*/
|
|
1485
|
-
tags?: Record<string, string
|
|
1485
|
+
tags?: Record<string, string> | undefined;
|
|
1486
1486
|
/**
|
|
1487
1487
|
* <p>The experiment options for the experiment.</p>
|
|
1488
1488
|
* @public
|
|
1489
1489
|
*/
|
|
1490
|
-
experimentOptions?: ExperimentOptions;
|
|
1490
|
+
experimentOptions?: ExperimentOptions | undefined;
|
|
1491
1491
|
}
|
|
1492
1492
|
/**
|
|
1493
1493
|
* <p>Describes a target account configuration for an experiment.</p>
|
|
@@ -1498,17 +1498,17 @@ export interface ExperimentTargetAccountConfiguration {
|
|
|
1498
1498
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
1499
1499
|
* @public
|
|
1500
1500
|
*/
|
|
1501
|
-
roleArn?: string;
|
|
1501
|
+
roleArn?: string | undefined;
|
|
1502
1502
|
/**
|
|
1503
1503
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1504
1504
|
* @public
|
|
1505
1505
|
*/
|
|
1506
|
-
accountId?: string;
|
|
1506
|
+
accountId?: string | undefined;
|
|
1507
1507
|
/**
|
|
1508
1508
|
* <p>The description of the target account.</p>
|
|
1509
1509
|
* @public
|
|
1510
1510
|
*/
|
|
1511
|
-
description?: string;
|
|
1511
|
+
description?: string | undefined;
|
|
1512
1512
|
}
|
|
1513
1513
|
/**
|
|
1514
1514
|
* <p>Provides a summary of a target account configuration.</p>
|
|
@@ -1519,17 +1519,17 @@ export interface ExperimentTargetAccountConfigurationSummary {
|
|
|
1519
1519
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
1520
1520
|
* @public
|
|
1521
1521
|
*/
|
|
1522
|
-
roleArn?: string;
|
|
1522
|
+
roleArn?: string | undefined;
|
|
1523
1523
|
/**
|
|
1524
1524
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1525
1525
|
* @public
|
|
1526
1526
|
*/
|
|
1527
|
-
accountId?: string;
|
|
1527
|
+
accountId?: string | undefined;
|
|
1528
1528
|
/**
|
|
1529
1529
|
* <p>The description of the target account.</p>
|
|
1530
1530
|
* @public
|
|
1531
1531
|
*/
|
|
1532
|
-
description?: string;
|
|
1532
|
+
description?: string | undefined;
|
|
1533
1533
|
}
|
|
1534
1534
|
/**
|
|
1535
1535
|
* <p>Provides a summary of an experiment template.</p>
|
|
@@ -1540,32 +1540,32 @@ export interface ExperimentTemplateSummary {
|
|
|
1540
1540
|
* <p>The ID of the experiment template.</p>
|
|
1541
1541
|
* @public
|
|
1542
1542
|
*/
|
|
1543
|
-
id?: string;
|
|
1543
|
+
id?: string | undefined;
|
|
1544
1544
|
/**
|
|
1545
1545
|
* <p>The Amazon Resource Name (ARN) of the experiment template.</p>
|
|
1546
1546
|
* @public
|
|
1547
1547
|
*/
|
|
1548
|
-
arn?: string;
|
|
1548
|
+
arn?: string | undefined;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* <p>The description of the experiment template.</p>
|
|
1551
1551
|
* @public
|
|
1552
1552
|
*/
|
|
1553
|
-
description?: string;
|
|
1553
|
+
description?: string | undefined;
|
|
1554
1554
|
/**
|
|
1555
1555
|
* <p>The time that the experiment template was created.</p>
|
|
1556
1556
|
* @public
|
|
1557
1557
|
*/
|
|
1558
|
-
creationTime?: Date;
|
|
1558
|
+
creationTime?: Date | undefined;
|
|
1559
1559
|
/**
|
|
1560
1560
|
* <p>The time that the experiment template was last updated.</p>
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*/
|
|
1563
|
-
lastUpdateTime?: Date;
|
|
1563
|
+
lastUpdateTime?: Date | undefined;
|
|
1564
1564
|
/**
|
|
1565
1565
|
* <p>The tags for the experiment template.</p>
|
|
1566
1566
|
* @public
|
|
1567
1567
|
*/
|
|
1568
|
-
tags?: Record<string, string
|
|
1568
|
+
tags?: Record<string, string> | undefined;
|
|
1569
1569
|
}
|
|
1570
1570
|
/**
|
|
1571
1571
|
* @public
|
|
@@ -1585,7 +1585,7 @@ export interface GetActionResponse {
|
|
|
1585
1585
|
* <p>Information about the action.</p>
|
|
1586
1586
|
* @public
|
|
1587
1587
|
*/
|
|
1588
|
-
action?: Action;
|
|
1588
|
+
action?: Action | undefined;
|
|
1589
1589
|
}
|
|
1590
1590
|
/**
|
|
1591
1591
|
* @public
|
|
@@ -1605,7 +1605,7 @@ export interface GetExperimentResponse {
|
|
|
1605
1605
|
* <p>Information about the experiment.</p>
|
|
1606
1606
|
* @public
|
|
1607
1607
|
*/
|
|
1608
|
-
experiment?: Experiment;
|
|
1608
|
+
experiment?: Experiment | undefined;
|
|
1609
1609
|
}
|
|
1610
1610
|
/**
|
|
1611
1611
|
* @public
|
|
@@ -1630,7 +1630,7 @@ export interface GetExperimentTargetAccountConfigurationResponse {
|
|
|
1630
1630
|
* <p>Information about the target account configuration.</p>
|
|
1631
1631
|
* @public
|
|
1632
1632
|
*/
|
|
1633
|
-
targetAccountConfiguration?: ExperimentTargetAccountConfiguration;
|
|
1633
|
+
targetAccountConfiguration?: ExperimentTargetAccountConfiguration | undefined;
|
|
1634
1634
|
}
|
|
1635
1635
|
/**
|
|
1636
1636
|
* @public
|
|
@@ -1650,7 +1650,7 @@ export interface GetExperimentTemplateResponse {
|
|
|
1650
1650
|
* <p>Information about the experiment template.</p>
|
|
1651
1651
|
* @public
|
|
1652
1652
|
*/
|
|
1653
|
-
experimentTemplate?: ExperimentTemplate;
|
|
1653
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
1654
1654
|
}
|
|
1655
1655
|
/**
|
|
1656
1656
|
* @public
|
|
@@ -1690,14 +1690,14 @@ export interface SafetyLeverState {
|
|
|
1690
1690
|
* </p>
|
|
1691
1691
|
* @public
|
|
1692
1692
|
*/
|
|
1693
|
-
status?: SafetyLeverStatus;
|
|
1693
|
+
status?: SafetyLeverStatus | undefined;
|
|
1694
1694
|
/**
|
|
1695
1695
|
* <p>
|
|
1696
1696
|
* The reason for the state of the safety lever.
|
|
1697
1697
|
* </p>
|
|
1698
1698
|
* @public
|
|
1699
1699
|
*/
|
|
1700
|
-
reason?: string;
|
|
1700
|
+
reason?: string | undefined;
|
|
1701
1701
|
}
|
|
1702
1702
|
/**
|
|
1703
1703
|
* <p>
|
|
@@ -1712,21 +1712,21 @@ export interface SafetyLever {
|
|
|
1712
1712
|
* </p>
|
|
1713
1713
|
* @public
|
|
1714
1714
|
*/
|
|
1715
|
-
id?: string;
|
|
1715
|
+
id?: string | undefined;
|
|
1716
1716
|
/**
|
|
1717
1717
|
* <p>
|
|
1718
1718
|
* The Amazon Resource Name (ARN) of the safety lever.
|
|
1719
1719
|
* </p>
|
|
1720
1720
|
* @public
|
|
1721
1721
|
*/
|
|
1722
|
-
arn?: string;
|
|
1722
|
+
arn?: string | undefined;
|
|
1723
1723
|
/**
|
|
1724
1724
|
* <p>
|
|
1725
1725
|
* The state of the safety lever.
|
|
1726
1726
|
* </p>
|
|
1727
1727
|
* @public
|
|
1728
1728
|
*/
|
|
1729
|
-
state?: SafetyLeverState;
|
|
1729
|
+
state?: SafetyLeverState | undefined;
|
|
1730
1730
|
}
|
|
1731
1731
|
/**
|
|
1732
1732
|
* @public
|
|
@@ -1738,7 +1738,7 @@ export interface GetSafetyLeverResponse {
|
|
|
1738
1738
|
* </p>
|
|
1739
1739
|
* @public
|
|
1740
1740
|
*/
|
|
1741
|
-
safetyLever?: SafetyLever;
|
|
1741
|
+
safetyLever?: SafetyLever | undefined;
|
|
1742
1742
|
}
|
|
1743
1743
|
/**
|
|
1744
1744
|
* @public
|
|
@@ -1763,7 +1763,7 @@ export interface GetTargetAccountConfigurationResponse {
|
|
|
1763
1763
|
* <p>Information about the target account configuration.</p>
|
|
1764
1764
|
* @public
|
|
1765
1765
|
*/
|
|
1766
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
1766
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
1767
1767
|
}
|
|
1768
1768
|
/**
|
|
1769
1769
|
* @public
|
|
@@ -1785,12 +1785,12 @@ export interface TargetResourceTypeParameter {
|
|
|
1785
1785
|
* <p>A description of the parameter.</p>
|
|
1786
1786
|
* @public
|
|
1787
1787
|
*/
|
|
1788
|
-
description?: string;
|
|
1788
|
+
description?: string | undefined;
|
|
1789
1789
|
/**
|
|
1790
1790
|
* <p>Indicates whether the parameter is required.</p>
|
|
1791
1791
|
* @public
|
|
1792
1792
|
*/
|
|
1793
|
-
required?: boolean;
|
|
1793
|
+
required?: boolean | undefined;
|
|
1794
1794
|
}
|
|
1795
1795
|
/**
|
|
1796
1796
|
* <p>Describes a resource type.</p>
|
|
@@ -1801,17 +1801,17 @@ export interface TargetResourceType {
|
|
|
1801
1801
|
* <p>The resource type.</p>
|
|
1802
1802
|
* @public
|
|
1803
1803
|
*/
|
|
1804
|
-
resourceType?: string;
|
|
1804
|
+
resourceType?: string | undefined;
|
|
1805
1805
|
/**
|
|
1806
1806
|
* <p>A description of the resource type.</p>
|
|
1807
1807
|
* @public
|
|
1808
1808
|
*/
|
|
1809
|
-
description?: string;
|
|
1809
|
+
description?: string | undefined;
|
|
1810
1810
|
/**
|
|
1811
1811
|
* <p>The parameters for the resource type.</p>
|
|
1812
1812
|
* @public
|
|
1813
1813
|
*/
|
|
1814
|
-
parameters?: Record<string, TargetResourceTypeParameter
|
|
1814
|
+
parameters?: Record<string, TargetResourceTypeParameter> | undefined;
|
|
1815
1815
|
}
|
|
1816
1816
|
/**
|
|
1817
1817
|
* @public
|
|
@@ -1821,7 +1821,7 @@ export interface GetTargetResourceTypeResponse {
|
|
|
1821
1821
|
* <p>Information about the resource type.</p>
|
|
1822
1822
|
* @public
|
|
1823
1823
|
*/
|
|
1824
|
-
targetResourceType?: TargetResourceType;
|
|
1824
|
+
targetResourceType?: TargetResourceType | undefined;
|
|
1825
1825
|
}
|
|
1826
1826
|
/**
|
|
1827
1827
|
* @public
|
|
@@ -1831,12 +1831,12 @@ export interface ListActionsRequest {
|
|
|
1831
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>
|
|
1832
1832
|
* @public
|
|
1833
1833
|
*/
|
|
1834
|
-
maxResults?: number;
|
|
1834
|
+
maxResults?: number | undefined;
|
|
1835
1835
|
/**
|
|
1836
1836
|
* <p>The token for the next page of results.</p>
|
|
1837
1837
|
* @public
|
|
1838
1838
|
*/
|
|
1839
|
-
nextToken?: string;
|
|
1839
|
+
nextToken?: string | undefined;
|
|
1840
1840
|
}
|
|
1841
1841
|
/**
|
|
1842
1842
|
* @public
|
|
@@ -1846,12 +1846,12 @@ export interface ListActionsResponse {
|
|
|
1846
1846
|
* <p>The actions.</p>
|
|
1847
1847
|
* @public
|
|
1848
1848
|
*/
|
|
1849
|
-
actions?: ActionSummary[];
|
|
1849
|
+
actions?: ActionSummary[] | undefined;
|
|
1850
1850
|
/**
|
|
1851
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>
|
|
1852
1852
|
* @public
|
|
1853
1853
|
*/
|
|
1854
|
-
nextToken?: string;
|
|
1854
|
+
nextToken?: string | undefined;
|
|
1855
1855
|
}
|
|
1856
1856
|
/**
|
|
1857
1857
|
* @public
|
|
@@ -1867,17 +1867,17 @@ export interface ListExperimentResolvedTargetsRequest {
|
|
|
1867
1867
|
* make another call with the returned nextToken value.</p>
|
|
1868
1868
|
* @public
|
|
1869
1869
|
*/
|
|
1870
|
-
maxResults?: number;
|
|
1870
|
+
maxResults?: number | undefined;
|
|
1871
1871
|
/**
|
|
1872
1872
|
* <p>The token for the next page of results.</p>
|
|
1873
1873
|
* @public
|
|
1874
1874
|
*/
|
|
1875
|
-
nextToken?: string;
|
|
1875
|
+
nextToken?: string | undefined;
|
|
1876
1876
|
/**
|
|
1877
1877
|
* <p>The name of the target.</p>
|
|
1878
1878
|
* @public
|
|
1879
1879
|
*/
|
|
1880
|
-
targetName?: string;
|
|
1880
|
+
targetName?: string | undefined;
|
|
1881
1881
|
}
|
|
1882
1882
|
/**
|
|
1883
1883
|
* <p>Describes a resolved target.</p>
|
|
@@ -1888,17 +1888,17 @@ export interface ResolvedTarget {
|
|
|
1888
1888
|
* <p>The resource type of the target.</p>
|
|
1889
1889
|
* @public
|
|
1890
1890
|
*/
|
|
1891
|
-
resourceType?: string;
|
|
1891
|
+
resourceType?: string | undefined;
|
|
1892
1892
|
/**
|
|
1893
1893
|
* <p>The name of the target.</p>
|
|
1894
1894
|
* @public
|
|
1895
1895
|
*/
|
|
1896
|
-
targetName?: string;
|
|
1896
|
+
targetName?: string | undefined;
|
|
1897
1897
|
/**
|
|
1898
1898
|
* <p>Information about the target.</p>
|
|
1899
1899
|
* @public
|
|
1900
1900
|
*/
|
|
1901
|
-
targetInformation?: Record<string, string
|
|
1901
|
+
targetInformation?: Record<string, string> | undefined;
|
|
1902
1902
|
}
|
|
1903
1903
|
/**
|
|
1904
1904
|
* @public
|
|
@@ -1908,13 +1908,13 @@ export interface ListExperimentResolvedTargetsResponse {
|
|
|
1908
1908
|
* <p>The resolved targets.</p>
|
|
1909
1909
|
* @public
|
|
1910
1910
|
*/
|
|
1911
|
-
resolvedTargets?: ResolvedTarget[];
|
|
1911
|
+
resolvedTargets?: ResolvedTarget[] | undefined;
|
|
1912
1912
|
/**
|
|
1913
1913
|
* <p>The token to use to retrieve the next page of results.
|
|
1914
1914
|
* This value is null when there are no more results to return.</p>
|
|
1915
1915
|
* @public
|
|
1916
1916
|
*/
|
|
1917
|
-
nextToken?: string;
|
|
1917
|
+
nextToken?: string | undefined;
|
|
1918
1918
|
}
|
|
1919
1919
|
/**
|
|
1920
1920
|
* @public
|
|
@@ -1924,17 +1924,17 @@ export interface ListExperimentsRequest {
|
|
|
1924
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>
|
|
1925
1925
|
* @public
|
|
1926
1926
|
*/
|
|
1927
|
-
maxResults?: number;
|
|
1927
|
+
maxResults?: number | undefined;
|
|
1928
1928
|
/**
|
|
1929
1929
|
* <p>The token for the next page of results.</p>
|
|
1930
1930
|
* @public
|
|
1931
1931
|
*/
|
|
1932
|
-
nextToken?: string;
|
|
1932
|
+
nextToken?: string | undefined;
|
|
1933
1933
|
/**
|
|
1934
1934
|
* <p>The ID of the experiment template.</p>
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
experimentTemplateId?: string;
|
|
1937
|
+
experimentTemplateId?: string | undefined;
|
|
1938
1938
|
}
|
|
1939
1939
|
/**
|
|
1940
1940
|
* @public
|
|
@@ -1944,12 +1944,12 @@ export interface ListExperimentsResponse {
|
|
|
1944
1944
|
* <p>The experiments.</p>
|
|
1945
1945
|
* @public
|
|
1946
1946
|
*/
|
|
1947
|
-
experiments?: ExperimentSummary[];
|
|
1947
|
+
experiments?: ExperimentSummary[] | undefined;
|
|
1948
1948
|
/**
|
|
1949
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>
|
|
1950
1950
|
* @public
|
|
1951
1951
|
*/
|
|
1952
|
-
nextToken?: string;
|
|
1952
|
+
nextToken?: string | undefined;
|
|
1953
1953
|
}
|
|
1954
1954
|
/**
|
|
1955
1955
|
* @public
|
|
@@ -1964,7 +1964,7 @@ export interface ListExperimentTargetAccountConfigurationsRequest {
|
|
|
1964
1964
|
* <p>The token for the next page of results.</p>
|
|
1965
1965
|
* @public
|
|
1966
1966
|
*/
|
|
1967
|
-
nextToken?: string;
|
|
1967
|
+
nextToken?: string | undefined;
|
|
1968
1968
|
}
|
|
1969
1969
|
/**
|
|
1970
1970
|
* @public
|
|
@@ -1974,13 +1974,13 @@ export interface ListExperimentTargetAccountConfigurationsResponse {
|
|
|
1974
1974
|
* <p>The target account configurations.</p>
|
|
1975
1975
|
* @public
|
|
1976
1976
|
*/
|
|
1977
|
-
targetAccountConfigurations?: ExperimentTargetAccountConfigurationSummary[];
|
|
1977
|
+
targetAccountConfigurations?: ExperimentTargetAccountConfigurationSummary[] | undefined;
|
|
1978
1978
|
/**
|
|
1979
1979
|
* <p>The token to use to retrieve the next page of results.
|
|
1980
1980
|
* This value is null when there are no more results to return.</p>
|
|
1981
1981
|
* @public
|
|
1982
1982
|
*/
|
|
1983
|
-
nextToken?: string;
|
|
1983
|
+
nextToken?: string | undefined;
|
|
1984
1984
|
}
|
|
1985
1985
|
/**
|
|
1986
1986
|
* @public
|
|
@@ -1990,12 +1990,12 @@ export interface ListExperimentTemplatesRequest {
|
|
|
1990
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>
|
|
1991
1991
|
* @public
|
|
1992
1992
|
*/
|
|
1993
|
-
maxResults?: number;
|
|
1993
|
+
maxResults?: number | undefined;
|
|
1994
1994
|
/**
|
|
1995
1995
|
* <p>The token for the next page of results.</p>
|
|
1996
1996
|
* @public
|
|
1997
1997
|
*/
|
|
1998
|
-
nextToken?: string;
|
|
1998
|
+
nextToken?: string | undefined;
|
|
1999
1999
|
}
|
|
2000
2000
|
/**
|
|
2001
2001
|
* @public
|
|
@@ -2005,12 +2005,12 @@ export interface ListExperimentTemplatesResponse {
|
|
|
2005
2005
|
* <p>The experiment templates.</p>
|
|
2006
2006
|
* @public
|
|
2007
2007
|
*/
|
|
2008
|
-
experimentTemplates?: ExperimentTemplateSummary[];
|
|
2008
|
+
experimentTemplates?: ExperimentTemplateSummary[] | undefined;
|
|
2009
2009
|
/**
|
|
2010
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>
|
|
2011
2011
|
* @public
|
|
2012
2012
|
*/
|
|
2013
|
-
nextToken?: string;
|
|
2013
|
+
nextToken?: string | undefined;
|
|
2014
2014
|
}
|
|
2015
2015
|
/**
|
|
2016
2016
|
* @public
|
|
@@ -2030,7 +2030,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2030
2030
|
* <p>The tags for the resource.</p>
|
|
2031
2031
|
* @public
|
|
2032
2032
|
*/
|
|
2033
|
-
tags?: Record<string, string
|
|
2033
|
+
tags?: Record<string, string> | undefined;
|
|
2034
2034
|
}
|
|
2035
2035
|
/**
|
|
2036
2036
|
* @public
|
|
@@ -2046,12 +2046,12 @@ export interface ListTargetAccountConfigurationsRequest {
|
|
|
2046
2046
|
* make another call with the returned nextToken value.</p>
|
|
2047
2047
|
* @public
|
|
2048
2048
|
*/
|
|
2049
|
-
maxResults?: number;
|
|
2049
|
+
maxResults?: number | undefined;
|
|
2050
2050
|
/**
|
|
2051
2051
|
* <p>The token for the next page of results.</p>
|
|
2052
2052
|
* @public
|
|
2053
2053
|
*/
|
|
2054
|
-
nextToken?: string;
|
|
2054
|
+
nextToken?: string | undefined;
|
|
2055
2055
|
}
|
|
2056
2056
|
/**
|
|
2057
2057
|
* <p>Provides a summary of a target account configuration.</p>
|
|
@@ -2062,17 +2062,17 @@ export interface TargetAccountConfigurationSummary {
|
|
|
2062
2062
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
2063
2063
|
* @public
|
|
2064
2064
|
*/
|
|
2065
|
-
roleArn?: string;
|
|
2065
|
+
roleArn?: string | undefined;
|
|
2066
2066
|
/**
|
|
2067
2067
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
2068
2068
|
* @public
|
|
2069
2069
|
*/
|
|
2070
|
-
accountId?: string;
|
|
2070
|
+
accountId?: string | undefined;
|
|
2071
2071
|
/**
|
|
2072
2072
|
* <p>The description of the target account.</p>
|
|
2073
2073
|
* @public
|
|
2074
2074
|
*/
|
|
2075
|
-
description?: string;
|
|
2075
|
+
description?: string | undefined;
|
|
2076
2076
|
}
|
|
2077
2077
|
/**
|
|
2078
2078
|
* @public
|
|
@@ -2082,13 +2082,13 @@ export interface ListTargetAccountConfigurationsResponse {
|
|
|
2082
2082
|
* <p>The target account configurations.</p>
|
|
2083
2083
|
* @public
|
|
2084
2084
|
*/
|
|
2085
|
-
targetAccountConfigurations?: TargetAccountConfigurationSummary[];
|
|
2085
|
+
targetAccountConfigurations?: TargetAccountConfigurationSummary[] | undefined;
|
|
2086
2086
|
/**
|
|
2087
2087
|
* <p>The token to use to retrieve the next page of results.
|
|
2088
2088
|
* This value is null when there are no more results to return.</p>
|
|
2089
2089
|
* @public
|
|
2090
2090
|
*/
|
|
2091
|
-
nextToken?: string;
|
|
2091
|
+
nextToken?: string | undefined;
|
|
2092
2092
|
}
|
|
2093
2093
|
/**
|
|
2094
2094
|
* @public
|
|
@@ -2098,12 +2098,12 @@ export interface ListTargetResourceTypesRequest {
|
|
|
2098
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>
|
|
2099
2099
|
* @public
|
|
2100
2100
|
*/
|
|
2101
|
-
maxResults?: number;
|
|
2101
|
+
maxResults?: number | undefined;
|
|
2102
2102
|
/**
|
|
2103
2103
|
* <p>The token for the next page of results.</p>
|
|
2104
2104
|
* @public
|
|
2105
2105
|
*/
|
|
2106
|
-
nextToken?: string;
|
|
2106
|
+
nextToken?: string | undefined;
|
|
2107
2107
|
}
|
|
2108
2108
|
/**
|
|
2109
2109
|
* <p>Describes a resource type.</p>
|
|
@@ -2114,12 +2114,12 @@ export interface TargetResourceTypeSummary {
|
|
|
2114
2114
|
* <p>The resource type.</p>
|
|
2115
2115
|
* @public
|
|
2116
2116
|
*/
|
|
2117
|
-
resourceType?: string;
|
|
2117
|
+
resourceType?: string | undefined;
|
|
2118
2118
|
/**
|
|
2119
2119
|
* <p>A description of the resource type.</p>
|
|
2120
2120
|
* @public
|
|
2121
2121
|
*/
|
|
2122
|
-
description?: string;
|
|
2122
|
+
description?: string | undefined;
|
|
2123
2123
|
}
|
|
2124
2124
|
/**
|
|
2125
2125
|
* @public
|
|
@@ -2129,12 +2129,12 @@ export interface ListTargetResourceTypesResponse {
|
|
|
2129
2129
|
* <p>The target resource types.</p>
|
|
2130
2130
|
* @public
|
|
2131
2131
|
*/
|
|
2132
|
-
targetResourceTypes?: TargetResourceTypeSummary[];
|
|
2132
|
+
targetResourceTypes?: TargetResourceTypeSummary[] | undefined;
|
|
2133
2133
|
/**
|
|
2134
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>
|
|
2135
2135
|
* @public
|
|
2136
2136
|
*/
|
|
2137
|
-
nextToken?: string;
|
|
2137
|
+
nextToken?: string | undefined;
|
|
2138
2138
|
}
|
|
2139
2139
|
/**
|
|
2140
2140
|
* <p>Specifies experiment options for running an experiment.</p>
|
|
@@ -2145,7 +2145,7 @@ export interface StartExperimentExperimentOptionsInput {
|
|
|
2145
2145
|
* <p>Specifies the actions mode for experiment options.</p>
|
|
2146
2146
|
* @public
|
|
2147
2147
|
*/
|
|
2148
|
-
actionsMode?: ActionsMode;
|
|
2148
|
+
actionsMode?: ActionsMode | undefined;
|
|
2149
2149
|
}
|
|
2150
2150
|
/**
|
|
2151
2151
|
* @public
|
|
@@ -2155,7 +2155,7 @@ export interface StartExperimentRequest {
|
|
|
2155
2155
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
2156
2156
|
* @public
|
|
2157
2157
|
*/
|
|
2158
|
-
clientToken?: string;
|
|
2158
|
+
clientToken?: string | undefined;
|
|
2159
2159
|
/**
|
|
2160
2160
|
* <p>The ID of the experiment template.</p>
|
|
2161
2161
|
* @public
|
|
@@ -2165,12 +2165,12 @@ export interface StartExperimentRequest {
|
|
|
2165
2165
|
* <p>The experiment options for running the experiment.</p>
|
|
2166
2166
|
* @public
|
|
2167
2167
|
*/
|
|
2168
|
-
experimentOptions?: StartExperimentExperimentOptionsInput;
|
|
2168
|
+
experimentOptions?: StartExperimentExperimentOptionsInput | undefined;
|
|
2169
2169
|
/**
|
|
2170
2170
|
* <p>The tags to apply to the experiment.</p>
|
|
2171
2171
|
* @public
|
|
2172
2172
|
*/
|
|
2173
|
-
tags?: Record<string, string
|
|
2173
|
+
tags?: Record<string, string> | undefined;
|
|
2174
2174
|
}
|
|
2175
2175
|
/**
|
|
2176
2176
|
* @public
|
|
@@ -2180,7 +2180,7 @@ export interface StartExperimentResponse {
|
|
|
2180
2180
|
* <p>Information about the experiment.</p>
|
|
2181
2181
|
* @public
|
|
2182
2182
|
*/
|
|
2183
|
-
experiment?: Experiment;
|
|
2183
|
+
experiment?: Experiment | undefined;
|
|
2184
2184
|
}
|
|
2185
2185
|
/**
|
|
2186
2186
|
* @public
|
|
@@ -2200,7 +2200,7 @@ export interface StopExperimentResponse {
|
|
|
2200
2200
|
* <p>Information about the experiment.</p>
|
|
2201
2201
|
* @public
|
|
2202
2202
|
*/
|
|
2203
|
-
experiment?: Experiment;
|
|
2203
|
+
experiment?: Experiment | undefined;
|
|
2204
2204
|
}
|
|
2205
2205
|
/**
|
|
2206
2206
|
* @public
|
|
@@ -2235,7 +2235,7 @@ export interface UntagResourceRequest {
|
|
|
2235
2235
|
* <p>The tag keys to remove.</p>
|
|
2236
2236
|
* @public
|
|
2237
2237
|
*/
|
|
2238
|
-
tagKeys?: string[];
|
|
2238
|
+
tagKeys?: string[] | undefined;
|
|
2239
2239
|
}
|
|
2240
2240
|
/**
|
|
2241
2241
|
* @public
|
|
@@ -2251,27 +2251,27 @@ export interface UpdateExperimentTemplateActionInputItem {
|
|
|
2251
2251
|
* <p>The ID of the action.</p>
|
|
2252
2252
|
* @public
|
|
2253
2253
|
*/
|
|
2254
|
-
actionId?: string;
|
|
2254
|
+
actionId?: string | undefined;
|
|
2255
2255
|
/**
|
|
2256
2256
|
* <p>A description for the action.</p>
|
|
2257
2257
|
* @public
|
|
2258
2258
|
*/
|
|
2259
|
-
description?: string;
|
|
2259
|
+
description?: string | undefined;
|
|
2260
2260
|
/**
|
|
2261
2261
|
* <p>The parameters for the action, if applicable.</p>
|
|
2262
2262
|
* @public
|
|
2263
2263
|
*/
|
|
2264
|
-
parameters?: Record<string, string
|
|
2264
|
+
parameters?: Record<string, string> | undefined;
|
|
2265
2265
|
/**
|
|
2266
2266
|
* <p>The targets for the action.</p>
|
|
2267
2267
|
* @public
|
|
2268
2268
|
*/
|
|
2269
|
-
targets?: Record<string, string
|
|
2269
|
+
targets?: Record<string, string> | undefined;
|
|
2270
2270
|
/**
|
|
2271
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>
|
|
2272
2272
|
* @public
|
|
2273
2273
|
*/
|
|
2274
|
-
startAfter?: string[];
|
|
2274
|
+
startAfter?: string[] | undefined;
|
|
2275
2275
|
}
|
|
2276
2276
|
/**
|
|
2277
2277
|
* <p>Specifies an experiment option for an experiment template.</p>
|
|
@@ -2282,7 +2282,7 @@ export interface UpdateExperimentTemplateExperimentOptionsInput {
|
|
|
2282
2282
|
* <p>The empty target resolution mode of the experiment template.</p>
|
|
2283
2283
|
* @public
|
|
2284
2284
|
*/
|
|
2285
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
2285
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
2286
2286
|
}
|
|
2287
2287
|
/**
|
|
2288
2288
|
* <p>
|
|
@@ -2294,22 +2294,22 @@ export interface UpdateExperimentTemplateReportConfigurationInput {
|
|
|
2294
2294
|
* <p>Describes the output destinations of the experiment report. </p>
|
|
2295
2295
|
* @public
|
|
2296
2296
|
*/
|
|
2297
|
-
outputs?: ExperimentTemplateReportConfigurationOutputsInput;
|
|
2297
|
+
outputs?: ExperimentTemplateReportConfigurationOutputsInput | undefined;
|
|
2298
2298
|
/**
|
|
2299
2299
|
* <p>The data sources for the experiment report.</p>
|
|
2300
2300
|
* @public
|
|
2301
2301
|
*/
|
|
2302
|
-
dataSources?: ExperimentTemplateReportConfigurationDataSourcesInput;
|
|
2302
|
+
dataSources?: ExperimentTemplateReportConfigurationDataSourcesInput | undefined;
|
|
2303
2303
|
/**
|
|
2304
2304
|
* <p>The duration before the experiment start time for the data sources to include in the report. </p>
|
|
2305
2305
|
* @public
|
|
2306
2306
|
*/
|
|
2307
|
-
preExperimentDuration?: string;
|
|
2307
|
+
preExperimentDuration?: string | undefined;
|
|
2308
2308
|
/**
|
|
2309
2309
|
* <p>The duration after the experiment end time for the data sources to include in the report. </p>
|
|
2310
2310
|
* @public
|
|
2311
2311
|
*/
|
|
2312
|
-
postExperimentDuration?: string;
|
|
2312
|
+
postExperimentDuration?: string | undefined;
|
|
2313
2313
|
}
|
|
2314
2314
|
/**
|
|
2315
2315
|
* <p>Specifies the configuration for experiment logging.</p>
|
|
@@ -2320,17 +2320,17 @@ export interface UpdateExperimentTemplateLogConfigurationInput {
|
|
|
2320
2320
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
2321
2321
|
* @public
|
|
2322
2322
|
*/
|
|
2323
|
-
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
2323
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput | undefined;
|
|
2324
2324
|
/**
|
|
2325
2325
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
2326
2326
|
* @public
|
|
2327
2327
|
*/
|
|
2328
|
-
s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
|
|
2328
|
+
s3Configuration?: ExperimentTemplateS3LogConfigurationInput | undefined;
|
|
2329
2329
|
/**
|
|
2330
2330
|
* <p>The schema version.</p>
|
|
2331
2331
|
* @public
|
|
2332
2332
|
*/
|
|
2333
|
-
logSchemaVersion?: number;
|
|
2333
|
+
logSchemaVersion?: number | undefined;
|
|
2334
2334
|
}
|
|
2335
2335
|
/**
|
|
2336
2336
|
* <p>Specifies a stop condition for an experiment. You can define a stop condition as a CloudWatch alarm.</p>
|
|
@@ -2348,7 +2348,7 @@ export interface UpdateExperimentTemplateStopConditionInput {
|
|
|
2348
2348
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch alarm.</p>
|
|
2349
2349
|
* @public
|
|
2350
2350
|
*/
|
|
2351
|
-
value?: string;
|
|
2351
|
+
value?: string | undefined;
|
|
2352
2352
|
}
|
|
2353
2353
|
/**
|
|
2354
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>
|
|
@@ -2364,17 +2364,17 @@ export interface UpdateExperimentTemplateTargetInput {
|
|
|
2364
2364
|
* <p>The Amazon Resource Names (ARNs) of the targets.</p>
|
|
2365
2365
|
* @public
|
|
2366
2366
|
*/
|
|
2367
|
-
resourceArns?: string[];
|
|
2367
|
+
resourceArns?: string[] | undefined;
|
|
2368
2368
|
/**
|
|
2369
2369
|
* <p>The tags for the target resources.</p>
|
|
2370
2370
|
* @public
|
|
2371
2371
|
*/
|
|
2372
|
-
resourceTags?: Record<string, string
|
|
2372
|
+
resourceTags?: Record<string, string> | undefined;
|
|
2373
2373
|
/**
|
|
2374
2374
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
2375
2375
|
* @public
|
|
2376
2376
|
*/
|
|
2377
|
-
filters?: ExperimentTemplateTargetInputFilter[];
|
|
2377
|
+
filters?: ExperimentTemplateTargetInputFilter[] | undefined;
|
|
2378
2378
|
/**
|
|
2379
2379
|
* <p>Scopes the identified resources to a specific count or percentage.</p>
|
|
2380
2380
|
* @public
|
|
@@ -2384,7 +2384,7 @@ export interface UpdateExperimentTemplateTargetInput {
|
|
|
2384
2384
|
* <p>The resource type parameters.</p>
|
|
2385
2385
|
* @public
|
|
2386
2386
|
*/
|
|
2387
|
-
parameters?: Record<string, string
|
|
2387
|
+
parameters?: Record<string, string> | undefined;
|
|
2388
2388
|
}
|
|
2389
2389
|
/**
|
|
2390
2390
|
* @public
|
|
@@ -2399,42 +2399,42 @@ export interface UpdateExperimentTemplateRequest {
|
|
|
2399
2399
|
* <p>A description for the template.</p>
|
|
2400
2400
|
* @public
|
|
2401
2401
|
*/
|
|
2402
|
-
description?: string;
|
|
2402
|
+
description?: string | undefined;
|
|
2403
2403
|
/**
|
|
2404
2404
|
* <p>The stop conditions for the experiment.</p>
|
|
2405
2405
|
* @public
|
|
2406
2406
|
*/
|
|
2407
|
-
stopConditions?: UpdateExperimentTemplateStopConditionInput[];
|
|
2407
|
+
stopConditions?: UpdateExperimentTemplateStopConditionInput[] | undefined;
|
|
2408
2408
|
/**
|
|
2409
2409
|
* <p>The targets for the experiment.</p>
|
|
2410
2410
|
* @public
|
|
2411
2411
|
*/
|
|
2412
|
-
targets?: Record<string, UpdateExperimentTemplateTargetInput
|
|
2412
|
+
targets?: Record<string, UpdateExperimentTemplateTargetInput> | undefined;
|
|
2413
2413
|
/**
|
|
2414
2414
|
* <p>The actions for the experiment.</p>
|
|
2415
2415
|
* @public
|
|
2416
2416
|
*/
|
|
2417
|
-
actions?: Record<string, UpdateExperimentTemplateActionInputItem
|
|
2417
|
+
actions?: Record<string, UpdateExperimentTemplateActionInputItem> | undefined;
|
|
2418
2418
|
/**
|
|
2419
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>
|
|
2420
2420
|
* @public
|
|
2421
2421
|
*/
|
|
2422
|
-
roleArn?: string;
|
|
2422
|
+
roleArn?: string | undefined;
|
|
2423
2423
|
/**
|
|
2424
2424
|
* <p>The configuration for experiment logging.</p>
|
|
2425
2425
|
* @public
|
|
2426
2426
|
*/
|
|
2427
|
-
logConfiguration?: UpdateExperimentTemplateLogConfigurationInput;
|
|
2427
|
+
logConfiguration?: UpdateExperimentTemplateLogConfigurationInput | undefined;
|
|
2428
2428
|
/**
|
|
2429
2429
|
* <p>The experiment options for the experiment template.</p>
|
|
2430
2430
|
* @public
|
|
2431
2431
|
*/
|
|
2432
|
-
experimentOptions?: UpdateExperimentTemplateExperimentOptionsInput;
|
|
2432
|
+
experimentOptions?: UpdateExperimentTemplateExperimentOptionsInput | undefined;
|
|
2433
2433
|
/**
|
|
2434
2434
|
* <p>The experiment report configuration for the experiment template.</p>
|
|
2435
2435
|
* @public
|
|
2436
2436
|
*/
|
|
2437
|
-
experimentReportConfiguration?: UpdateExperimentTemplateReportConfigurationInput;
|
|
2437
|
+
experimentReportConfiguration?: UpdateExperimentTemplateReportConfigurationInput | undefined;
|
|
2438
2438
|
}
|
|
2439
2439
|
/**
|
|
2440
2440
|
* @public
|
|
@@ -2444,7 +2444,7 @@ export interface UpdateExperimentTemplateResponse {
|
|
|
2444
2444
|
* <p>Information about the experiment template.</p>
|
|
2445
2445
|
* @public
|
|
2446
2446
|
*/
|
|
2447
|
-
experimentTemplate?: ExperimentTemplate;
|
|
2447
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
2448
2448
|
}
|
|
2449
2449
|
/**
|
|
2450
2450
|
* @public
|
|
@@ -2509,7 +2509,7 @@ export interface UpdateSafetyLeverStateResponse {
|
|
|
2509
2509
|
* </p>
|
|
2510
2510
|
* @public
|
|
2511
2511
|
*/
|
|
2512
|
-
safetyLever?: SafetyLever;
|
|
2512
|
+
safetyLever?: SafetyLever | undefined;
|
|
2513
2513
|
}
|
|
2514
2514
|
/**
|
|
2515
2515
|
* @public
|
|
@@ -2529,12 +2529,12 @@ export interface UpdateTargetAccountConfigurationRequest {
|
|
|
2529
2529
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
2530
2530
|
* @public
|
|
2531
2531
|
*/
|
|
2532
|
-
roleArn?: string;
|
|
2532
|
+
roleArn?: string | undefined;
|
|
2533
2533
|
/**
|
|
2534
2534
|
* <p>The description of the target account.</p>
|
|
2535
2535
|
* @public
|
|
2536
2536
|
*/
|
|
2537
|
-
description?: string;
|
|
2537
|
+
description?: string | undefined;
|
|
2538
2538
|
}
|
|
2539
2539
|
/**
|
|
2540
2540
|
* @public
|
|
@@ -2544,5 +2544,5 @@ export interface UpdateTargetAccountConfigurationResponse {
|
|
|
2544
2544
|
* <p>Information about the target account configuration.</p>
|
|
2545
2545
|
* @public
|
|
2546
2546
|
*/
|
|
2547
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
2547
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
2548
2548
|
}
|