@aws-sdk/client-fis 3.534.0 → 3.535.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/Fis.d.ts +5 -1
- package/dist-types/FisClient.d.ts +1 -1
- package/dist-types/commands/CreateExperimentTemplateCommand.d.ts +2 -1
- package/dist-types/commands/CreateTargetAccountConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteExperimentTemplateCommand.d.ts +2 -1
- package/dist-types/commands/DeleteTargetAccountConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/GetActionCommand.d.ts +2 -1
- package/dist-types/commands/GetExperimentCommand.d.ts +2 -1
- package/dist-types/commands/GetExperimentTargetAccountConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/GetExperimentTemplateCommand.d.ts +2 -1
- package/dist-types/commands/GetTargetAccountConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/GetTargetResourceTypeCommand.d.ts +2 -1
- package/dist-types/commands/ListActionsCommand.d.ts +2 -1
- package/dist-types/commands/ListExperimentResolvedTargetsCommand.d.ts +2 -1
- package/dist-types/commands/ListExperimentTargetAccountConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/ListExperimentTemplatesCommand.d.ts +2 -1
- package/dist-types/commands/ListExperimentsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListTargetAccountConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/ListTargetResourceTypesCommand.d.ts +2 -1
- package/dist-types/commands/StartExperimentCommand.d.ts +2 -1
- package/dist-types/commands/StopExperimentCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateExperimentTemplateCommand.d.ts +2 -1
- package/dist-types/commands/UpdateTargetAccountConfigurationCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +318 -318
- package/dist-types/ts3.4/Fis.d.ts +4 -0
- package/dist-types/ts3.4/commands/CreateExperimentTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateTargetAccountConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteExperimentTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteTargetAccountConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetActionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetExperimentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetExperimentTargetAccountConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetExperimentTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetTargetAccountConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetTargetResourceTypeCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListExperimentResolvedTargetsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListExperimentTargetAccountConfigurationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListExperimentTemplatesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListExperimentsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTargetAccountConfigurationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTargetResourceTypesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartExperimentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StopExperimentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateExperimentTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateTargetAccountConfigurationCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -13,66 +13,66 @@ export declare const AccountTargeting: {
|
|
|
13
13
|
*/
|
|
14
14
|
export type AccountTargeting = (typeof AccountTargeting)[keyof typeof AccountTargeting];
|
|
15
15
|
/**
|
|
16
|
-
* @public
|
|
17
16
|
* <p>Describes a parameter for an action.</p>
|
|
17
|
+
* @public
|
|
18
18
|
*/
|
|
19
19
|
export interface ActionParameter {
|
|
20
20
|
/**
|
|
21
|
-
* @public
|
|
22
21
|
* <p>The parameter description.</p>
|
|
22
|
+
* @public
|
|
23
23
|
*/
|
|
24
24
|
description?: string;
|
|
25
25
|
/**
|
|
26
|
-
* @public
|
|
27
26
|
* <p>Indicates whether the parameter is required.</p>
|
|
27
|
+
* @public
|
|
28
28
|
*/
|
|
29
29
|
required?: boolean;
|
|
30
30
|
}
|
|
31
31
|
/**
|
|
32
|
-
* @public
|
|
33
32
|
* <p>Describes a target for an action.</p>
|
|
33
|
+
* @public
|
|
34
34
|
*/
|
|
35
35
|
export interface ActionTarget {
|
|
36
36
|
/**
|
|
37
|
-
* @public
|
|
38
37
|
* <p>The resource type of the target.</p>
|
|
38
|
+
* @public
|
|
39
39
|
*/
|
|
40
40
|
resourceType?: string;
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
|
-
* @public
|
|
44
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>
|
|
45
44
|
* in the <i>Fault Injection Service User Guide</i>.</p>
|
|
45
|
+
* @public
|
|
46
46
|
*/
|
|
47
47
|
export interface Action {
|
|
48
48
|
/**
|
|
49
|
-
* @public
|
|
50
49
|
* <p>The ID of the action.</p>
|
|
50
|
+
* @public
|
|
51
51
|
*/
|
|
52
52
|
id?: string;
|
|
53
53
|
/**
|
|
54
|
-
* @public
|
|
55
54
|
* <p>The Amazon Resource Name (ARN) of the action.</p>
|
|
55
|
+
* @public
|
|
56
56
|
*/
|
|
57
57
|
arn?: string;
|
|
58
58
|
/**
|
|
59
|
-
* @public
|
|
60
59
|
* <p>The description for the action.</p>
|
|
60
|
+
* @public
|
|
61
61
|
*/
|
|
62
62
|
description?: string;
|
|
63
63
|
/**
|
|
64
|
-
* @public
|
|
65
64
|
* <p>The action parameters, if applicable.</p>
|
|
65
|
+
* @public
|
|
66
66
|
*/
|
|
67
67
|
parameters?: Record<string, ActionParameter>;
|
|
68
68
|
/**
|
|
69
|
-
* @public
|
|
70
69
|
* <p>The supported targets for the action.</p>
|
|
70
|
+
* @public
|
|
71
71
|
*/
|
|
72
72
|
targets?: Record<string, ActionTarget>;
|
|
73
73
|
/**
|
|
74
|
-
* @public
|
|
75
74
|
* <p>The tags for the action.</p>
|
|
75
|
+
* @public
|
|
76
76
|
*/
|
|
77
77
|
tags?: Record<string, string>;
|
|
78
78
|
}
|
|
@@ -89,39 +89,39 @@ export declare const ActionsMode: {
|
|
|
89
89
|
*/
|
|
90
90
|
export type ActionsMode = (typeof ActionsMode)[keyof typeof ActionsMode];
|
|
91
91
|
/**
|
|
92
|
-
* @public
|
|
93
92
|
* <p>Provides a summary of an action.</p>
|
|
93
|
+
* @public
|
|
94
94
|
*/
|
|
95
95
|
export interface ActionSummary {
|
|
96
96
|
/**
|
|
97
|
-
* @public
|
|
98
97
|
* <p>The ID of the action.</p>
|
|
98
|
+
* @public
|
|
99
99
|
*/
|
|
100
100
|
id?: string;
|
|
101
101
|
/**
|
|
102
|
-
* @public
|
|
103
102
|
* <p>The Amazon Resource Name (ARN) of the action.</p>
|
|
103
|
+
* @public
|
|
104
104
|
*/
|
|
105
105
|
arn?: string;
|
|
106
106
|
/**
|
|
107
|
-
* @public
|
|
108
107
|
* <p>The description for the action.</p>
|
|
108
|
+
* @public
|
|
109
109
|
*/
|
|
110
110
|
description?: string;
|
|
111
111
|
/**
|
|
112
|
-
* @public
|
|
113
112
|
* <p>The targets for the action.</p>
|
|
113
|
+
* @public
|
|
114
114
|
*/
|
|
115
115
|
targets?: Record<string, ActionTarget>;
|
|
116
116
|
/**
|
|
117
|
-
* @public
|
|
118
117
|
* <p>The tags for the action.</p>
|
|
118
|
+
* @public
|
|
119
119
|
*/
|
|
120
120
|
tags?: Record<string, string>;
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
|
-
* @public
|
|
124
123
|
* <p>The request could not be processed because of a conflict.</p>
|
|
124
|
+
* @public
|
|
125
125
|
*/
|
|
126
126
|
export declare class ConflictException extends __BaseException {
|
|
127
127
|
readonly name: "ConflictException";
|
|
@@ -132,35 +132,35 @@ export declare class ConflictException extends __BaseException {
|
|
|
132
132
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
133
133
|
}
|
|
134
134
|
/**
|
|
135
|
-
* @public
|
|
136
135
|
* <p>Specifies an action for an experiment template.</p>
|
|
137
136
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/actions.html">Actions</a>
|
|
138
137
|
* in the <i>Fault Injection Service User Guide</i>.</p>
|
|
138
|
+
* @public
|
|
139
139
|
*/
|
|
140
140
|
export interface CreateExperimentTemplateActionInput {
|
|
141
141
|
/**
|
|
142
|
-
* @public
|
|
143
142
|
* <p>The ID of the action. The format of the action ID is: aws:<i>service-name</i>:<i>action-type</i>.</p>
|
|
143
|
+
* @public
|
|
144
144
|
*/
|
|
145
145
|
actionId: string | undefined;
|
|
146
146
|
/**
|
|
147
|
-
* @public
|
|
148
147
|
* <p>A description for the action.</p>
|
|
148
|
+
* @public
|
|
149
149
|
*/
|
|
150
150
|
description?: string;
|
|
151
151
|
/**
|
|
152
|
-
* @public
|
|
153
152
|
* <p>The parameters for the action, if applicable.</p>
|
|
153
|
+
* @public
|
|
154
154
|
*/
|
|
155
155
|
parameters?: Record<string, string>;
|
|
156
156
|
/**
|
|
157
|
-
* @public
|
|
158
157
|
* <p>The targets for the action.</p>
|
|
158
|
+
* @public
|
|
159
159
|
*/
|
|
160
160
|
targets?: Record<string, string>;
|
|
161
161
|
/**
|
|
162
|
-
* @public
|
|
163
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
|
+
* @public
|
|
164
164
|
*/
|
|
165
165
|
startAfter?: string[];
|
|
166
166
|
}
|
|
@@ -177,136 +177,135 @@ export declare const EmptyTargetResolutionMode: {
|
|
|
177
177
|
*/
|
|
178
178
|
export type EmptyTargetResolutionMode = (typeof EmptyTargetResolutionMode)[keyof typeof EmptyTargetResolutionMode];
|
|
179
179
|
/**
|
|
180
|
-
* @public
|
|
181
180
|
* <p>Specifies experiment options for an experiment template.</p>
|
|
181
|
+
* @public
|
|
182
182
|
*/
|
|
183
183
|
export interface CreateExperimentTemplateExperimentOptionsInput {
|
|
184
184
|
/**
|
|
185
|
-
* @public
|
|
186
185
|
* <p>Specifies the account targeting setting for experiment options.</p>
|
|
186
|
+
* @public
|
|
187
187
|
*/
|
|
188
188
|
accountTargeting?: AccountTargeting;
|
|
189
189
|
/**
|
|
190
|
-
* @public
|
|
191
190
|
* <p>Specifies the empty target resolution mode for experiment options.</p>
|
|
191
|
+
* @public
|
|
192
192
|
*/
|
|
193
193
|
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
194
194
|
}
|
|
195
195
|
/**
|
|
196
|
-
* @public
|
|
197
196
|
* <p>Specifies the configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
197
|
+
* @public
|
|
198
198
|
*/
|
|
199
199
|
export interface ExperimentTemplateCloudWatchLogsLogConfigurationInput {
|
|
200
200
|
/**
|
|
201
|
-
* @public
|
|
202
201
|
* <p>The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.</p>
|
|
202
|
+
* @public
|
|
203
203
|
*/
|
|
204
204
|
logGroupArn: string | undefined;
|
|
205
205
|
}
|
|
206
206
|
/**
|
|
207
|
-
* @public
|
|
208
207
|
* <p>Specifies the configuration for experiment logging to Amazon S3.</p>
|
|
208
|
+
* @public
|
|
209
209
|
*/
|
|
210
210
|
export interface ExperimentTemplateS3LogConfigurationInput {
|
|
211
211
|
/**
|
|
212
|
-
* @public
|
|
213
212
|
* <p>The name of the destination bucket.</p>
|
|
213
|
+
* @public
|
|
214
214
|
*/
|
|
215
215
|
bucketName: string | undefined;
|
|
216
216
|
/**
|
|
217
|
-
* @public
|
|
218
217
|
* <p>The bucket prefix.</p>
|
|
218
|
+
* @public
|
|
219
219
|
*/
|
|
220
220
|
prefix?: string;
|
|
221
221
|
}
|
|
222
222
|
/**
|
|
223
|
-
* @public
|
|
224
223
|
* <p>Specifies the configuration for experiment logging.</p>
|
|
224
|
+
* @public
|
|
225
225
|
*/
|
|
226
226
|
export interface CreateExperimentTemplateLogConfigurationInput {
|
|
227
227
|
/**
|
|
228
|
-
* @public
|
|
229
228
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
229
|
+
* @public
|
|
230
230
|
*/
|
|
231
231
|
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
232
232
|
/**
|
|
233
|
-
* @public
|
|
234
233
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
234
|
+
* @public
|
|
235
235
|
*/
|
|
236
236
|
s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
|
|
237
237
|
/**
|
|
238
|
-
* @public
|
|
239
238
|
* <p>The schema version.</p>
|
|
239
|
+
* @public
|
|
240
240
|
*/
|
|
241
241
|
logSchemaVersion: number | undefined;
|
|
242
242
|
}
|
|
243
243
|
/**
|
|
244
|
-
* @public
|
|
245
244
|
* <p>Specifies a stop condition for an experiment template.</p>
|
|
245
|
+
* @public
|
|
246
246
|
*/
|
|
247
247
|
export interface CreateExperimentTemplateStopConditionInput {
|
|
248
248
|
/**
|
|
249
|
-
* @public
|
|
250
249
|
* <p>The source for the stop condition. Specify <code>aws:cloudwatch:alarm</code> if the stop
|
|
251
250
|
* condition is defined by a CloudWatch alarm. Specify <code>none</code> if there is no stop
|
|
252
251
|
* condition.</p>
|
|
252
|
+
* @public
|
|
253
253
|
*/
|
|
254
254
|
source: string | undefined;
|
|
255
255
|
/**
|
|
256
|
-
* @public
|
|
257
256
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch alarm. This is required if the source is
|
|
258
257
|
* a CloudWatch alarm.</p>
|
|
258
|
+
* @public
|
|
259
259
|
*/
|
|
260
260
|
value?: string;
|
|
261
261
|
}
|
|
262
262
|
/**
|
|
263
|
-
* @public
|
|
264
263
|
* <p>Specifies a filter used for the target resource input in an experiment template.</p>
|
|
265
264
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/targets.html#target-filters">Resource filters</a>
|
|
266
265
|
* in the <i>Fault Injection Service User Guide</i>.</p>
|
|
266
|
+
* @public
|
|
267
267
|
*/
|
|
268
268
|
export interface ExperimentTemplateTargetInputFilter {
|
|
269
269
|
/**
|
|
270
|
-
* @public
|
|
271
270
|
* <p>The attribute path for the filter.</p>
|
|
271
|
+
* @public
|
|
272
272
|
*/
|
|
273
273
|
path: string | undefined;
|
|
274
274
|
/**
|
|
275
|
-
* @public
|
|
276
275
|
* <p>The attribute values for the filter.</p>
|
|
276
|
+
* @public
|
|
277
277
|
*/
|
|
278
278
|
values: string[] | undefined;
|
|
279
279
|
}
|
|
280
280
|
/**
|
|
281
|
-
* @public
|
|
282
281
|
* <p>Specifies a target for an experiment. You must specify at least one Amazon Resource Name (ARN) or
|
|
283
282
|
* at least one resource tag. You cannot specify both ARNs and tags.</p>
|
|
284
283
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/targets.html">Targets</a>
|
|
285
284
|
* in the <i>Fault Injection Service User Guide</i>.</p>
|
|
285
|
+
* @public
|
|
286
286
|
*/
|
|
287
287
|
export interface CreateExperimentTemplateTargetInput {
|
|
288
288
|
/**
|
|
289
|
-
* @public
|
|
290
289
|
* <p>The resource type. The resource type must be supported for the specified action.</p>
|
|
290
|
+
* @public
|
|
291
291
|
*/
|
|
292
292
|
resourceType: string | undefined;
|
|
293
293
|
/**
|
|
294
|
-
* @public
|
|
295
294
|
* <p>The Amazon Resource Names (ARNs) of the resources.</p>
|
|
295
|
+
* @public
|
|
296
296
|
*/
|
|
297
297
|
resourceArns?: string[];
|
|
298
298
|
/**
|
|
299
|
-
* @public
|
|
300
299
|
* <p>The tags for the target resources.</p>
|
|
300
|
+
* @public
|
|
301
301
|
*/
|
|
302
302
|
resourceTags?: Record<string, string>;
|
|
303
303
|
/**
|
|
304
|
-
* @public
|
|
305
304
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
305
|
+
* @public
|
|
306
306
|
*/
|
|
307
307
|
filters?: ExperimentTemplateTargetInputFilter[];
|
|
308
308
|
/**
|
|
309
|
-
* @public
|
|
310
309
|
* <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>
|
|
311
310
|
* <ul>
|
|
312
311
|
* <li>
|
|
@@ -321,11 +320,12 @@ export interface CreateExperimentTemplateTargetInput {
|
|
|
321
320
|
* at random. For example, PERCENT(25) selects 25% of the targets.</p>
|
|
322
321
|
* </li>
|
|
323
322
|
* </ul>
|
|
323
|
+
* @public
|
|
324
324
|
*/
|
|
325
325
|
selectionMode: string | undefined;
|
|
326
326
|
/**
|
|
327
|
-
* @public
|
|
328
327
|
* <p>The resource type parameters.</p>
|
|
328
|
+
* @public
|
|
329
329
|
*/
|
|
330
330
|
parameters?: Record<string, string>;
|
|
331
331
|
}
|
|
@@ -334,282 +334,282 @@ export interface CreateExperimentTemplateTargetInput {
|
|
|
334
334
|
*/
|
|
335
335
|
export interface CreateExperimentTemplateRequest {
|
|
336
336
|
/**
|
|
337
|
-
* @public
|
|
338
337
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
338
|
+
* @public
|
|
339
339
|
*/
|
|
340
340
|
clientToken?: string;
|
|
341
341
|
/**
|
|
342
|
-
* @public
|
|
343
342
|
* <p>A description for the experiment template.</p>
|
|
343
|
+
* @public
|
|
344
344
|
*/
|
|
345
345
|
description: string | undefined;
|
|
346
346
|
/**
|
|
347
|
-
* @public
|
|
348
347
|
* <p>The stop conditions.</p>
|
|
348
|
+
* @public
|
|
349
349
|
*/
|
|
350
350
|
stopConditions: CreateExperimentTemplateStopConditionInput[] | undefined;
|
|
351
351
|
/**
|
|
352
|
-
* @public
|
|
353
352
|
* <p>The targets for the experiment.</p>
|
|
353
|
+
* @public
|
|
354
354
|
*/
|
|
355
355
|
targets?: Record<string, CreateExperimentTemplateTargetInput>;
|
|
356
356
|
/**
|
|
357
|
-
* @public
|
|
358
357
|
* <p>The actions for the experiment.</p>
|
|
358
|
+
* @public
|
|
359
359
|
*/
|
|
360
360
|
actions: Record<string, CreateExperimentTemplateActionInput> | undefined;
|
|
361
361
|
/**
|
|
362
|
-
* @public
|
|
363
362
|
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
|
|
363
|
+
* @public
|
|
364
364
|
*/
|
|
365
365
|
roleArn: string | undefined;
|
|
366
366
|
/**
|
|
367
|
-
* @public
|
|
368
367
|
* <p>The tags to apply to the experiment template.</p>
|
|
368
|
+
* @public
|
|
369
369
|
*/
|
|
370
370
|
tags?: Record<string, string>;
|
|
371
371
|
/**
|
|
372
|
-
* @public
|
|
373
372
|
* <p>The configuration for experiment logging.</p>
|
|
373
|
+
* @public
|
|
374
374
|
*/
|
|
375
375
|
logConfiguration?: CreateExperimentTemplateLogConfigurationInput;
|
|
376
376
|
/**
|
|
377
|
-
* @public
|
|
378
377
|
* <p>The experiment options for the experiment template.</p>
|
|
378
|
+
* @public
|
|
379
379
|
*/
|
|
380
380
|
experimentOptions?: CreateExperimentTemplateExperimentOptionsInput;
|
|
381
381
|
}
|
|
382
382
|
/**
|
|
383
|
-
* @public
|
|
384
383
|
* <p>Describes an action for an experiment template.</p>
|
|
384
|
+
* @public
|
|
385
385
|
*/
|
|
386
386
|
export interface ExperimentTemplateAction {
|
|
387
387
|
/**
|
|
388
|
-
* @public
|
|
389
388
|
* <p>The ID of the action.</p>
|
|
389
|
+
* @public
|
|
390
390
|
*/
|
|
391
391
|
actionId?: string;
|
|
392
392
|
/**
|
|
393
|
-
* @public
|
|
394
393
|
* <p>A description for the action.</p>
|
|
394
|
+
* @public
|
|
395
395
|
*/
|
|
396
396
|
description?: string;
|
|
397
397
|
/**
|
|
398
|
-
* @public
|
|
399
398
|
* <p>The parameters for the action.</p>
|
|
399
|
+
* @public
|
|
400
400
|
*/
|
|
401
401
|
parameters?: Record<string, string>;
|
|
402
402
|
/**
|
|
403
|
-
* @public
|
|
404
403
|
* <p>The targets for the action.</p>
|
|
404
|
+
* @public
|
|
405
405
|
*/
|
|
406
406
|
targets?: Record<string, string>;
|
|
407
407
|
/**
|
|
408
|
-
* @public
|
|
409
408
|
* <p>The name of the action that must be completed before the current action starts.</p>
|
|
409
|
+
* @public
|
|
410
410
|
*/
|
|
411
411
|
startAfter?: string[];
|
|
412
412
|
}
|
|
413
413
|
/**
|
|
414
|
-
* @public
|
|
415
414
|
* <p>Describes the experiment options for an experiment template.</p>
|
|
415
|
+
* @public
|
|
416
416
|
*/
|
|
417
417
|
export interface ExperimentTemplateExperimentOptions {
|
|
418
418
|
/**
|
|
419
|
-
* @public
|
|
420
419
|
* <p>The account targeting setting for an experiment template. </p>
|
|
420
|
+
* @public
|
|
421
421
|
*/
|
|
422
422
|
accountTargeting?: AccountTargeting;
|
|
423
423
|
/**
|
|
424
|
-
* @public
|
|
425
424
|
* <p>The empty target resolution mode for an experiment template.</p>
|
|
425
|
+
* @public
|
|
426
426
|
*/
|
|
427
427
|
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
428
428
|
}
|
|
429
429
|
/**
|
|
430
|
-
* @public
|
|
431
430
|
* <p>Describes the configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
431
|
+
* @public
|
|
432
432
|
*/
|
|
433
433
|
export interface ExperimentTemplateCloudWatchLogsLogConfiguration {
|
|
434
434
|
/**
|
|
435
|
-
* @public
|
|
436
435
|
* <p>The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.</p>
|
|
436
|
+
* @public
|
|
437
437
|
*/
|
|
438
438
|
logGroupArn?: string;
|
|
439
439
|
}
|
|
440
440
|
/**
|
|
441
|
-
* @public
|
|
442
441
|
* <p>Describes the configuration for experiment logging to Amazon S3.</p>
|
|
442
|
+
* @public
|
|
443
443
|
*/
|
|
444
444
|
export interface ExperimentTemplateS3LogConfiguration {
|
|
445
445
|
/**
|
|
446
|
-
* @public
|
|
447
446
|
* <p>The name of the destination bucket.</p>
|
|
447
|
+
* @public
|
|
448
448
|
*/
|
|
449
449
|
bucketName?: string;
|
|
450
450
|
/**
|
|
451
|
-
* @public
|
|
452
451
|
* <p>The bucket prefix.</p>
|
|
452
|
+
* @public
|
|
453
453
|
*/
|
|
454
454
|
prefix?: string;
|
|
455
455
|
}
|
|
456
456
|
/**
|
|
457
|
-
* @public
|
|
458
457
|
* <p>Describes the configuration for experiment logging.</p>
|
|
458
|
+
* @public
|
|
459
459
|
*/
|
|
460
460
|
export interface ExperimentTemplateLogConfiguration {
|
|
461
461
|
/**
|
|
462
|
-
* @public
|
|
463
462
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
463
|
+
* @public
|
|
464
464
|
*/
|
|
465
465
|
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfiguration;
|
|
466
466
|
/**
|
|
467
|
-
* @public
|
|
468
467
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
468
|
+
* @public
|
|
469
469
|
*/
|
|
470
470
|
s3Configuration?: ExperimentTemplateS3LogConfiguration;
|
|
471
471
|
/**
|
|
472
|
-
* @public
|
|
473
472
|
* <p>The schema version.</p>
|
|
473
|
+
* @public
|
|
474
474
|
*/
|
|
475
475
|
logSchemaVersion?: number;
|
|
476
476
|
}
|
|
477
477
|
/**
|
|
478
|
-
* @public
|
|
479
478
|
* <p>Describes a stop condition for an experiment template.</p>
|
|
479
|
+
* @public
|
|
480
480
|
*/
|
|
481
481
|
export interface ExperimentTemplateStopCondition {
|
|
482
482
|
/**
|
|
483
|
-
* @public
|
|
484
483
|
* <p>The source for the stop condition.</p>
|
|
484
|
+
* @public
|
|
485
485
|
*/
|
|
486
486
|
source?: string;
|
|
487
487
|
/**
|
|
488
|
-
* @public
|
|
489
488
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.</p>
|
|
489
|
+
* @public
|
|
490
490
|
*/
|
|
491
491
|
value?: string;
|
|
492
492
|
}
|
|
493
493
|
/**
|
|
494
|
-
* @public
|
|
495
494
|
* <p>Describes a filter used for the target resources in an experiment template.</p>
|
|
495
|
+
* @public
|
|
496
496
|
*/
|
|
497
497
|
export interface ExperimentTemplateTargetFilter {
|
|
498
498
|
/**
|
|
499
|
-
* @public
|
|
500
499
|
* <p>The attribute path for the filter.</p>
|
|
500
|
+
* @public
|
|
501
501
|
*/
|
|
502
502
|
path?: string;
|
|
503
503
|
/**
|
|
504
|
-
* @public
|
|
505
504
|
* <p>The attribute values for the filter.</p>
|
|
505
|
+
* @public
|
|
506
506
|
*/
|
|
507
507
|
values?: string[];
|
|
508
508
|
}
|
|
509
509
|
/**
|
|
510
|
-
* @public
|
|
511
510
|
* <p>Describes a target for an experiment template.</p>
|
|
511
|
+
* @public
|
|
512
512
|
*/
|
|
513
513
|
export interface ExperimentTemplateTarget {
|
|
514
514
|
/**
|
|
515
|
-
* @public
|
|
516
515
|
* <p>The resource type.</p>
|
|
516
|
+
* @public
|
|
517
517
|
*/
|
|
518
518
|
resourceType?: string;
|
|
519
519
|
/**
|
|
520
|
-
* @public
|
|
521
520
|
* <p>The Amazon Resource Names (ARNs) of the targets.</p>
|
|
521
|
+
* @public
|
|
522
522
|
*/
|
|
523
523
|
resourceArns?: string[];
|
|
524
524
|
/**
|
|
525
|
-
* @public
|
|
526
525
|
* <p>The tags for the target resources.</p>
|
|
526
|
+
* @public
|
|
527
527
|
*/
|
|
528
528
|
resourceTags?: Record<string, string>;
|
|
529
529
|
/**
|
|
530
|
-
* @public
|
|
531
530
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
531
|
+
* @public
|
|
532
532
|
*/
|
|
533
533
|
filters?: ExperimentTemplateTargetFilter[];
|
|
534
534
|
/**
|
|
535
|
-
* @public
|
|
536
535
|
* <p>Scopes the identified resources to a specific count or percentage.</p>
|
|
536
|
+
* @public
|
|
537
537
|
*/
|
|
538
538
|
selectionMode?: string;
|
|
539
539
|
/**
|
|
540
|
-
* @public
|
|
541
540
|
* <p>The resource type parameters.</p>
|
|
541
|
+
* @public
|
|
542
542
|
*/
|
|
543
543
|
parameters?: Record<string, string>;
|
|
544
544
|
}
|
|
545
545
|
/**
|
|
546
|
-
* @public
|
|
547
546
|
* <p>Describes an experiment template.</p>
|
|
547
|
+
* @public
|
|
548
548
|
*/
|
|
549
549
|
export interface ExperimentTemplate {
|
|
550
550
|
/**
|
|
551
|
-
* @public
|
|
552
551
|
* <p>The ID of the experiment template.</p>
|
|
552
|
+
* @public
|
|
553
553
|
*/
|
|
554
554
|
id?: string;
|
|
555
555
|
/**
|
|
556
|
-
* @public
|
|
557
556
|
* <p>The Amazon Resource Name (ARN) of the experiment template.</p>
|
|
557
|
+
* @public
|
|
558
558
|
*/
|
|
559
559
|
arn?: string;
|
|
560
560
|
/**
|
|
561
|
-
* @public
|
|
562
561
|
* <p>The description for the experiment template.</p>
|
|
562
|
+
* @public
|
|
563
563
|
*/
|
|
564
564
|
description?: string;
|
|
565
565
|
/**
|
|
566
|
-
* @public
|
|
567
566
|
* <p>The targets for the experiment.</p>
|
|
567
|
+
* @public
|
|
568
568
|
*/
|
|
569
569
|
targets?: Record<string, ExperimentTemplateTarget>;
|
|
570
570
|
/**
|
|
571
|
-
* @public
|
|
572
571
|
* <p>The actions for the experiment.</p>
|
|
572
|
+
* @public
|
|
573
573
|
*/
|
|
574
574
|
actions?: Record<string, ExperimentTemplateAction>;
|
|
575
575
|
/**
|
|
576
|
-
* @public
|
|
577
576
|
* <p>The stop conditions for the experiment.</p>
|
|
577
|
+
* @public
|
|
578
578
|
*/
|
|
579
579
|
stopConditions?: ExperimentTemplateStopCondition[];
|
|
580
580
|
/**
|
|
581
|
-
* @public
|
|
582
581
|
* <p>The time the experiment template was created.</p>
|
|
582
|
+
* @public
|
|
583
583
|
*/
|
|
584
584
|
creationTime?: Date;
|
|
585
585
|
/**
|
|
586
|
-
* @public
|
|
587
586
|
* <p>The time the experiment template was last updated.</p>
|
|
587
|
+
* @public
|
|
588
588
|
*/
|
|
589
589
|
lastUpdateTime?: Date;
|
|
590
590
|
/**
|
|
591
|
-
* @public
|
|
592
591
|
* <p>The Amazon Resource Name (ARN) of an IAM role.</p>
|
|
592
|
+
* @public
|
|
593
593
|
*/
|
|
594
594
|
roleArn?: string;
|
|
595
595
|
/**
|
|
596
|
-
* @public
|
|
597
596
|
* <p>The tags for the experiment template.</p>
|
|
597
|
+
* @public
|
|
598
598
|
*/
|
|
599
599
|
tags?: Record<string, string>;
|
|
600
600
|
/**
|
|
601
|
-
* @public
|
|
602
601
|
* <p>The configuration for experiment logging.</p>
|
|
602
|
+
* @public
|
|
603
603
|
*/
|
|
604
604
|
logConfiguration?: ExperimentTemplateLogConfiguration;
|
|
605
605
|
/**
|
|
606
|
-
* @public
|
|
607
606
|
* <p>The experiment options for an experiment template.</p>
|
|
607
|
+
* @public
|
|
608
608
|
*/
|
|
609
609
|
experimentOptions?: ExperimentTemplateExperimentOptions;
|
|
610
610
|
/**
|
|
611
|
-
* @public
|
|
612
611
|
* <p>The count of target account configurations for the experiment template.</p>
|
|
612
|
+
* @public
|
|
613
613
|
*/
|
|
614
614
|
targetAccountConfigurationsCount?: number;
|
|
615
615
|
}
|
|
@@ -618,14 +618,14 @@ export interface ExperimentTemplate {
|
|
|
618
618
|
*/
|
|
619
619
|
export interface CreateExperimentTemplateResponse {
|
|
620
620
|
/**
|
|
621
|
-
* @public
|
|
622
621
|
* <p>Information about the experiment template.</p>
|
|
622
|
+
* @public
|
|
623
623
|
*/
|
|
624
624
|
experimentTemplate?: ExperimentTemplate;
|
|
625
625
|
}
|
|
626
626
|
/**
|
|
627
|
-
* @public
|
|
628
627
|
* <p>The specified resource cannot be found.</p>
|
|
628
|
+
* @public
|
|
629
629
|
*/
|
|
630
630
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
631
631
|
readonly name: "ResourceNotFoundException";
|
|
@@ -636,8 +636,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
636
636
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
637
637
|
}
|
|
638
638
|
/**
|
|
639
|
-
* @public
|
|
640
639
|
* <p>You have exceeded your service quota.</p>
|
|
640
|
+
* @public
|
|
641
641
|
*/
|
|
642
642
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
643
643
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -648,8 +648,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
648
648
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
649
649
|
}
|
|
650
650
|
/**
|
|
651
|
-
* @public
|
|
652
651
|
* <p>The specified input is not valid, or fails to satisfy the constraints for the request.</p>
|
|
652
|
+
* @public
|
|
653
653
|
*/
|
|
654
654
|
export declare class ValidationException extends __BaseException {
|
|
655
655
|
readonly name: "ValidationException";
|
|
@@ -664,49 +664,49 @@ export declare class ValidationException extends __BaseException {
|
|
|
664
664
|
*/
|
|
665
665
|
export interface CreateTargetAccountConfigurationRequest {
|
|
666
666
|
/**
|
|
667
|
-
* @public
|
|
668
667
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
668
|
+
* @public
|
|
669
669
|
*/
|
|
670
670
|
clientToken?: string;
|
|
671
671
|
/**
|
|
672
|
-
* @public
|
|
673
672
|
* <p>The experiment template ID.</p>
|
|
673
|
+
* @public
|
|
674
674
|
*/
|
|
675
675
|
experimentTemplateId: string | undefined;
|
|
676
676
|
/**
|
|
677
|
-
* @public
|
|
678
677
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
678
|
+
* @public
|
|
679
679
|
*/
|
|
680
680
|
accountId: string | undefined;
|
|
681
681
|
/**
|
|
682
|
-
* @public
|
|
683
682
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
683
|
+
* @public
|
|
684
684
|
*/
|
|
685
685
|
roleArn: string | undefined;
|
|
686
686
|
/**
|
|
687
|
-
* @public
|
|
688
687
|
* <p>The description of the target account.</p>
|
|
688
|
+
* @public
|
|
689
689
|
*/
|
|
690
690
|
description?: string;
|
|
691
691
|
}
|
|
692
692
|
/**
|
|
693
|
-
* @public
|
|
694
693
|
* <p>Describes a target account configuration.</p>
|
|
694
|
+
* @public
|
|
695
695
|
*/
|
|
696
696
|
export interface TargetAccountConfiguration {
|
|
697
697
|
/**
|
|
698
|
-
* @public
|
|
699
698
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
699
|
+
* @public
|
|
700
700
|
*/
|
|
701
701
|
roleArn?: string;
|
|
702
702
|
/**
|
|
703
|
-
* @public
|
|
704
703
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
704
|
+
* @public
|
|
705
705
|
*/
|
|
706
706
|
accountId?: string;
|
|
707
707
|
/**
|
|
708
|
-
* @public
|
|
709
708
|
* <p>The description of the target account.</p>
|
|
709
|
+
* @public
|
|
710
710
|
*/
|
|
711
711
|
description?: string;
|
|
712
712
|
}
|
|
@@ -715,8 +715,8 @@ export interface TargetAccountConfiguration {
|
|
|
715
715
|
*/
|
|
716
716
|
export interface CreateTargetAccountConfigurationResponse {
|
|
717
717
|
/**
|
|
718
|
-
* @public
|
|
719
718
|
* <p>Information about the target account configuration.</p>
|
|
719
|
+
* @public
|
|
720
720
|
*/
|
|
721
721
|
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
722
722
|
}
|
|
@@ -725,8 +725,8 @@ export interface CreateTargetAccountConfigurationResponse {
|
|
|
725
725
|
*/
|
|
726
726
|
export interface DeleteExperimentTemplateRequest {
|
|
727
727
|
/**
|
|
728
|
-
* @public
|
|
729
728
|
* <p>The ID of the experiment template.</p>
|
|
729
|
+
* @public
|
|
730
730
|
*/
|
|
731
731
|
id: string | undefined;
|
|
732
732
|
}
|
|
@@ -735,8 +735,8 @@ export interface DeleteExperimentTemplateRequest {
|
|
|
735
735
|
*/
|
|
736
736
|
export interface DeleteExperimentTemplateResponse {
|
|
737
737
|
/**
|
|
738
|
-
* @public
|
|
739
738
|
* <p>Information about the experiment template.</p>
|
|
739
|
+
* @public
|
|
740
740
|
*/
|
|
741
741
|
experimentTemplate?: ExperimentTemplate;
|
|
742
742
|
}
|
|
@@ -745,13 +745,13 @@ export interface DeleteExperimentTemplateResponse {
|
|
|
745
745
|
*/
|
|
746
746
|
export interface DeleteTargetAccountConfigurationRequest {
|
|
747
747
|
/**
|
|
748
|
-
* @public
|
|
749
748
|
* <p>The ID of the experiment template.</p>
|
|
749
|
+
* @public
|
|
750
750
|
*/
|
|
751
751
|
experimentTemplateId: string | undefined;
|
|
752
752
|
/**
|
|
753
|
-
* @public
|
|
754
753
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
754
|
+
* @public
|
|
755
755
|
*/
|
|
756
756
|
accountId: string | undefined;
|
|
757
757
|
}
|
|
@@ -760,8 +760,8 @@ export interface DeleteTargetAccountConfigurationRequest {
|
|
|
760
760
|
*/
|
|
761
761
|
export interface DeleteTargetAccountConfigurationResponse {
|
|
762
762
|
/**
|
|
763
|
-
* @public
|
|
764
763
|
* <p>Information about the target account configuration.</p>
|
|
764
|
+
* @public
|
|
765
765
|
*/
|
|
766
766
|
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
767
767
|
}
|
|
@@ -785,133 +785,133 @@ export declare const ExperimentActionStatus: {
|
|
|
785
785
|
*/
|
|
786
786
|
export type ExperimentActionStatus = (typeof ExperimentActionStatus)[keyof typeof ExperimentActionStatus];
|
|
787
787
|
/**
|
|
788
|
-
* @public
|
|
789
788
|
* <p>Describes the state of an action.</p>
|
|
789
|
+
* @public
|
|
790
790
|
*/
|
|
791
791
|
export interface ExperimentActionState {
|
|
792
792
|
/**
|
|
793
|
-
* @public
|
|
794
793
|
* <p>The state of the action.</p>
|
|
794
|
+
* @public
|
|
795
795
|
*/
|
|
796
796
|
status?: ExperimentActionStatus;
|
|
797
797
|
/**
|
|
798
|
-
* @public
|
|
799
798
|
* <p>The reason for the state.</p>
|
|
799
|
+
* @public
|
|
800
800
|
*/
|
|
801
801
|
reason?: string;
|
|
802
802
|
}
|
|
803
803
|
/**
|
|
804
|
-
* @public
|
|
805
804
|
* <p>Describes the action for an experiment.</p>
|
|
805
|
+
* @public
|
|
806
806
|
*/
|
|
807
807
|
export interface ExperimentAction {
|
|
808
808
|
/**
|
|
809
|
-
* @public
|
|
810
809
|
* <p>The ID of the action.</p>
|
|
810
|
+
* @public
|
|
811
811
|
*/
|
|
812
812
|
actionId?: string;
|
|
813
813
|
/**
|
|
814
|
-
* @public
|
|
815
814
|
* <p>The description for the action.</p>
|
|
815
|
+
* @public
|
|
816
816
|
*/
|
|
817
817
|
description?: string;
|
|
818
818
|
/**
|
|
819
|
-
* @public
|
|
820
819
|
* <p>The parameters for the action.</p>
|
|
820
|
+
* @public
|
|
821
821
|
*/
|
|
822
822
|
parameters?: Record<string, string>;
|
|
823
823
|
/**
|
|
824
|
-
* @public
|
|
825
824
|
* <p>The targets for the action.</p>
|
|
825
|
+
* @public
|
|
826
826
|
*/
|
|
827
827
|
targets?: Record<string, string>;
|
|
828
828
|
/**
|
|
829
|
-
* @public
|
|
830
829
|
* <p>The name of the action that must be completed before this action starts.</p>
|
|
830
|
+
* @public
|
|
831
831
|
*/
|
|
832
832
|
startAfter?: string[];
|
|
833
833
|
/**
|
|
834
|
-
* @public
|
|
835
834
|
* <p>The state of the action.</p>
|
|
835
|
+
* @public
|
|
836
836
|
*/
|
|
837
837
|
state?: ExperimentActionState;
|
|
838
838
|
/**
|
|
839
|
-
* @public
|
|
840
839
|
* <p>The time that the action started.</p>
|
|
840
|
+
* @public
|
|
841
841
|
*/
|
|
842
842
|
startTime?: Date;
|
|
843
843
|
/**
|
|
844
|
-
* @public
|
|
845
844
|
* <p>The time that the action ended.</p>
|
|
845
|
+
* @public
|
|
846
846
|
*/
|
|
847
847
|
endTime?: Date;
|
|
848
848
|
}
|
|
849
849
|
/**
|
|
850
|
-
* @public
|
|
851
850
|
* <p>Describes the options for an experiment.</p>
|
|
851
|
+
* @public
|
|
852
852
|
*/
|
|
853
853
|
export interface ExperimentOptions {
|
|
854
854
|
/**
|
|
855
|
-
* @public
|
|
856
855
|
* <p>The account targeting setting for an experiment.</p>
|
|
856
|
+
* @public
|
|
857
857
|
*/
|
|
858
858
|
accountTargeting?: AccountTargeting;
|
|
859
859
|
/**
|
|
860
|
-
* @public
|
|
861
860
|
* <p>The empty target resolution mode for an experiment.</p>
|
|
861
|
+
* @public
|
|
862
862
|
*/
|
|
863
863
|
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
864
864
|
/**
|
|
865
|
-
* @public
|
|
866
865
|
* <p>The actions mode of the experiment that is set from the StartExperiment API command.</p>
|
|
866
|
+
* @public
|
|
867
867
|
*/
|
|
868
868
|
actionsMode?: ActionsMode;
|
|
869
869
|
}
|
|
870
870
|
/**
|
|
871
|
-
* @public
|
|
872
871
|
* <p>Describes the configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
872
|
+
* @public
|
|
873
873
|
*/
|
|
874
874
|
export interface ExperimentCloudWatchLogsLogConfiguration {
|
|
875
875
|
/**
|
|
876
|
-
* @public
|
|
877
876
|
* <p>The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.</p>
|
|
877
|
+
* @public
|
|
878
878
|
*/
|
|
879
879
|
logGroupArn?: string;
|
|
880
880
|
}
|
|
881
881
|
/**
|
|
882
|
-
* @public
|
|
883
882
|
* <p>Describes the configuration for experiment logging to Amazon S3.</p>
|
|
883
|
+
* @public
|
|
884
884
|
*/
|
|
885
885
|
export interface ExperimentS3LogConfiguration {
|
|
886
886
|
/**
|
|
887
|
-
* @public
|
|
888
887
|
* <p>The name of the destination bucket.</p>
|
|
888
|
+
* @public
|
|
889
889
|
*/
|
|
890
890
|
bucketName?: string;
|
|
891
891
|
/**
|
|
892
|
-
* @public
|
|
893
892
|
* <p>The bucket prefix.</p>
|
|
893
|
+
* @public
|
|
894
894
|
*/
|
|
895
895
|
prefix?: string;
|
|
896
896
|
}
|
|
897
897
|
/**
|
|
898
|
-
* @public
|
|
899
898
|
* <p>Describes the configuration for experiment logging.</p>
|
|
899
|
+
* @public
|
|
900
900
|
*/
|
|
901
901
|
export interface ExperimentLogConfiguration {
|
|
902
902
|
/**
|
|
903
|
-
* @public
|
|
904
903
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
904
|
+
* @public
|
|
905
905
|
*/
|
|
906
906
|
cloudWatchLogsConfiguration?: ExperimentCloudWatchLogsLogConfiguration;
|
|
907
907
|
/**
|
|
908
|
-
* @public
|
|
909
908
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
909
|
+
* @public
|
|
910
910
|
*/
|
|
911
911
|
s3Configuration?: ExperimentS3LogConfiguration;
|
|
912
912
|
/**
|
|
913
|
-
* @public
|
|
914
913
|
* <p>The schema version.</p>
|
|
914
|
+
* @public
|
|
915
915
|
*/
|
|
916
916
|
logSchemaVersion?: number;
|
|
917
917
|
}
|
|
@@ -933,286 +933,286 @@ export declare const ExperimentStatus: {
|
|
|
933
933
|
*/
|
|
934
934
|
export type ExperimentStatus = (typeof ExperimentStatus)[keyof typeof ExperimentStatus];
|
|
935
935
|
/**
|
|
936
|
-
* @public
|
|
937
936
|
* <p>Describes the state of an experiment.</p>
|
|
937
|
+
* @public
|
|
938
938
|
*/
|
|
939
939
|
export interface ExperimentState {
|
|
940
940
|
/**
|
|
941
|
-
* @public
|
|
942
941
|
* <p>The state of the experiment.</p>
|
|
942
|
+
* @public
|
|
943
943
|
*/
|
|
944
944
|
status?: ExperimentStatus;
|
|
945
945
|
/**
|
|
946
|
-
* @public
|
|
947
946
|
* <p>The reason for the state.</p>
|
|
947
|
+
* @public
|
|
948
948
|
*/
|
|
949
949
|
reason?: string;
|
|
950
950
|
}
|
|
951
951
|
/**
|
|
952
|
-
* @public
|
|
953
952
|
* <p>Describes the stop condition for an experiment.</p>
|
|
953
|
+
* @public
|
|
954
954
|
*/
|
|
955
955
|
export interface ExperimentStopCondition {
|
|
956
956
|
/**
|
|
957
|
-
* @public
|
|
958
957
|
* <p>The source for the stop condition.</p>
|
|
958
|
+
* @public
|
|
959
959
|
*/
|
|
960
960
|
source?: string;
|
|
961
961
|
/**
|
|
962
|
-
* @public
|
|
963
962
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.</p>
|
|
963
|
+
* @public
|
|
964
964
|
*/
|
|
965
965
|
value?: string;
|
|
966
966
|
}
|
|
967
967
|
/**
|
|
968
|
-
* @public
|
|
969
968
|
* <p>Describes a filter used for the target resources in an experiment.</p>
|
|
969
|
+
* @public
|
|
970
970
|
*/
|
|
971
971
|
export interface ExperimentTargetFilter {
|
|
972
972
|
/**
|
|
973
|
-
* @public
|
|
974
973
|
* <p>The attribute path for the filter.</p>
|
|
974
|
+
* @public
|
|
975
975
|
*/
|
|
976
976
|
path?: string;
|
|
977
977
|
/**
|
|
978
|
-
* @public
|
|
979
978
|
* <p>The attribute values for the filter.</p>
|
|
979
|
+
* @public
|
|
980
980
|
*/
|
|
981
981
|
values?: string[];
|
|
982
982
|
}
|
|
983
983
|
/**
|
|
984
|
-
* @public
|
|
985
984
|
* <p>Describes a target for an experiment.</p>
|
|
985
|
+
* @public
|
|
986
986
|
*/
|
|
987
987
|
export interface ExperimentTarget {
|
|
988
988
|
/**
|
|
989
|
-
* @public
|
|
990
989
|
* <p>The resource type.</p>
|
|
990
|
+
* @public
|
|
991
991
|
*/
|
|
992
992
|
resourceType?: string;
|
|
993
993
|
/**
|
|
994
|
-
* @public
|
|
995
994
|
* <p>The Amazon Resource Names (ARNs) of the resources.</p>
|
|
995
|
+
* @public
|
|
996
996
|
*/
|
|
997
997
|
resourceArns?: string[];
|
|
998
998
|
/**
|
|
999
|
-
* @public
|
|
1000
999
|
* <p>The tags for the target resources.</p>
|
|
1000
|
+
* @public
|
|
1001
1001
|
*/
|
|
1002
1002
|
resourceTags?: Record<string, string>;
|
|
1003
1003
|
/**
|
|
1004
|
-
* @public
|
|
1005
1004
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
1005
|
+
* @public
|
|
1006
1006
|
*/
|
|
1007
1007
|
filters?: ExperimentTargetFilter[];
|
|
1008
1008
|
/**
|
|
1009
|
-
* @public
|
|
1010
1009
|
* <p>Scopes the identified resources to a specific count or percentage.</p>
|
|
1010
|
+
* @public
|
|
1011
1011
|
*/
|
|
1012
1012
|
selectionMode?: string;
|
|
1013
1013
|
/**
|
|
1014
|
-
* @public
|
|
1015
1014
|
* <p>The resource type parameters.</p>
|
|
1015
|
+
* @public
|
|
1016
1016
|
*/
|
|
1017
1017
|
parameters?: Record<string, string>;
|
|
1018
1018
|
}
|
|
1019
1019
|
/**
|
|
1020
|
-
* @public
|
|
1021
1020
|
* <p>Describes an experiment.</p>
|
|
1021
|
+
* @public
|
|
1022
1022
|
*/
|
|
1023
1023
|
export interface Experiment {
|
|
1024
1024
|
/**
|
|
1025
|
-
* @public
|
|
1026
1025
|
* <p>The ID of the experiment.</p>
|
|
1026
|
+
* @public
|
|
1027
1027
|
*/
|
|
1028
1028
|
id?: string;
|
|
1029
1029
|
/**
|
|
1030
|
-
* @public
|
|
1031
1030
|
* <p>The Amazon Resource Name (ARN) of the experiment.</p>
|
|
1031
|
+
* @public
|
|
1032
1032
|
*/
|
|
1033
1033
|
arn?: string;
|
|
1034
1034
|
/**
|
|
1035
|
-
* @public
|
|
1036
1035
|
* <p>The ID of the experiment template.</p>
|
|
1036
|
+
* @public
|
|
1037
1037
|
*/
|
|
1038
1038
|
experimentTemplateId?: string;
|
|
1039
1039
|
/**
|
|
1040
|
-
* @public
|
|
1041
1040
|
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
|
|
1041
|
+
* @public
|
|
1042
1042
|
*/
|
|
1043
1043
|
roleArn?: string;
|
|
1044
1044
|
/**
|
|
1045
|
-
* @public
|
|
1046
1045
|
* <p>The state of the experiment.</p>
|
|
1046
|
+
* @public
|
|
1047
1047
|
*/
|
|
1048
1048
|
state?: ExperimentState;
|
|
1049
1049
|
/**
|
|
1050
|
-
* @public
|
|
1051
1050
|
* <p>The targets for the experiment.</p>
|
|
1051
|
+
* @public
|
|
1052
1052
|
*/
|
|
1053
1053
|
targets?: Record<string, ExperimentTarget>;
|
|
1054
1054
|
/**
|
|
1055
|
-
* @public
|
|
1056
1055
|
* <p>The actions for the experiment.</p>
|
|
1056
|
+
* @public
|
|
1057
1057
|
*/
|
|
1058
1058
|
actions?: Record<string, ExperimentAction>;
|
|
1059
1059
|
/**
|
|
1060
|
-
* @public
|
|
1061
1060
|
* <p>The stop conditions for the experiment.</p>
|
|
1061
|
+
* @public
|
|
1062
1062
|
*/
|
|
1063
1063
|
stopConditions?: ExperimentStopCondition[];
|
|
1064
1064
|
/**
|
|
1065
|
-
* @public
|
|
1066
1065
|
* <p>The time that the experiment was created.</p>
|
|
1066
|
+
* @public
|
|
1067
1067
|
*/
|
|
1068
1068
|
creationTime?: Date;
|
|
1069
1069
|
/**
|
|
1070
|
-
* @public
|
|
1071
1070
|
* <p>The time that the experiment started.</p>
|
|
1071
|
+
* @public
|
|
1072
1072
|
*/
|
|
1073
1073
|
startTime?: Date;
|
|
1074
1074
|
/**
|
|
1075
|
-
* @public
|
|
1076
1075
|
* <p>The time that the experiment ended.</p>
|
|
1076
|
+
* @public
|
|
1077
1077
|
*/
|
|
1078
1078
|
endTime?: Date;
|
|
1079
1079
|
/**
|
|
1080
|
-
* @public
|
|
1081
1080
|
* <p>The tags for the experiment.</p>
|
|
1081
|
+
* @public
|
|
1082
1082
|
*/
|
|
1083
1083
|
tags?: Record<string, string>;
|
|
1084
1084
|
/**
|
|
1085
|
-
* @public
|
|
1086
1085
|
* <p>The configuration for experiment logging.</p>
|
|
1086
|
+
* @public
|
|
1087
1087
|
*/
|
|
1088
1088
|
logConfiguration?: ExperimentLogConfiguration;
|
|
1089
1089
|
/**
|
|
1090
|
-
* @public
|
|
1091
1090
|
* <p>The experiment options for the experiment.</p>
|
|
1091
|
+
* @public
|
|
1092
1092
|
*/
|
|
1093
1093
|
experimentOptions?: ExperimentOptions;
|
|
1094
1094
|
/**
|
|
1095
|
-
* @public
|
|
1096
1095
|
* <p>The count of target account configurations for the experiment.</p>
|
|
1096
|
+
* @public
|
|
1097
1097
|
*/
|
|
1098
1098
|
targetAccountConfigurationsCount?: number;
|
|
1099
1099
|
}
|
|
1100
1100
|
/**
|
|
1101
|
-
* @public
|
|
1102
1101
|
* <p>Provides a summary of an experiment.</p>
|
|
1102
|
+
* @public
|
|
1103
1103
|
*/
|
|
1104
1104
|
export interface ExperimentSummary {
|
|
1105
1105
|
/**
|
|
1106
|
-
* @public
|
|
1107
1106
|
* <p>The ID of the experiment.</p>
|
|
1107
|
+
* @public
|
|
1108
1108
|
*/
|
|
1109
1109
|
id?: string;
|
|
1110
1110
|
/**
|
|
1111
|
-
* @public
|
|
1112
1111
|
* <p>The Amazon Resource Name (ARN) of the experiment.</p>
|
|
1112
|
+
* @public
|
|
1113
1113
|
*/
|
|
1114
1114
|
arn?: string;
|
|
1115
1115
|
/**
|
|
1116
|
-
* @public
|
|
1117
1116
|
* <p>The ID of the experiment template.</p>
|
|
1117
|
+
* @public
|
|
1118
1118
|
*/
|
|
1119
1119
|
experimentTemplateId?: string;
|
|
1120
1120
|
/**
|
|
1121
|
-
* @public
|
|
1122
1121
|
* <p>The state of the experiment.</p>
|
|
1122
|
+
* @public
|
|
1123
1123
|
*/
|
|
1124
1124
|
state?: ExperimentState;
|
|
1125
1125
|
/**
|
|
1126
|
-
* @public
|
|
1127
1126
|
* <p>The time that the experiment was created.</p>
|
|
1127
|
+
* @public
|
|
1128
1128
|
*/
|
|
1129
1129
|
creationTime?: Date;
|
|
1130
1130
|
/**
|
|
1131
|
-
* @public
|
|
1132
1131
|
* <p>The tags for the experiment.</p>
|
|
1132
|
+
* @public
|
|
1133
1133
|
*/
|
|
1134
1134
|
tags?: Record<string, string>;
|
|
1135
1135
|
/**
|
|
1136
|
-
* @public
|
|
1137
1136
|
* <p>The experiment options for the experiment.</p>
|
|
1137
|
+
* @public
|
|
1138
1138
|
*/
|
|
1139
1139
|
experimentOptions?: ExperimentOptions;
|
|
1140
1140
|
}
|
|
1141
1141
|
/**
|
|
1142
|
-
* @public
|
|
1143
1142
|
* <p>Describes a target account configuration for an experiment.</p>
|
|
1143
|
+
* @public
|
|
1144
1144
|
*/
|
|
1145
1145
|
export interface ExperimentTargetAccountConfiguration {
|
|
1146
1146
|
/**
|
|
1147
|
-
* @public
|
|
1148
1147
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
1148
|
+
* @public
|
|
1149
1149
|
*/
|
|
1150
1150
|
roleArn?: string;
|
|
1151
1151
|
/**
|
|
1152
|
-
* @public
|
|
1153
1152
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1153
|
+
* @public
|
|
1154
1154
|
*/
|
|
1155
1155
|
accountId?: string;
|
|
1156
1156
|
/**
|
|
1157
|
-
* @public
|
|
1158
1157
|
* <p>The description of the target account.</p>
|
|
1158
|
+
* @public
|
|
1159
1159
|
*/
|
|
1160
1160
|
description?: string;
|
|
1161
1161
|
}
|
|
1162
1162
|
/**
|
|
1163
|
-
* @public
|
|
1164
1163
|
* <p>Provides a summary of a target account configuration.</p>
|
|
1164
|
+
* @public
|
|
1165
1165
|
*/
|
|
1166
1166
|
export interface ExperimentTargetAccountConfigurationSummary {
|
|
1167
1167
|
/**
|
|
1168
|
-
* @public
|
|
1169
1168
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
1169
|
+
* @public
|
|
1170
1170
|
*/
|
|
1171
1171
|
roleArn?: string;
|
|
1172
1172
|
/**
|
|
1173
|
-
* @public
|
|
1174
1173
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1174
|
+
* @public
|
|
1175
1175
|
*/
|
|
1176
1176
|
accountId?: string;
|
|
1177
1177
|
/**
|
|
1178
|
-
* @public
|
|
1179
1178
|
* <p>The description of the target account.</p>
|
|
1179
|
+
* @public
|
|
1180
1180
|
*/
|
|
1181
1181
|
description?: string;
|
|
1182
1182
|
}
|
|
1183
1183
|
/**
|
|
1184
|
-
* @public
|
|
1185
1184
|
* <p>Provides a summary of an experiment template.</p>
|
|
1185
|
+
* @public
|
|
1186
1186
|
*/
|
|
1187
1187
|
export interface ExperimentTemplateSummary {
|
|
1188
1188
|
/**
|
|
1189
|
-
* @public
|
|
1190
1189
|
* <p>The ID of the experiment template.</p>
|
|
1190
|
+
* @public
|
|
1191
1191
|
*/
|
|
1192
1192
|
id?: string;
|
|
1193
1193
|
/**
|
|
1194
|
-
* @public
|
|
1195
1194
|
* <p>The Amazon Resource Name (ARN) of the experiment template.</p>
|
|
1195
|
+
* @public
|
|
1196
1196
|
*/
|
|
1197
1197
|
arn?: string;
|
|
1198
1198
|
/**
|
|
1199
|
-
* @public
|
|
1200
1199
|
* <p>The description of the experiment template.</p>
|
|
1200
|
+
* @public
|
|
1201
1201
|
*/
|
|
1202
1202
|
description?: string;
|
|
1203
1203
|
/**
|
|
1204
|
-
* @public
|
|
1205
1204
|
* <p>The time that the experiment template was created.</p>
|
|
1205
|
+
* @public
|
|
1206
1206
|
*/
|
|
1207
1207
|
creationTime?: Date;
|
|
1208
1208
|
/**
|
|
1209
|
-
* @public
|
|
1210
1209
|
* <p>The time that the experiment template was last updated.</p>
|
|
1210
|
+
* @public
|
|
1211
1211
|
*/
|
|
1212
1212
|
lastUpdateTime?: Date;
|
|
1213
1213
|
/**
|
|
1214
|
-
* @public
|
|
1215
1214
|
* <p>The tags for the experiment template.</p>
|
|
1215
|
+
* @public
|
|
1216
1216
|
*/
|
|
1217
1217
|
tags?: Record<string, string>;
|
|
1218
1218
|
}
|
|
@@ -1221,8 +1221,8 @@ export interface ExperimentTemplateSummary {
|
|
|
1221
1221
|
*/
|
|
1222
1222
|
export interface GetActionRequest {
|
|
1223
1223
|
/**
|
|
1224
|
-
* @public
|
|
1225
1224
|
* <p>The ID of the action.</p>
|
|
1225
|
+
* @public
|
|
1226
1226
|
*/
|
|
1227
1227
|
id: string | undefined;
|
|
1228
1228
|
}
|
|
@@ -1231,8 +1231,8 @@ export interface GetActionRequest {
|
|
|
1231
1231
|
*/
|
|
1232
1232
|
export interface GetActionResponse {
|
|
1233
1233
|
/**
|
|
1234
|
-
* @public
|
|
1235
1234
|
* <p>Information about the action.</p>
|
|
1235
|
+
* @public
|
|
1236
1236
|
*/
|
|
1237
1237
|
action?: Action;
|
|
1238
1238
|
}
|
|
@@ -1241,8 +1241,8 @@ export interface GetActionResponse {
|
|
|
1241
1241
|
*/
|
|
1242
1242
|
export interface GetExperimentRequest {
|
|
1243
1243
|
/**
|
|
1244
|
-
* @public
|
|
1245
1244
|
* <p>The ID of the experiment.</p>
|
|
1245
|
+
* @public
|
|
1246
1246
|
*/
|
|
1247
1247
|
id: string | undefined;
|
|
1248
1248
|
}
|
|
@@ -1251,8 +1251,8 @@ export interface GetExperimentRequest {
|
|
|
1251
1251
|
*/
|
|
1252
1252
|
export interface GetExperimentResponse {
|
|
1253
1253
|
/**
|
|
1254
|
-
* @public
|
|
1255
1254
|
* <p>Information about the experiment.</p>
|
|
1255
|
+
* @public
|
|
1256
1256
|
*/
|
|
1257
1257
|
experiment?: Experiment;
|
|
1258
1258
|
}
|
|
@@ -1261,13 +1261,13 @@ export interface GetExperimentResponse {
|
|
|
1261
1261
|
*/
|
|
1262
1262
|
export interface GetExperimentTargetAccountConfigurationRequest {
|
|
1263
1263
|
/**
|
|
1264
|
-
* @public
|
|
1265
1264
|
* <p>The ID of the experiment.</p>
|
|
1265
|
+
* @public
|
|
1266
1266
|
*/
|
|
1267
1267
|
experimentId: string | undefined;
|
|
1268
1268
|
/**
|
|
1269
|
-
* @public
|
|
1270
1269
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1270
|
+
* @public
|
|
1271
1271
|
*/
|
|
1272
1272
|
accountId: string | undefined;
|
|
1273
1273
|
}
|
|
@@ -1276,8 +1276,8 @@ export interface GetExperimentTargetAccountConfigurationRequest {
|
|
|
1276
1276
|
*/
|
|
1277
1277
|
export interface GetExperimentTargetAccountConfigurationResponse {
|
|
1278
1278
|
/**
|
|
1279
|
-
* @public
|
|
1280
1279
|
* <p>Information about the target account configuration.</p>
|
|
1280
|
+
* @public
|
|
1281
1281
|
*/
|
|
1282
1282
|
targetAccountConfiguration?: ExperimentTargetAccountConfiguration;
|
|
1283
1283
|
}
|
|
@@ -1286,8 +1286,8 @@ export interface GetExperimentTargetAccountConfigurationResponse {
|
|
|
1286
1286
|
*/
|
|
1287
1287
|
export interface GetExperimentTemplateRequest {
|
|
1288
1288
|
/**
|
|
1289
|
-
* @public
|
|
1290
1289
|
* <p>The ID of the experiment template.</p>
|
|
1290
|
+
* @public
|
|
1291
1291
|
*/
|
|
1292
1292
|
id: string | undefined;
|
|
1293
1293
|
}
|
|
@@ -1296,8 +1296,8 @@ export interface GetExperimentTemplateRequest {
|
|
|
1296
1296
|
*/
|
|
1297
1297
|
export interface GetExperimentTemplateResponse {
|
|
1298
1298
|
/**
|
|
1299
|
-
* @public
|
|
1300
1299
|
* <p>Information about the experiment template.</p>
|
|
1300
|
+
* @public
|
|
1301
1301
|
*/
|
|
1302
1302
|
experimentTemplate?: ExperimentTemplate;
|
|
1303
1303
|
}
|
|
@@ -1306,13 +1306,13 @@ export interface GetExperimentTemplateResponse {
|
|
|
1306
1306
|
*/
|
|
1307
1307
|
export interface GetTargetAccountConfigurationRequest {
|
|
1308
1308
|
/**
|
|
1309
|
-
* @public
|
|
1310
1309
|
* <p>The ID of the experiment template.</p>
|
|
1310
|
+
* @public
|
|
1311
1311
|
*/
|
|
1312
1312
|
experimentTemplateId: string | undefined;
|
|
1313
1313
|
/**
|
|
1314
|
-
* @public
|
|
1315
1314
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1315
|
+
* @public
|
|
1316
1316
|
*/
|
|
1317
1317
|
accountId: string | undefined;
|
|
1318
1318
|
}
|
|
@@ -1321,8 +1321,8 @@ export interface GetTargetAccountConfigurationRequest {
|
|
|
1321
1321
|
*/
|
|
1322
1322
|
export interface GetTargetAccountConfigurationResponse {
|
|
1323
1323
|
/**
|
|
1324
|
-
* @public
|
|
1325
1324
|
* <p>Information about the target account configuration.</p>
|
|
1325
|
+
* @public
|
|
1326
1326
|
*/
|
|
1327
1327
|
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
1328
1328
|
}
|
|
@@ -1331,46 +1331,46 @@ export interface GetTargetAccountConfigurationResponse {
|
|
|
1331
1331
|
*/
|
|
1332
1332
|
export interface GetTargetResourceTypeRequest {
|
|
1333
1333
|
/**
|
|
1334
|
-
* @public
|
|
1335
1334
|
* <p>The resource type.</p>
|
|
1335
|
+
* @public
|
|
1336
1336
|
*/
|
|
1337
1337
|
resourceType: string | undefined;
|
|
1338
1338
|
}
|
|
1339
1339
|
/**
|
|
1340
|
-
* @public
|
|
1341
1340
|
* <p>Describes the parameters for a resource type. Use parameters to determine which tasks are
|
|
1342
1341
|
* identified during target resolution.</p>
|
|
1342
|
+
* @public
|
|
1343
1343
|
*/
|
|
1344
1344
|
export interface TargetResourceTypeParameter {
|
|
1345
1345
|
/**
|
|
1346
|
-
* @public
|
|
1347
1346
|
* <p>A description of the parameter.</p>
|
|
1347
|
+
* @public
|
|
1348
1348
|
*/
|
|
1349
1349
|
description?: string;
|
|
1350
1350
|
/**
|
|
1351
|
-
* @public
|
|
1352
1351
|
* <p>Indicates whether the parameter is required.</p>
|
|
1352
|
+
* @public
|
|
1353
1353
|
*/
|
|
1354
1354
|
required?: boolean;
|
|
1355
1355
|
}
|
|
1356
1356
|
/**
|
|
1357
|
-
* @public
|
|
1358
1357
|
* <p>Describes a resource type.</p>
|
|
1358
|
+
* @public
|
|
1359
1359
|
*/
|
|
1360
1360
|
export interface TargetResourceType {
|
|
1361
1361
|
/**
|
|
1362
|
-
* @public
|
|
1363
1362
|
* <p>The resource type.</p>
|
|
1363
|
+
* @public
|
|
1364
1364
|
*/
|
|
1365
1365
|
resourceType?: string;
|
|
1366
1366
|
/**
|
|
1367
|
-
* @public
|
|
1368
1367
|
* <p>A description of the resource type.</p>
|
|
1368
|
+
* @public
|
|
1369
1369
|
*/
|
|
1370
1370
|
description?: string;
|
|
1371
1371
|
/**
|
|
1372
|
-
* @public
|
|
1373
1372
|
* <p>The parameters for the resource type.</p>
|
|
1373
|
+
* @public
|
|
1374
1374
|
*/
|
|
1375
1375
|
parameters?: Record<string, TargetResourceTypeParameter>;
|
|
1376
1376
|
}
|
|
@@ -1379,8 +1379,8 @@ export interface TargetResourceType {
|
|
|
1379
1379
|
*/
|
|
1380
1380
|
export interface GetTargetResourceTypeResponse {
|
|
1381
1381
|
/**
|
|
1382
|
-
* @public
|
|
1383
1382
|
* <p>Information about the resource type.</p>
|
|
1383
|
+
* @public
|
|
1384
1384
|
*/
|
|
1385
1385
|
targetResourceType?: TargetResourceType;
|
|
1386
1386
|
}
|
|
@@ -1389,13 +1389,13 @@ export interface GetTargetResourceTypeResponse {
|
|
|
1389
1389
|
*/
|
|
1390
1390
|
export interface ListActionsRequest {
|
|
1391
1391
|
/**
|
|
1392
|
-
* @public
|
|
1393
1392
|
* <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>
|
|
1393
|
+
* @public
|
|
1394
1394
|
*/
|
|
1395
1395
|
maxResults?: number;
|
|
1396
1396
|
/**
|
|
1397
|
-
* @public
|
|
1398
1397
|
* <p>The token for the next page of results.</p>
|
|
1398
|
+
* @public
|
|
1399
1399
|
*/
|
|
1400
1400
|
nextToken?: string;
|
|
1401
1401
|
}
|
|
@@ -1404,13 +1404,13 @@ export interface ListActionsRequest {
|
|
|
1404
1404
|
*/
|
|
1405
1405
|
export interface ListActionsResponse {
|
|
1406
1406
|
/**
|
|
1407
|
-
* @public
|
|
1408
1407
|
* <p>The actions.</p>
|
|
1408
|
+
* @public
|
|
1409
1409
|
*/
|
|
1410
1410
|
actions?: ActionSummary[];
|
|
1411
1411
|
/**
|
|
1412
|
-
* @public
|
|
1413
1412
|
* <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>
|
|
1413
|
+
* @public
|
|
1414
1414
|
*/
|
|
1415
1415
|
nextToken?: string;
|
|
1416
1416
|
}
|
|
@@ -1419,45 +1419,45 @@ export interface ListActionsResponse {
|
|
|
1419
1419
|
*/
|
|
1420
1420
|
export interface ListExperimentResolvedTargetsRequest {
|
|
1421
1421
|
/**
|
|
1422
|
-
* @public
|
|
1423
1422
|
* <p>The ID of the experiment.</p>
|
|
1423
|
+
* @public
|
|
1424
1424
|
*/
|
|
1425
1425
|
experimentId: string | undefined;
|
|
1426
1426
|
/**
|
|
1427
|
-
* @public
|
|
1428
1427
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining results,
|
|
1429
1428
|
* make another call with the returned nextToken value.</p>
|
|
1429
|
+
* @public
|
|
1430
1430
|
*/
|
|
1431
1431
|
maxResults?: number;
|
|
1432
1432
|
/**
|
|
1433
|
-
* @public
|
|
1434
1433
|
* <p>The token for the next page of results.</p>
|
|
1434
|
+
* @public
|
|
1435
1435
|
*/
|
|
1436
1436
|
nextToken?: string;
|
|
1437
1437
|
/**
|
|
1438
|
-
* @public
|
|
1439
1438
|
* <p>The name of the target.</p>
|
|
1439
|
+
* @public
|
|
1440
1440
|
*/
|
|
1441
1441
|
targetName?: string;
|
|
1442
1442
|
}
|
|
1443
1443
|
/**
|
|
1444
|
-
* @public
|
|
1445
1444
|
* <p>Describes a resolved target.</p>
|
|
1445
|
+
* @public
|
|
1446
1446
|
*/
|
|
1447
1447
|
export interface ResolvedTarget {
|
|
1448
1448
|
/**
|
|
1449
|
-
* @public
|
|
1450
1449
|
* <p>The resource type of the target.</p>
|
|
1450
|
+
* @public
|
|
1451
1451
|
*/
|
|
1452
1452
|
resourceType?: string;
|
|
1453
1453
|
/**
|
|
1454
|
-
* @public
|
|
1455
1454
|
* <p>The name of the target.</p>
|
|
1455
|
+
* @public
|
|
1456
1456
|
*/
|
|
1457
1457
|
targetName?: string;
|
|
1458
1458
|
/**
|
|
1459
|
-
* @public
|
|
1460
1459
|
* <p>Information about the target.</p>
|
|
1460
|
+
* @public
|
|
1461
1461
|
*/
|
|
1462
1462
|
targetInformation?: Record<string, string>;
|
|
1463
1463
|
}
|
|
@@ -1466,14 +1466,14 @@ export interface ResolvedTarget {
|
|
|
1466
1466
|
*/
|
|
1467
1467
|
export interface ListExperimentResolvedTargetsResponse {
|
|
1468
1468
|
/**
|
|
1469
|
-
* @public
|
|
1470
1469
|
* <p>The resolved targets.</p>
|
|
1470
|
+
* @public
|
|
1471
1471
|
*/
|
|
1472
1472
|
resolvedTargets?: ResolvedTarget[];
|
|
1473
1473
|
/**
|
|
1474
|
-
* @public
|
|
1475
1474
|
* <p>The token to use to retrieve the next page of results.
|
|
1476
1475
|
* This value is null when there are no more results to return.</p>
|
|
1476
|
+
* @public
|
|
1477
1477
|
*/
|
|
1478
1478
|
nextToken?: string;
|
|
1479
1479
|
}
|
|
@@ -1482,18 +1482,18 @@ export interface ListExperimentResolvedTargetsResponse {
|
|
|
1482
1482
|
*/
|
|
1483
1483
|
export interface ListExperimentsRequest {
|
|
1484
1484
|
/**
|
|
1485
|
-
* @public
|
|
1486
1485
|
* <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>
|
|
1486
|
+
* @public
|
|
1487
1487
|
*/
|
|
1488
1488
|
maxResults?: number;
|
|
1489
1489
|
/**
|
|
1490
|
-
* @public
|
|
1491
1490
|
* <p>The token for the next page of results.</p>
|
|
1491
|
+
* @public
|
|
1492
1492
|
*/
|
|
1493
1493
|
nextToken?: string;
|
|
1494
1494
|
/**
|
|
1495
|
-
* @public
|
|
1496
1495
|
* <p>The ID of the experiment template.</p>
|
|
1496
|
+
* @public
|
|
1497
1497
|
*/
|
|
1498
1498
|
experimentTemplateId?: string;
|
|
1499
1499
|
}
|
|
@@ -1502,13 +1502,13 @@ export interface ListExperimentsRequest {
|
|
|
1502
1502
|
*/
|
|
1503
1503
|
export interface ListExperimentsResponse {
|
|
1504
1504
|
/**
|
|
1505
|
-
* @public
|
|
1506
1505
|
* <p>The experiments.</p>
|
|
1506
|
+
* @public
|
|
1507
1507
|
*/
|
|
1508
1508
|
experiments?: ExperimentSummary[];
|
|
1509
1509
|
/**
|
|
1510
|
-
* @public
|
|
1511
1510
|
* <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>
|
|
1511
|
+
* @public
|
|
1512
1512
|
*/
|
|
1513
1513
|
nextToken?: string;
|
|
1514
1514
|
}
|
|
@@ -1517,13 +1517,13 @@ export interface ListExperimentsResponse {
|
|
|
1517
1517
|
*/
|
|
1518
1518
|
export interface ListExperimentTargetAccountConfigurationsRequest {
|
|
1519
1519
|
/**
|
|
1520
|
-
* @public
|
|
1521
1520
|
* <p>The ID of the experiment.</p>
|
|
1521
|
+
* @public
|
|
1522
1522
|
*/
|
|
1523
1523
|
experimentId: string | undefined;
|
|
1524
1524
|
/**
|
|
1525
|
-
* @public
|
|
1526
1525
|
* <p>The token for the next page of results.</p>
|
|
1526
|
+
* @public
|
|
1527
1527
|
*/
|
|
1528
1528
|
nextToken?: string;
|
|
1529
1529
|
}
|
|
@@ -1532,14 +1532,14 @@ export interface ListExperimentTargetAccountConfigurationsRequest {
|
|
|
1532
1532
|
*/
|
|
1533
1533
|
export interface ListExperimentTargetAccountConfigurationsResponse {
|
|
1534
1534
|
/**
|
|
1535
|
-
* @public
|
|
1536
1535
|
* <p>The target account configurations.</p>
|
|
1536
|
+
* @public
|
|
1537
1537
|
*/
|
|
1538
1538
|
targetAccountConfigurations?: ExperimentTargetAccountConfigurationSummary[];
|
|
1539
1539
|
/**
|
|
1540
|
-
* @public
|
|
1541
1540
|
* <p>The token to use to retrieve the next page of results.
|
|
1542
1541
|
* This value is null when there are no more results to return.</p>
|
|
1542
|
+
* @public
|
|
1543
1543
|
*/
|
|
1544
1544
|
nextToken?: string;
|
|
1545
1545
|
}
|
|
@@ -1548,13 +1548,13 @@ export interface ListExperimentTargetAccountConfigurationsResponse {
|
|
|
1548
1548
|
*/
|
|
1549
1549
|
export interface ListExperimentTemplatesRequest {
|
|
1550
1550
|
/**
|
|
1551
|
-
* @public
|
|
1552
1551
|
* <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>
|
|
1552
|
+
* @public
|
|
1553
1553
|
*/
|
|
1554
1554
|
maxResults?: number;
|
|
1555
1555
|
/**
|
|
1556
|
-
* @public
|
|
1557
1556
|
* <p>The token for the next page of results.</p>
|
|
1557
|
+
* @public
|
|
1558
1558
|
*/
|
|
1559
1559
|
nextToken?: string;
|
|
1560
1560
|
}
|
|
@@ -1563,13 +1563,13 @@ export interface ListExperimentTemplatesRequest {
|
|
|
1563
1563
|
*/
|
|
1564
1564
|
export interface ListExperimentTemplatesResponse {
|
|
1565
1565
|
/**
|
|
1566
|
-
* @public
|
|
1567
1566
|
* <p>The experiment templates.</p>
|
|
1567
|
+
* @public
|
|
1568
1568
|
*/
|
|
1569
1569
|
experimentTemplates?: ExperimentTemplateSummary[];
|
|
1570
1570
|
/**
|
|
1571
|
-
* @public
|
|
1572
1571
|
* <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>
|
|
1572
|
+
* @public
|
|
1573
1573
|
*/
|
|
1574
1574
|
nextToken?: string;
|
|
1575
1575
|
}
|
|
@@ -1578,8 +1578,8 @@ export interface ListExperimentTemplatesResponse {
|
|
|
1578
1578
|
*/
|
|
1579
1579
|
export interface ListTagsForResourceRequest {
|
|
1580
1580
|
/**
|
|
1581
|
-
* @public
|
|
1582
1581
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
1582
|
+
* @public
|
|
1583
1583
|
*/
|
|
1584
1584
|
resourceArn: string | undefined;
|
|
1585
1585
|
}
|
|
@@ -1588,8 +1588,8 @@ export interface ListTagsForResourceRequest {
|
|
|
1588
1588
|
*/
|
|
1589
1589
|
export interface ListTagsForResourceResponse {
|
|
1590
1590
|
/**
|
|
1591
|
-
* @public
|
|
1592
1591
|
* <p>The tags for the resource.</p>
|
|
1592
|
+
* @public
|
|
1593
1593
|
*/
|
|
1594
1594
|
tags?: Record<string, string>;
|
|
1595
1595
|
}
|
|
@@ -1598,40 +1598,40 @@ export interface ListTagsForResourceResponse {
|
|
|
1598
1598
|
*/
|
|
1599
1599
|
export interface ListTargetAccountConfigurationsRequest {
|
|
1600
1600
|
/**
|
|
1601
|
-
* @public
|
|
1602
1601
|
* <p>The ID of the experiment template.</p>
|
|
1602
|
+
* @public
|
|
1603
1603
|
*/
|
|
1604
1604
|
experimentTemplateId: string | undefined;
|
|
1605
1605
|
/**
|
|
1606
|
-
* @public
|
|
1607
1606
|
* <p>The maximum number of results to return with a single call. To retrieve the remaining results,
|
|
1608
1607
|
* make another call with the returned nextToken value.</p>
|
|
1608
|
+
* @public
|
|
1609
1609
|
*/
|
|
1610
1610
|
maxResults?: number;
|
|
1611
1611
|
/**
|
|
1612
|
-
* @public
|
|
1613
1612
|
* <p>The token for the next page of results.</p>
|
|
1613
|
+
* @public
|
|
1614
1614
|
*/
|
|
1615
1615
|
nextToken?: string;
|
|
1616
1616
|
}
|
|
1617
1617
|
/**
|
|
1618
|
-
* @public
|
|
1619
1618
|
* <p>Provides a summary of a target account configuration.</p>
|
|
1619
|
+
* @public
|
|
1620
1620
|
*/
|
|
1621
1621
|
export interface TargetAccountConfigurationSummary {
|
|
1622
1622
|
/**
|
|
1623
|
-
* @public
|
|
1624
1623
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
1624
|
+
* @public
|
|
1625
1625
|
*/
|
|
1626
1626
|
roleArn?: string;
|
|
1627
1627
|
/**
|
|
1628
|
-
* @public
|
|
1629
1628
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1629
|
+
* @public
|
|
1630
1630
|
*/
|
|
1631
1631
|
accountId?: string;
|
|
1632
1632
|
/**
|
|
1633
|
-
* @public
|
|
1634
1633
|
* <p>The description of the target account.</p>
|
|
1634
|
+
* @public
|
|
1635
1635
|
*/
|
|
1636
1636
|
description?: string;
|
|
1637
1637
|
}
|
|
@@ -1640,14 +1640,14 @@ export interface TargetAccountConfigurationSummary {
|
|
|
1640
1640
|
*/
|
|
1641
1641
|
export interface ListTargetAccountConfigurationsResponse {
|
|
1642
1642
|
/**
|
|
1643
|
-
* @public
|
|
1644
1643
|
* <p>The target account configurations.</p>
|
|
1644
|
+
* @public
|
|
1645
1645
|
*/
|
|
1646
1646
|
targetAccountConfigurations?: TargetAccountConfigurationSummary[];
|
|
1647
1647
|
/**
|
|
1648
|
-
* @public
|
|
1649
1648
|
* <p>The token to use to retrieve the next page of results.
|
|
1650
1649
|
* This value is null when there are no more results to return.</p>
|
|
1650
|
+
* @public
|
|
1651
1651
|
*/
|
|
1652
1652
|
nextToken?: string;
|
|
1653
1653
|
}
|
|
@@ -1656,29 +1656,29 @@ export interface ListTargetAccountConfigurationsResponse {
|
|
|
1656
1656
|
*/
|
|
1657
1657
|
export interface ListTargetResourceTypesRequest {
|
|
1658
1658
|
/**
|
|
1659
|
-
* @public
|
|
1660
1659
|
* <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>
|
|
1660
|
+
* @public
|
|
1661
1661
|
*/
|
|
1662
1662
|
maxResults?: number;
|
|
1663
1663
|
/**
|
|
1664
|
-
* @public
|
|
1665
1664
|
* <p>The token for the next page of results.</p>
|
|
1665
|
+
* @public
|
|
1666
1666
|
*/
|
|
1667
1667
|
nextToken?: string;
|
|
1668
1668
|
}
|
|
1669
1669
|
/**
|
|
1670
|
-
* @public
|
|
1671
1670
|
* <p>Describes a resource type.</p>
|
|
1671
|
+
* @public
|
|
1672
1672
|
*/
|
|
1673
1673
|
export interface TargetResourceTypeSummary {
|
|
1674
1674
|
/**
|
|
1675
|
-
* @public
|
|
1676
1675
|
* <p>The resource type.</p>
|
|
1676
|
+
* @public
|
|
1677
1677
|
*/
|
|
1678
1678
|
resourceType?: string;
|
|
1679
1679
|
/**
|
|
1680
|
-
* @public
|
|
1681
1680
|
* <p>A description of the resource type.</p>
|
|
1681
|
+
* @public
|
|
1682
1682
|
*/
|
|
1683
1683
|
description?: string;
|
|
1684
1684
|
}
|
|
@@ -1687,24 +1687,24 @@ export interface TargetResourceTypeSummary {
|
|
|
1687
1687
|
*/
|
|
1688
1688
|
export interface ListTargetResourceTypesResponse {
|
|
1689
1689
|
/**
|
|
1690
|
-
* @public
|
|
1691
1690
|
* <p>The target resource types.</p>
|
|
1691
|
+
* @public
|
|
1692
1692
|
*/
|
|
1693
1693
|
targetResourceTypes?: TargetResourceTypeSummary[];
|
|
1694
1694
|
/**
|
|
1695
|
-
* @public
|
|
1696
1695
|
* <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>
|
|
1696
|
+
* @public
|
|
1697
1697
|
*/
|
|
1698
1698
|
nextToken?: string;
|
|
1699
1699
|
}
|
|
1700
1700
|
/**
|
|
1701
|
-
* @public
|
|
1702
1701
|
* <p>Specifies experiment options for running an experiment.</p>
|
|
1702
|
+
* @public
|
|
1703
1703
|
*/
|
|
1704
1704
|
export interface StartExperimentExperimentOptionsInput {
|
|
1705
1705
|
/**
|
|
1706
|
-
* @public
|
|
1707
1706
|
* <p>Specifies the actions mode for experiment options.</p>
|
|
1707
|
+
* @public
|
|
1708
1708
|
*/
|
|
1709
1709
|
actionsMode?: ActionsMode;
|
|
1710
1710
|
}
|
|
@@ -1713,23 +1713,23 @@ export interface StartExperimentExperimentOptionsInput {
|
|
|
1713
1713
|
*/
|
|
1714
1714
|
export interface StartExperimentRequest {
|
|
1715
1715
|
/**
|
|
1716
|
-
* @public
|
|
1717
1716
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
1717
|
+
* @public
|
|
1718
1718
|
*/
|
|
1719
1719
|
clientToken?: string;
|
|
1720
1720
|
/**
|
|
1721
|
-
* @public
|
|
1722
1721
|
* <p>The ID of the experiment template.</p>
|
|
1722
|
+
* @public
|
|
1723
1723
|
*/
|
|
1724
1724
|
experimentTemplateId: string | undefined;
|
|
1725
1725
|
/**
|
|
1726
|
-
* @public
|
|
1727
1726
|
* <p>The experiment options for running the experiment.</p>
|
|
1727
|
+
* @public
|
|
1728
1728
|
*/
|
|
1729
1729
|
experimentOptions?: StartExperimentExperimentOptionsInput;
|
|
1730
1730
|
/**
|
|
1731
|
-
* @public
|
|
1732
1731
|
* <p>The tags to apply to the experiment.</p>
|
|
1732
|
+
* @public
|
|
1733
1733
|
*/
|
|
1734
1734
|
tags?: Record<string, string>;
|
|
1735
1735
|
}
|
|
@@ -1738,8 +1738,8 @@ export interface StartExperimentRequest {
|
|
|
1738
1738
|
*/
|
|
1739
1739
|
export interface StartExperimentResponse {
|
|
1740
1740
|
/**
|
|
1741
|
-
* @public
|
|
1742
1741
|
* <p>Information about the experiment.</p>
|
|
1742
|
+
* @public
|
|
1743
1743
|
*/
|
|
1744
1744
|
experiment?: Experiment;
|
|
1745
1745
|
}
|
|
@@ -1748,8 +1748,8 @@ export interface StartExperimentResponse {
|
|
|
1748
1748
|
*/
|
|
1749
1749
|
export interface StopExperimentRequest {
|
|
1750
1750
|
/**
|
|
1751
|
-
* @public
|
|
1752
1751
|
* <p>The ID of the experiment.</p>
|
|
1752
|
+
* @public
|
|
1753
1753
|
*/
|
|
1754
1754
|
id: string | undefined;
|
|
1755
1755
|
}
|
|
@@ -1758,8 +1758,8 @@ export interface StopExperimentRequest {
|
|
|
1758
1758
|
*/
|
|
1759
1759
|
export interface StopExperimentResponse {
|
|
1760
1760
|
/**
|
|
1761
|
-
* @public
|
|
1762
1761
|
* <p>Information about the experiment.</p>
|
|
1762
|
+
* @public
|
|
1763
1763
|
*/
|
|
1764
1764
|
experiment?: Experiment;
|
|
1765
1765
|
}
|
|
@@ -1768,13 +1768,13 @@ export interface StopExperimentResponse {
|
|
|
1768
1768
|
*/
|
|
1769
1769
|
export interface TagResourceRequest {
|
|
1770
1770
|
/**
|
|
1771
|
-
* @public
|
|
1772
1771
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
1772
|
+
* @public
|
|
1773
1773
|
*/
|
|
1774
1774
|
resourceArn: string | undefined;
|
|
1775
1775
|
/**
|
|
1776
|
-
* @public
|
|
1777
1776
|
* <p>The tags for the resource.</p>
|
|
1777
|
+
* @public
|
|
1778
1778
|
*/
|
|
1779
1779
|
tags: Record<string, string> | undefined;
|
|
1780
1780
|
}
|
|
@@ -1788,13 +1788,13 @@ export interface TagResourceResponse {
|
|
|
1788
1788
|
*/
|
|
1789
1789
|
export interface UntagResourceRequest {
|
|
1790
1790
|
/**
|
|
1791
|
-
* @public
|
|
1792
1791
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
1792
|
+
* @public
|
|
1793
1793
|
*/
|
|
1794
1794
|
resourceArn: string | undefined;
|
|
1795
1795
|
/**
|
|
1796
|
-
* @public
|
|
1797
1796
|
* <p>The tag keys to remove.</p>
|
|
1797
|
+
* @public
|
|
1798
1798
|
*/
|
|
1799
1799
|
tagKeys?: string[];
|
|
1800
1800
|
}
|
|
@@ -1804,119 +1804,119 @@ export interface UntagResourceRequest {
|
|
|
1804
1804
|
export interface UntagResourceResponse {
|
|
1805
1805
|
}
|
|
1806
1806
|
/**
|
|
1807
|
-
* @public
|
|
1808
1807
|
* <p>Specifies an action for an experiment template.</p>
|
|
1808
|
+
* @public
|
|
1809
1809
|
*/
|
|
1810
1810
|
export interface UpdateExperimentTemplateActionInputItem {
|
|
1811
1811
|
/**
|
|
1812
|
-
* @public
|
|
1813
1812
|
* <p>The ID of the action.</p>
|
|
1813
|
+
* @public
|
|
1814
1814
|
*/
|
|
1815
1815
|
actionId?: string;
|
|
1816
1816
|
/**
|
|
1817
|
-
* @public
|
|
1818
1817
|
* <p>A description for the action.</p>
|
|
1818
|
+
* @public
|
|
1819
1819
|
*/
|
|
1820
1820
|
description?: string;
|
|
1821
1821
|
/**
|
|
1822
|
-
* @public
|
|
1823
1822
|
* <p>The parameters for the action, if applicable.</p>
|
|
1823
|
+
* @public
|
|
1824
1824
|
*/
|
|
1825
1825
|
parameters?: Record<string, string>;
|
|
1826
1826
|
/**
|
|
1827
|
-
* @public
|
|
1828
1827
|
* <p>The targets for the action.</p>
|
|
1828
|
+
* @public
|
|
1829
1829
|
*/
|
|
1830
1830
|
targets?: Record<string, string>;
|
|
1831
1831
|
/**
|
|
1832
|
-
* @public
|
|
1833
1832
|
* <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>
|
|
1833
|
+
* @public
|
|
1834
1834
|
*/
|
|
1835
1835
|
startAfter?: string[];
|
|
1836
1836
|
}
|
|
1837
1837
|
/**
|
|
1838
|
-
* @public
|
|
1839
1838
|
* <p>Specifies an experiment option for an experiment template.</p>
|
|
1839
|
+
* @public
|
|
1840
1840
|
*/
|
|
1841
1841
|
export interface UpdateExperimentTemplateExperimentOptionsInput {
|
|
1842
1842
|
/**
|
|
1843
|
-
* @public
|
|
1844
1843
|
* <p>The empty target resolution mode of the experiment template.</p>
|
|
1844
|
+
* @public
|
|
1845
1845
|
*/
|
|
1846
1846
|
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
1847
1847
|
}
|
|
1848
1848
|
/**
|
|
1849
|
-
* @public
|
|
1850
1849
|
* <p>Specifies the configuration for experiment logging.</p>
|
|
1850
|
+
* @public
|
|
1851
1851
|
*/
|
|
1852
1852
|
export interface UpdateExperimentTemplateLogConfigurationInput {
|
|
1853
1853
|
/**
|
|
1854
|
-
* @public
|
|
1855
1854
|
* <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
|
|
1855
|
+
* @public
|
|
1856
1856
|
*/
|
|
1857
1857
|
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
1858
1858
|
/**
|
|
1859
|
-
* @public
|
|
1860
1859
|
* <p>The configuration for experiment logging to Amazon S3.</p>
|
|
1860
|
+
* @public
|
|
1861
1861
|
*/
|
|
1862
1862
|
s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
|
|
1863
1863
|
/**
|
|
1864
|
-
* @public
|
|
1865
1864
|
* <p>The schema version.</p>
|
|
1865
|
+
* @public
|
|
1866
1866
|
*/
|
|
1867
1867
|
logSchemaVersion?: number;
|
|
1868
1868
|
}
|
|
1869
1869
|
/**
|
|
1870
|
-
* @public
|
|
1871
1870
|
* <p>Specifies a stop condition for an experiment. You can define a stop condition as a CloudWatch alarm.</p>
|
|
1871
|
+
* @public
|
|
1872
1872
|
*/
|
|
1873
1873
|
export interface UpdateExperimentTemplateStopConditionInput {
|
|
1874
1874
|
/**
|
|
1875
|
-
* @public
|
|
1876
1875
|
* <p>The source for the stop condition. Specify <code>aws:cloudwatch:alarm</code> if the stop
|
|
1877
1876
|
* condition is defined by a CloudWatch alarm. Specify <code>none</code> if there is no stop
|
|
1878
1877
|
* condition.</p>
|
|
1878
|
+
* @public
|
|
1879
1879
|
*/
|
|
1880
1880
|
source: string | undefined;
|
|
1881
1881
|
/**
|
|
1882
|
-
* @public
|
|
1883
1882
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch alarm.</p>
|
|
1883
|
+
* @public
|
|
1884
1884
|
*/
|
|
1885
1885
|
value?: string;
|
|
1886
1886
|
}
|
|
1887
1887
|
/**
|
|
1888
|
-
* @public
|
|
1889
1888
|
* <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>
|
|
1889
|
+
* @public
|
|
1890
1890
|
*/
|
|
1891
1891
|
export interface UpdateExperimentTemplateTargetInput {
|
|
1892
1892
|
/**
|
|
1893
|
-
* @public
|
|
1894
1893
|
* <p>The resource type. The resource type must be supported for the specified action.</p>
|
|
1894
|
+
* @public
|
|
1895
1895
|
*/
|
|
1896
1896
|
resourceType: string | undefined;
|
|
1897
1897
|
/**
|
|
1898
|
-
* @public
|
|
1899
1898
|
* <p>The Amazon Resource Names (ARNs) of the targets.</p>
|
|
1899
|
+
* @public
|
|
1900
1900
|
*/
|
|
1901
1901
|
resourceArns?: string[];
|
|
1902
1902
|
/**
|
|
1903
|
-
* @public
|
|
1904
1903
|
* <p>The tags for the target resources.</p>
|
|
1904
|
+
* @public
|
|
1905
1905
|
*/
|
|
1906
1906
|
resourceTags?: Record<string, string>;
|
|
1907
1907
|
/**
|
|
1908
|
-
* @public
|
|
1909
1908
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
1909
|
+
* @public
|
|
1910
1910
|
*/
|
|
1911
1911
|
filters?: ExperimentTemplateTargetInputFilter[];
|
|
1912
1912
|
/**
|
|
1913
|
-
* @public
|
|
1914
1913
|
* <p>Scopes the identified resources to a specific count or percentage.</p>
|
|
1914
|
+
* @public
|
|
1915
1915
|
*/
|
|
1916
1916
|
selectionMode: string | undefined;
|
|
1917
1917
|
/**
|
|
1918
|
-
* @public
|
|
1919
1918
|
* <p>The resource type parameters.</p>
|
|
1919
|
+
* @public
|
|
1920
1920
|
*/
|
|
1921
1921
|
parameters?: Record<string, string>;
|
|
1922
1922
|
}
|
|
@@ -1925,43 +1925,43 @@ export interface UpdateExperimentTemplateTargetInput {
|
|
|
1925
1925
|
*/
|
|
1926
1926
|
export interface UpdateExperimentTemplateRequest {
|
|
1927
1927
|
/**
|
|
1928
|
-
* @public
|
|
1929
1928
|
* <p>The ID of the experiment template.</p>
|
|
1929
|
+
* @public
|
|
1930
1930
|
*/
|
|
1931
1931
|
id: string | undefined;
|
|
1932
1932
|
/**
|
|
1933
|
-
* @public
|
|
1934
1933
|
* <p>A description for the template.</p>
|
|
1934
|
+
* @public
|
|
1935
1935
|
*/
|
|
1936
1936
|
description?: string;
|
|
1937
1937
|
/**
|
|
1938
|
-
* @public
|
|
1939
1938
|
* <p>The stop conditions for the experiment.</p>
|
|
1939
|
+
* @public
|
|
1940
1940
|
*/
|
|
1941
1941
|
stopConditions?: UpdateExperimentTemplateStopConditionInput[];
|
|
1942
1942
|
/**
|
|
1943
|
-
* @public
|
|
1944
1943
|
* <p>The targets for the experiment.</p>
|
|
1944
|
+
* @public
|
|
1945
1945
|
*/
|
|
1946
1946
|
targets?: Record<string, UpdateExperimentTemplateTargetInput>;
|
|
1947
1947
|
/**
|
|
1948
|
-
* @public
|
|
1949
1948
|
* <p>The actions for the experiment.</p>
|
|
1949
|
+
* @public
|
|
1950
1950
|
*/
|
|
1951
1951
|
actions?: Record<string, UpdateExperimentTemplateActionInputItem>;
|
|
1952
1952
|
/**
|
|
1953
|
-
* @public
|
|
1954
1953
|
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
|
|
1954
|
+
* @public
|
|
1955
1955
|
*/
|
|
1956
1956
|
roleArn?: string;
|
|
1957
1957
|
/**
|
|
1958
|
-
* @public
|
|
1959
1958
|
* <p>The configuration for experiment logging.</p>
|
|
1959
|
+
* @public
|
|
1960
1960
|
*/
|
|
1961
1961
|
logConfiguration?: UpdateExperimentTemplateLogConfigurationInput;
|
|
1962
1962
|
/**
|
|
1963
|
-
* @public
|
|
1964
1963
|
* <p>The experiment options for the experiment template.</p>
|
|
1964
|
+
* @public
|
|
1965
1965
|
*/
|
|
1966
1966
|
experimentOptions?: UpdateExperimentTemplateExperimentOptionsInput;
|
|
1967
1967
|
}
|
|
@@ -1970,8 +1970,8 @@ export interface UpdateExperimentTemplateRequest {
|
|
|
1970
1970
|
*/
|
|
1971
1971
|
export interface UpdateExperimentTemplateResponse {
|
|
1972
1972
|
/**
|
|
1973
|
-
* @public
|
|
1974
1973
|
* <p>Information about the experiment template.</p>
|
|
1974
|
+
* @public
|
|
1975
1975
|
*/
|
|
1976
1976
|
experimentTemplate?: ExperimentTemplate;
|
|
1977
1977
|
}
|
|
@@ -1980,23 +1980,23 @@ export interface UpdateExperimentTemplateResponse {
|
|
|
1980
1980
|
*/
|
|
1981
1981
|
export interface UpdateTargetAccountConfigurationRequest {
|
|
1982
1982
|
/**
|
|
1983
|
-
* @public
|
|
1984
1983
|
* <p>The ID of the experiment template.</p>
|
|
1984
|
+
* @public
|
|
1985
1985
|
*/
|
|
1986
1986
|
experimentTemplateId: string | undefined;
|
|
1987
1987
|
/**
|
|
1988
|
-
* @public
|
|
1989
1988
|
* <p>The Amazon Web Services account ID of the target account.</p>
|
|
1989
|
+
* @public
|
|
1990
1990
|
*/
|
|
1991
1991
|
accountId: string | undefined;
|
|
1992
1992
|
/**
|
|
1993
|
-
* @public
|
|
1994
1993
|
* <p>The Amazon Resource Name (ARN) of an IAM role for the target account.</p>
|
|
1994
|
+
* @public
|
|
1995
1995
|
*/
|
|
1996
1996
|
roleArn?: string;
|
|
1997
1997
|
/**
|
|
1998
|
-
* @public
|
|
1999
1998
|
* <p>The description of the target account.</p>
|
|
1999
|
+
* @public
|
|
2000
2000
|
*/
|
|
2001
2001
|
description?: string;
|
|
2002
2002
|
}
|
|
@@ -2005,8 +2005,8 @@ export interface UpdateTargetAccountConfigurationRequest {
|
|
|
2005
2005
|
*/
|
|
2006
2006
|
export interface UpdateTargetAccountConfigurationResponse {
|
|
2007
2007
|
/**
|
|
2008
|
-
* @public
|
|
2009
2008
|
* <p>Information about the target account configuration.</p>
|
|
2009
|
+
* @public
|
|
2010
2010
|
*/
|
|
2011
2011
|
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
2012
2012
|
}
|