@aws-sdk/client-fis 3.170.0 → 3.178.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/CHANGELOG.md +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Fis.d.ts +0 -16
- package/dist-types/ts3.4/FisClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateExperimentTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteExperimentTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetActionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetExperimentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetExperimentTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetTargetResourceTypeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListExperimentTemplatesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListExperimentsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTargetResourceTypesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartExperimentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopExperimentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateExperimentTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/FisServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -240
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,221 +1,142 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { FisServiceException as __BaseException } from "./FisServiceException";
|
|
3
|
-
|
|
4
3
|
export interface ActionParameter {
|
|
5
4
|
description?: string;
|
|
6
|
-
|
|
7
5
|
required?: boolean;
|
|
8
6
|
}
|
|
9
|
-
|
|
10
7
|
export interface ActionTarget {
|
|
11
8
|
resourceType?: string;
|
|
12
9
|
}
|
|
13
|
-
|
|
14
10
|
export interface Action {
|
|
15
11
|
id?: string;
|
|
16
|
-
|
|
17
12
|
description?: string;
|
|
18
|
-
|
|
19
13
|
parameters?: Record<string, ActionParameter>;
|
|
20
|
-
|
|
21
14
|
targets?: Record<string, ActionTarget>;
|
|
22
|
-
|
|
23
15
|
tags?: Record<string, string>;
|
|
24
16
|
}
|
|
25
|
-
|
|
26
17
|
export interface ActionSummary {
|
|
27
18
|
id?: string;
|
|
28
|
-
|
|
29
19
|
description?: string;
|
|
30
|
-
|
|
31
20
|
targets?: Record<string, ActionTarget>;
|
|
32
|
-
|
|
33
21
|
tags?: Record<string, string>;
|
|
34
22
|
}
|
|
35
|
-
|
|
36
23
|
export declare class ConflictException extends __BaseException {
|
|
37
24
|
readonly name: "ConflictException";
|
|
38
25
|
readonly $fault: "client";
|
|
39
|
-
|
|
40
26
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
41
27
|
}
|
|
42
|
-
|
|
43
28
|
export interface CreateExperimentTemplateActionInput {
|
|
44
29
|
actionId: string | undefined;
|
|
45
|
-
|
|
46
30
|
description?: string;
|
|
47
|
-
|
|
48
31
|
parameters?: Record<string, string>;
|
|
49
|
-
|
|
50
32
|
targets?: Record<string, string>;
|
|
51
|
-
|
|
52
33
|
startAfter?: string[];
|
|
53
34
|
}
|
|
54
|
-
|
|
55
35
|
export interface ExperimentTemplateCloudWatchLogsLogConfigurationInput {
|
|
56
36
|
logGroupArn: string | undefined;
|
|
57
37
|
}
|
|
58
|
-
|
|
59
38
|
export interface ExperimentTemplateS3LogConfigurationInput {
|
|
60
39
|
bucketName: string | undefined;
|
|
61
|
-
|
|
62
40
|
prefix?: string;
|
|
63
41
|
}
|
|
64
|
-
|
|
65
42
|
export interface CreateExperimentTemplateLogConfigurationInput {
|
|
66
43
|
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
67
|
-
|
|
68
44
|
s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
|
|
69
|
-
|
|
70
45
|
logSchemaVersion: number | undefined;
|
|
71
46
|
}
|
|
72
|
-
|
|
73
47
|
export interface CreateExperimentTemplateStopConditionInput {
|
|
74
48
|
source: string | undefined;
|
|
75
|
-
|
|
76
49
|
value?: string;
|
|
77
50
|
}
|
|
78
|
-
|
|
79
51
|
export interface ExperimentTemplateTargetInputFilter {
|
|
80
52
|
path: string | undefined;
|
|
81
|
-
|
|
82
53
|
values: string[] | undefined;
|
|
83
54
|
}
|
|
84
|
-
|
|
85
55
|
export interface CreateExperimentTemplateTargetInput {
|
|
86
56
|
resourceType: string | undefined;
|
|
87
|
-
|
|
88
57
|
resourceArns?: string[];
|
|
89
|
-
|
|
90
58
|
resourceTags?: Record<string, string>;
|
|
91
|
-
|
|
92
59
|
filters?: ExperimentTemplateTargetInputFilter[];
|
|
93
|
-
|
|
94
60
|
selectionMode: string | undefined;
|
|
95
|
-
|
|
96
61
|
parameters?: Record<string, string>;
|
|
97
62
|
}
|
|
98
63
|
export interface CreateExperimentTemplateRequest {
|
|
99
64
|
clientToken?: string;
|
|
100
|
-
|
|
101
65
|
description: string | undefined;
|
|
102
|
-
|
|
103
66
|
stopConditions: CreateExperimentTemplateStopConditionInput[] | undefined;
|
|
104
|
-
|
|
105
67
|
targets?: Record<string, CreateExperimentTemplateTargetInput>;
|
|
106
|
-
|
|
107
68
|
actions: Record<string, CreateExperimentTemplateActionInput> | undefined;
|
|
108
|
-
|
|
109
69
|
roleArn: string | undefined;
|
|
110
|
-
|
|
111
70
|
tags?: Record<string, string>;
|
|
112
|
-
|
|
113
71
|
logConfiguration?: CreateExperimentTemplateLogConfigurationInput;
|
|
114
72
|
}
|
|
115
|
-
|
|
116
73
|
export interface ExperimentTemplateAction {
|
|
117
74
|
actionId?: string;
|
|
118
|
-
|
|
119
75
|
description?: string;
|
|
120
|
-
|
|
121
76
|
parameters?: Record<string, string>;
|
|
122
|
-
|
|
123
77
|
targets?: Record<string, string>;
|
|
124
|
-
|
|
125
78
|
startAfter?: string[];
|
|
126
79
|
}
|
|
127
|
-
|
|
128
80
|
export interface ExperimentTemplateCloudWatchLogsLogConfiguration {
|
|
129
81
|
logGroupArn?: string;
|
|
130
82
|
}
|
|
131
|
-
|
|
132
83
|
export interface ExperimentTemplateS3LogConfiguration {
|
|
133
84
|
bucketName?: string;
|
|
134
|
-
|
|
135
85
|
prefix?: string;
|
|
136
86
|
}
|
|
137
|
-
|
|
138
87
|
export interface ExperimentTemplateLogConfiguration {
|
|
139
88
|
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfiguration;
|
|
140
|
-
|
|
141
89
|
s3Configuration?: ExperimentTemplateS3LogConfiguration;
|
|
142
|
-
|
|
143
90
|
logSchemaVersion?: number;
|
|
144
91
|
}
|
|
145
|
-
|
|
146
92
|
export interface ExperimentTemplateStopCondition {
|
|
147
93
|
source?: string;
|
|
148
|
-
|
|
149
94
|
value?: string;
|
|
150
95
|
}
|
|
151
|
-
|
|
152
96
|
export interface ExperimentTemplateTargetFilter {
|
|
153
97
|
path?: string;
|
|
154
|
-
|
|
155
98
|
values?: string[];
|
|
156
99
|
}
|
|
157
|
-
|
|
158
100
|
export interface ExperimentTemplateTarget {
|
|
159
101
|
resourceType?: string;
|
|
160
|
-
|
|
161
102
|
resourceArns?: string[];
|
|
162
|
-
|
|
163
103
|
resourceTags?: Record<string, string>;
|
|
164
|
-
|
|
165
104
|
filters?: ExperimentTemplateTargetFilter[];
|
|
166
|
-
|
|
167
105
|
selectionMode?: string;
|
|
168
|
-
|
|
169
106
|
parameters?: Record<string, string>;
|
|
170
107
|
}
|
|
171
|
-
|
|
172
108
|
export interface ExperimentTemplate {
|
|
173
109
|
id?: string;
|
|
174
|
-
|
|
175
110
|
description?: string;
|
|
176
|
-
|
|
177
111
|
targets?: Record<string, ExperimentTemplateTarget>;
|
|
178
|
-
|
|
179
112
|
actions?: Record<string, ExperimentTemplateAction>;
|
|
180
|
-
|
|
181
113
|
stopConditions?: ExperimentTemplateStopCondition[];
|
|
182
|
-
|
|
183
114
|
creationTime?: Date;
|
|
184
|
-
|
|
185
115
|
lastUpdateTime?: Date;
|
|
186
|
-
|
|
187
116
|
roleArn?: string;
|
|
188
|
-
|
|
189
117
|
tags?: Record<string, string>;
|
|
190
|
-
|
|
191
118
|
logConfiguration?: ExperimentTemplateLogConfiguration;
|
|
192
119
|
}
|
|
193
120
|
export interface CreateExperimentTemplateResponse {
|
|
194
121
|
experimentTemplate?: ExperimentTemplate;
|
|
195
122
|
}
|
|
196
|
-
|
|
197
123
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
198
124
|
readonly name: "ResourceNotFoundException";
|
|
199
125
|
readonly $fault: "client";
|
|
200
|
-
|
|
201
126
|
constructor(
|
|
202
127
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
203
128
|
);
|
|
204
129
|
}
|
|
205
|
-
|
|
206
130
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
207
131
|
readonly name: "ServiceQuotaExceededException";
|
|
208
132
|
readonly $fault: "client";
|
|
209
|
-
|
|
210
133
|
constructor(
|
|
211
134
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
212
135
|
);
|
|
213
136
|
}
|
|
214
|
-
|
|
215
137
|
export declare class ValidationException extends __BaseException {
|
|
216
138
|
readonly name: "ValidationException";
|
|
217
139
|
readonly $fault: "client";
|
|
218
|
-
|
|
219
140
|
constructor(
|
|
220
141
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
221
142
|
);
|
|
@@ -236,46 +157,30 @@ export declare enum ExperimentActionStatus {
|
|
|
236
157
|
stopped = "stopped",
|
|
237
158
|
stopping = "stopping",
|
|
238
159
|
}
|
|
239
|
-
|
|
240
160
|
export interface ExperimentActionState {
|
|
241
161
|
status?: ExperimentActionStatus | string;
|
|
242
|
-
|
|
243
162
|
reason?: string;
|
|
244
163
|
}
|
|
245
|
-
|
|
246
164
|
export interface ExperimentAction {
|
|
247
165
|
actionId?: string;
|
|
248
|
-
|
|
249
166
|
description?: string;
|
|
250
|
-
|
|
251
167
|
parameters?: Record<string, string>;
|
|
252
|
-
|
|
253
168
|
targets?: Record<string, string>;
|
|
254
|
-
|
|
255
169
|
startAfter?: string[];
|
|
256
|
-
|
|
257
170
|
state?: ExperimentActionState;
|
|
258
|
-
|
|
259
171
|
startTime?: Date;
|
|
260
|
-
|
|
261
172
|
endTime?: Date;
|
|
262
173
|
}
|
|
263
|
-
|
|
264
174
|
export interface ExperimentCloudWatchLogsLogConfiguration {
|
|
265
175
|
logGroupArn?: string;
|
|
266
176
|
}
|
|
267
|
-
|
|
268
177
|
export interface ExperimentS3LogConfiguration {
|
|
269
178
|
bucketName?: string;
|
|
270
|
-
|
|
271
179
|
prefix?: string;
|
|
272
180
|
}
|
|
273
|
-
|
|
274
181
|
export interface ExperimentLogConfiguration {
|
|
275
182
|
cloudWatchLogsConfiguration?: ExperimentCloudWatchLogsLogConfiguration;
|
|
276
|
-
|
|
277
183
|
s3Configuration?: ExperimentS3LogConfiguration;
|
|
278
|
-
|
|
279
184
|
logSchemaVersion?: number;
|
|
280
185
|
}
|
|
281
186
|
export declare enum ExperimentStatus {
|
|
@@ -287,86 +192,52 @@ export declare enum ExperimentStatus {
|
|
|
287
192
|
stopped = "stopped",
|
|
288
193
|
stopping = "stopping",
|
|
289
194
|
}
|
|
290
|
-
|
|
291
195
|
export interface ExperimentState {
|
|
292
196
|
status?: ExperimentStatus | string;
|
|
293
|
-
|
|
294
197
|
reason?: string;
|
|
295
198
|
}
|
|
296
|
-
|
|
297
199
|
export interface ExperimentStopCondition {
|
|
298
200
|
source?: string;
|
|
299
|
-
|
|
300
201
|
value?: string;
|
|
301
202
|
}
|
|
302
|
-
|
|
303
203
|
export interface ExperimentTargetFilter {
|
|
304
204
|
path?: string;
|
|
305
|
-
|
|
306
205
|
values?: string[];
|
|
307
206
|
}
|
|
308
|
-
|
|
309
207
|
export interface ExperimentTarget {
|
|
310
208
|
resourceType?: string;
|
|
311
|
-
|
|
312
209
|
resourceArns?: string[];
|
|
313
|
-
|
|
314
210
|
resourceTags?: Record<string, string>;
|
|
315
|
-
|
|
316
211
|
filters?: ExperimentTargetFilter[];
|
|
317
|
-
|
|
318
212
|
selectionMode?: string;
|
|
319
|
-
|
|
320
213
|
parameters?: Record<string, string>;
|
|
321
214
|
}
|
|
322
|
-
|
|
323
215
|
export interface Experiment {
|
|
324
216
|
id?: string;
|
|
325
|
-
|
|
326
217
|
experimentTemplateId?: string;
|
|
327
|
-
|
|
328
218
|
roleArn?: string;
|
|
329
|
-
|
|
330
219
|
state?: ExperimentState;
|
|
331
|
-
|
|
332
220
|
targets?: Record<string, ExperimentTarget>;
|
|
333
|
-
|
|
334
221
|
actions?: Record<string, ExperimentAction>;
|
|
335
|
-
|
|
336
222
|
stopConditions?: ExperimentStopCondition[];
|
|
337
|
-
|
|
338
223
|
creationTime?: Date;
|
|
339
|
-
|
|
340
224
|
startTime?: Date;
|
|
341
|
-
|
|
342
225
|
endTime?: Date;
|
|
343
|
-
|
|
344
226
|
tags?: Record<string, string>;
|
|
345
|
-
|
|
346
227
|
logConfiguration?: ExperimentLogConfiguration;
|
|
347
228
|
}
|
|
348
|
-
|
|
349
229
|
export interface ExperimentSummary {
|
|
350
230
|
id?: string;
|
|
351
|
-
|
|
352
231
|
experimentTemplateId?: string;
|
|
353
|
-
|
|
354
232
|
state?: ExperimentState;
|
|
355
|
-
|
|
356
233
|
creationTime?: Date;
|
|
357
|
-
|
|
358
234
|
tags?: Record<string, string>;
|
|
359
235
|
}
|
|
360
|
-
|
|
361
236
|
export interface ExperimentTemplateSummary {
|
|
362
237
|
id?: string;
|
|
363
|
-
|
|
364
238
|
description?: string;
|
|
365
|
-
|
|
366
239
|
creationTime?: Date;
|
|
367
|
-
|
|
368
240
|
lastUpdateTime?: Date;
|
|
369
|
-
|
|
370
241
|
tags?: Record<string, string>;
|
|
371
242
|
}
|
|
372
243
|
export interface GetActionRequest {
|
|
@@ -390,18 +261,13 @@ export interface GetExperimentTemplateResponse {
|
|
|
390
261
|
export interface GetTargetResourceTypeRequest {
|
|
391
262
|
resourceType: string | undefined;
|
|
392
263
|
}
|
|
393
|
-
|
|
394
264
|
export interface TargetResourceTypeParameter {
|
|
395
265
|
description?: string;
|
|
396
|
-
|
|
397
266
|
required?: boolean;
|
|
398
267
|
}
|
|
399
|
-
|
|
400
268
|
export interface TargetResourceType {
|
|
401
269
|
resourceType?: string;
|
|
402
|
-
|
|
403
270
|
description?: string;
|
|
404
|
-
|
|
405
271
|
parameters?: Record<string, TargetResourceTypeParameter>;
|
|
406
272
|
}
|
|
407
273
|
export interface GetTargetResourceTypeResponse {
|
|
@@ -409,32 +275,26 @@ export interface GetTargetResourceTypeResponse {
|
|
|
409
275
|
}
|
|
410
276
|
export interface ListActionsRequest {
|
|
411
277
|
maxResults?: number;
|
|
412
|
-
|
|
413
278
|
nextToken?: string;
|
|
414
279
|
}
|
|
415
280
|
export interface ListActionsResponse {
|
|
416
281
|
actions?: ActionSummary[];
|
|
417
|
-
|
|
418
282
|
nextToken?: string;
|
|
419
283
|
}
|
|
420
284
|
export interface ListExperimentsRequest {
|
|
421
285
|
maxResults?: number;
|
|
422
|
-
|
|
423
286
|
nextToken?: string;
|
|
424
287
|
}
|
|
425
288
|
export interface ListExperimentsResponse {
|
|
426
289
|
experiments?: ExperimentSummary[];
|
|
427
|
-
|
|
428
290
|
nextToken?: string;
|
|
429
291
|
}
|
|
430
292
|
export interface ListExperimentTemplatesRequest {
|
|
431
293
|
maxResults?: number;
|
|
432
|
-
|
|
433
294
|
nextToken?: string;
|
|
434
295
|
}
|
|
435
296
|
export interface ListExperimentTemplatesResponse {
|
|
436
297
|
experimentTemplates?: ExperimentTemplateSummary[];
|
|
437
|
-
|
|
438
298
|
nextToken?: string;
|
|
439
299
|
}
|
|
440
300
|
export interface ListTagsForResourceRequest {
|
|
@@ -445,25 +305,19 @@ export interface ListTagsForResourceResponse {
|
|
|
445
305
|
}
|
|
446
306
|
export interface ListTargetResourceTypesRequest {
|
|
447
307
|
maxResults?: number;
|
|
448
|
-
|
|
449
308
|
nextToken?: string;
|
|
450
309
|
}
|
|
451
|
-
|
|
452
310
|
export interface TargetResourceTypeSummary {
|
|
453
311
|
resourceType?: string;
|
|
454
|
-
|
|
455
312
|
description?: string;
|
|
456
313
|
}
|
|
457
314
|
export interface ListTargetResourceTypesResponse {
|
|
458
315
|
targetResourceTypes?: TargetResourceTypeSummary[];
|
|
459
|
-
|
|
460
316
|
nextToken?: string;
|
|
461
317
|
}
|
|
462
318
|
export interface StartExperimentRequest {
|
|
463
319
|
clientToken?: string;
|
|
464
|
-
|
|
465
320
|
experimentTemplateId: string | undefined;
|
|
466
|
-
|
|
467
321
|
tags?: Record<string, string>;
|
|
468
322
|
}
|
|
469
323
|
export interface StartExperimentResponse {
|
|
@@ -477,345 +331,251 @@ export interface StopExperimentResponse {
|
|
|
477
331
|
}
|
|
478
332
|
export interface TagResourceRequest {
|
|
479
333
|
resourceArn: string | undefined;
|
|
480
|
-
|
|
481
334
|
tags: Record<string, string> | undefined;
|
|
482
335
|
}
|
|
483
336
|
export interface TagResourceResponse {}
|
|
484
337
|
export interface UntagResourceRequest {
|
|
485
338
|
resourceArn: string | undefined;
|
|
486
|
-
|
|
487
339
|
tagKeys?: string[];
|
|
488
340
|
}
|
|
489
341
|
export interface UntagResourceResponse {}
|
|
490
|
-
|
|
491
342
|
export interface UpdateExperimentTemplateActionInputItem {
|
|
492
343
|
actionId?: string;
|
|
493
|
-
|
|
494
344
|
description?: string;
|
|
495
|
-
|
|
496
345
|
parameters?: Record<string, string>;
|
|
497
|
-
|
|
498
346
|
targets?: Record<string, string>;
|
|
499
|
-
|
|
500
347
|
startAfter?: string[];
|
|
501
348
|
}
|
|
502
|
-
|
|
503
349
|
export interface UpdateExperimentTemplateLogConfigurationInput {
|
|
504
350
|
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
505
|
-
|
|
506
351
|
s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
|
|
507
|
-
|
|
508
352
|
logSchemaVersion?: number;
|
|
509
353
|
}
|
|
510
|
-
|
|
511
354
|
export interface UpdateExperimentTemplateStopConditionInput {
|
|
512
355
|
source: string | undefined;
|
|
513
|
-
|
|
514
356
|
value?: string;
|
|
515
357
|
}
|
|
516
|
-
|
|
517
358
|
export interface UpdateExperimentTemplateTargetInput {
|
|
518
359
|
resourceType: string | undefined;
|
|
519
|
-
|
|
520
360
|
resourceArns?: string[];
|
|
521
|
-
|
|
522
361
|
resourceTags?: Record<string, string>;
|
|
523
|
-
|
|
524
362
|
filters?: ExperimentTemplateTargetInputFilter[];
|
|
525
|
-
|
|
526
363
|
selectionMode: string | undefined;
|
|
527
|
-
|
|
528
364
|
parameters?: Record<string, string>;
|
|
529
365
|
}
|
|
530
366
|
export interface UpdateExperimentTemplateRequest {
|
|
531
367
|
id: string | undefined;
|
|
532
|
-
|
|
533
368
|
description?: string;
|
|
534
|
-
|
|
535
369
|
stopConditions?: UpdateExperimentTemplateStopConditionInput[];
|
|
536
|
-
|
|
537
370
|
targets?: Record<string, UpdateExperimentTemplateTargetInput>;
|
|
538
|
-
|
|
539
371
|
actions?: Record<string, UpdateExperimentTemplateActionInputItem>;
|
|
540
|
-
|
|
541
372
|
roleArn?: string;
|
|
542
|
-
|
|
543
373
|
logConfiguration?: UpdateExperimentTemplateLogConfigurationInput;
|
|
544
374
|
}
|
|
545
375
|
export interface UpdateExperimentTemplateResponse {
|
|
546
376
|
experimentTemplate?: ExperimentTemplate;
|
|
547
377
|
}
|
|
548
|
-
|
|
549
378
|
export declare const ActionParameterFilterSensitiveLog: (
|
|
550
379
|
obj: ActionParameter
|
|
551
380
|
) => any;
|
|
552
|
-
|
|
553
381
|
export declare const ActionTargetFilterSensitiveLog: (obj: ActionTarget) => any;
|
|
554
|
-
|
|
555
382
|
export declare const ActionFilterSensitiveLog: (obj: Action) => any;
|
|
556
|
-
|
|
557
383
|
export declare const ActionSummaryFilterSensitiveLog: (
|
|
558
384
|
obj: ActionSummary
|
|
559
385
|
) => any;
|
|
560
|
-
|
|
561
386
|
export declare const CreateExperimentTemplateActionInputFilterSensitiveLog: (
|
|
562
387
|
obj: CreateExperimentTemplateActionInput
|
|
563
388
|
) => any;
|
|
564
|
-
|
|
565
389
|
export declare const ExperimentTemplateCloudWatchLogsLogConfigurationInputFilterSensitiveLog: (
|
|
566
390
|
obj: ExperimentTemplateCloudWatchLogsLogConfigurationInput
|
|
567
391
|
) => any;
|
|
568
|
-
|
|
569
392
|
export declare const ExperimentTemplateS3LogConfigurationInputFilterSensitiveLog: (
|
|
570
393
|
obj: ExperimentTemplateS3LogConfigurationInput
|
|
571
394
|
) => any;
|
|
572
|
-
|
|
573
395
|
export declare const CreateExperimentTemplateLogConfigurationInputFilterSensitiveLog: (
|
|
574
396
|
obj: CreateExperimentTemplateLogConfigurationInput
|
|
575
397
|
) => any;
|
|
576
|
-
|
|
577
398
|
export declare const CreateExperimentTemplateStopConditionInputFilterSensitiveLog: (
|
|
578
399
|
obj: CreateExperimentTemplateStopConditionInput
|
|
579
400
|
) => any;
|
|
580
|
-
|
|
581
401
|
export declare const ExperimentTemplateTargetInputFilterFilterSensitiveLog: (
|
|
582
402
|
obj: ExperimentTemplateTargetInputFilter
|
|
583
403
|
) => any;
|
|
584
|
-
|
|
585
404
|
export declare const CreateExperimentTemplateTargetInputFilterSensitiveLog: (
|
|
586
405
|
obj: CreateExperimentTemplateTargetInput
|
|
587
406
|
) => any;
|
|
588
|
-
|
|
589
407
|
export declare const CreateExperimentTemplateRequestFilterSensitiveLog: (
|
|
590
408
|
obj: CreateExperimentTemplateRequest
|
|
591
409
|
) => any;
|
|
592
|
-
|
|
593
410
|
export declare const ExperimentTemplateActionFilterSensitiveLog: (
|
|
594
411
|
obj: ExperimentTemplateAction
|
|
595
412
|
) => any;
|
|
596
|
-
|
|
597
413
|
export declare const ExperimentTemplateCloudWatchLogsLogConfigurationFilterSensitiveLog: (
|
|
598
414
|
obj: ExperimentTemplateCloudWatchLogsLogConfiguration
|
|
599
415
|
) => any;
|
|
600
|
-
|
|
601
416
|
export declare const ExperimentTemplateS3LogConfigurationFilterSensitiveLog: (
|
|
602
417
|
obj: ExperimentTemplateS3LogConfiguration
|
|
603
418
|
) => any;
|
|
604
|
-
|
|
605
419
|
export declare const ExperimentTemplateLogConfigurationFilterSensitiveLog: (
|
|
606
420
|
obj: ExperimentTemplateLogConfiguration
|
|
607
421
|
) => any;
|
|
608
|
-
|
|
609
422
|
export declare const ExperimentTemplateStopConditionFilterSensitiveLog: (
|
|
610
423
|
obj: ExperimentTemplateStopCondition
|
|
611
424
|
) => any;
|
|
612
|
-
|
|
613
425
|
export declare const ExperimentTemplateTargetFilterFilterSensitiveLog: (
|
|
614
426
|
obj: ExperimentTemplateTargetFilter
|
|
615
427
|
) => any;
|
|
616
|
-
|
|
617
428
|
export declare const ExperimentTemplateTargetFilterSensitiveLog: (
|
|
618
429
|
obj: ExperimentTemplateTarget
|
|
619
430
|
) => any;
|
|
620
|
-
|
|
621
431
|
export declare const ExperimentTemplateFilterSensitiveLog: (
|
|
622
432
|
obj: ExperimentTemplate
|
|
623
433
|
) => any;
|
|
624
|
-
|
|
625
434
|
export declare const CreateExperimentTemplateResponseFilterSensitiveLog: (
|
|
626
435
|
obj: CreateExperimentTemplateResponse
|
|
627
436
|
) => any;
|
|
628
|
-
|
|
629
437
|
export declare const DeleteExperimentTemplateRequestFilterSensitiveLog: (
|
|
630
438
|
obj: DeleteExperimentTemplateRequest
|
|
631
439
|
) => any;
|
|
632
|
-
|
|
633
440
|
export declare const DeleteExperimentTemplateResponseFilterSensitiveLog: (
|
|
634
441
|
obj: DeleteExperimentTemplateResponse
|
|
635
442
|
) => any;
|
|
636
|
-
|
|
637
443
|
export declare const ExperimentActionStateFilterSensitiveLog: (
|
|
638
444
|
obj: ExperimentActionState
|
|
639
445
|
) => any;
|
|
640
|
-
|
|
641
446
|
export declare const ExperimentActionFilterSensitiveLog: (
|
|
642
447
|
obj: ExperimentAction
|
|
643
448
|
) => any;
|
|
644
|
-
|
|
645
449
|
export declare const ExperimentCloudWatchLogsLogConfigurationFilterSensitiveLog: (
|
|
646
450
|
obj: ExperimentCloudWatchLogsLogConfiguration
|
|
647
451
|
) => any;
|
|
648
|
-
|
|
649
452
|
export declare const ExperimentS3LogConfigurationFilterSensitiveLog: (
|
|
650
453
|
obj: ExperimentS3LogConfiguration
|
|
651
454
|
) => any;
|
|
652
|
-
|
|
653
455
|
export declare const ExperimentLogConfigurationFilterSensitiveLog: (
|
|
654
456
|
obj: ExperimentLogConfiguration
|
|
655
457
|
) => any;
|
|
656
|
-
|
|
657
458
|
export declare const ExperimentStateFilterSensitiveLog: (
|
|
658
459
|
obj: ExperimentState
|
|
659
460
|
) => any;
|
|
660
|
-
|
|
661
461
|
export declare const ExperimentStopConditionFilterSensitiveLog: (
|
|
662
462
|
obj: ExperimentStopCondition
|
|
663
463
|
) => any;
|
|
664
|
-
|
|
665
464
|
export declare const ExperimentTargetFilterFilterSensitiveLog: (
|
|
666
465
|
obj: ExperimentTargetFilter
|
|
667
466
|
) => any;
|
|
668
|
-
|
|
669
467
|
export declare const ExperimentTargetFilterSensitiveLog: (
|
|
670
468
|
obj: ExperimentTarget
|
|
671
469
|
) => any;
|
|
672
|
-
|
|
673
470
|
export declare const ExperimentFilterSensitiveLog: (obj: Experiment) => any;
|
|
674
|
-
|
|
675
471
|
export declare const ExperimentSummaryFilterSensitiveLog: (
|
|
676
472
|
obj: ExperimentSummary
|
|
677
473
|
) => any;
|
|
678
|
-
|
|
679
474
|
export declare const ExperimentTemplateSummaryFilterSensitiveLog: (
|
|
680
475
|
obj: ExperimentTemplateSummary
|
|
681
476
|
) => any;
|
|
682
|
-
|
|
683
477
|
export declare const GetActionRequestFilterSensitiveLog: (
|
|
684
478
|
obj: GetActionRequest
|
|
685
479
|
) => any;
|
|
686
|
-
|
|
687
480
|
export declare const GetActionResponseFilterSensitiveLog: (
|
|
688
481
|
obj: GetActionResponse
|
|
689
482
|
) => any;
|
|
690
|
-
|
|
691
483
|
export declare const GetExperimentRequestFilterSensitiveLog: (
|
|
692
484
|
obj: GetExperimentRequest
|
|
693
485
|
) => any;
|
|
694
|
-
|
|
695
486
|
export declare const GetExperimentResponseFilterSensitiveLog: (
|
|
696
487
|
obj: GetExperimentResponse
|
|
697
488
|
) => any;
|
|
698
|
-
|
|
699
489
|
export declare const GetExperimentTemplateRequestFilterSensitiveLog: (
|
|
700
490
|
obj: GetExperimentTemplateRequest
|
|
701
491
|
) => any;
|
|
702
|
-
|
|
703
492
|
export declare const GetExperimentTemplateResponseFilterSensitiveLog: (
|
|
704
493
|
obj: GetExperimentTemplateResponse
|
|
705
494
|
) => any;
|
|
706
|
-
|
|
707
495
|
export declare const GetTargetResourceTypeRequestFilterSensitiveLog: (
|
|
708
496
|
obj: GetTargetResourceTypeRequest
|
|
709
497
|
) => any;
|
|
710
|
-
|
|
711
498
|
export declare const TargetResourceTypeParameterFilterSensitiveLog: (
|
|
712
499
|
obj: TargetResourceTypeParameter
|
|
713
500
|
) => any;
|
|
714
|
-
|
|
715
501
|
export declare const TargetResourceTypeFilterSensitiveLog: (
|
|
716
502
|
obj: TargetResourceType
|
|
717
503
|
) => any;
|
|
718
|
-
|
|
719
504
|
export declare const GetTargetResourceTypeResponseFilterSensitiveLog: (
|
|
720
505
|
obj: GetTargetResourceTypeResponse
|
|
721
506
|
) => any;
|
|
722
|
-
|
|
723
507
|
export declare const ListActionsRequestFilterSensitiveLog: (
|
|
724
508
|
obj: ListActionsRequest
|
|
725
509
|
) => any;
|
|
726
|
-
|
|
727
510
|
export declare const ListActionsResponseFilterSensitiveLog: (
|
|
728
511
|
obj: ListActionsResponse
|
|
729
512
|
) => any;
|
|
730
|
-
|
|
731
513
|
export declare const ListExperimentsRequestFilterSensitiveLog: (
|
|
732
514
|
obj: ListExperimentsRequest
|
|
733
515
|
) => any;
|
|
734
|
-
|
|
735
516
|
export declare const ListExperimentsResponseFilterSensitiveLog: (
|
|
736
517
|
obj: ListExperimentsResponse
|
|
737
518
|
) => any;
|
|
738
|
-
|
|
739
519
|
export declare const ListExperimentTemplatesRequestFilterSensitiveLog: (
|
|
740
520
|
obj: ListExperimentTemplatesRequest
|
|
741
521
|
) => any;
|
|
742
|
-
|
|
743
522
|
export declare const ListExperimentTemplatesResponseFilterSensitiveLog: (
|
|
744
523
|
obj: ListExperimentTemplatesResponse
|
|
745
524
|
) => any;
|
|
746
|
-
|
|
747
525
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
748
526
|
obj: ListTagsForResourceRequest
|
|
749
527
|
) => any;
|
|
750
|
-
|
|
751
528
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
752
529
|
obj: ListTagsForResourceResponse
|
|
753
530
|
) => any;
|
|
754
|
-
|
|
755
531
|
export declare const ListTargetResourceTypesRequestFilterSensitiveLog: (
|
|
756
532
|
obj: ListTargetResourceTypesRequest
|
|
757
533
|
) => any;
|
|
758
|
-
|
|
759
534
|
export declare const TargetResourceTypeSummaryFilterSensitiveLog: (
|
|
760
535
|
obj: TargetResourceTypeSummary
|
|
761
536
|
) => any;
|
|
762
|
-
|
|
763
537
|
export declare const ListTargetResourceTypesResponseFilterSensitiveLog: (
|
|
764
538
|
obj: ListTargetResourceTypesResponse
|
|
765
539
|
) => any;
|
|
766
|
-
|
|
767
540
|
export declare const StartExperimentRequestFilterSensitiveLog: (
|
|
768
541
|
obj: StartExperimentRequest
|
|
769
542
|
) => any;
|
|
770
|
-
|
|
771
543
|
export declare const StartExperimentResponseFilterSensitiveLog: (
|
|
772
544
|
obj: StartExperimentResponse
|
|
773
545
|
) => any;
|
|
774
|
-
|
|
775
546
|
export declare const StopExperimentRequestFilterSensitiveLog: (
|
|
776
547
|
obj: StopExperimentRequest
|
|
777
548
|
) => any;
|
|
778
|
-
|
|
779
549
|
export declare const StopExperimentResponseFilterSensitiveLog: (
|
|
780
550
|
obj: StopExperimentResponse
|
|
781
551
|
) => any;
|
|
782
|
-
|
|
783
552
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
784
553
|
obj: TagResourceRequest
|
|
785
554
|
) => any;
|
|
786
|
-
|
|
787
555
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
788
556
|
obj: TagResourceResponse
|
|
789
557
|
) => any;
|
|
790
|
-
|
|
791
558
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
792
559
|
obj: UntagResourceRequest
|
|
793
560
|
) => any;
|
|
794
|
-
|
|
795
561
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
796
562
|
obj: UntagResourceResponse
|
|
797
563
|
) => any;
|
|
798
|
-
|
|
799
564
|
export declare const UpdateExperimentTemplateActionInputItemFilterSensitiveLog: (
|
|
800
565
|
obj: UpdateExperimentTemplateActionInputItem
|
|
801
566
|
) => any;
|
|
802
|
-
|
|
803
567
|
export declare const UpdateExperimentTemplateLogConfigurationInputFilterSensitiveLog: (
|
|
804
568
|
obj: UpdateExperimentTemplateLogConfigurationInput
|
|
805
569
|
) => any;
|
|
806
|
-
|
|
807
570
|
export declare const UpdateExperimentTemplateStopConditionInputFilterSensitiveLog: (
|
|
808
571
|
obj: UpdateExperimentTemplateStopConditionInput
|
|
809
572
|
) => any;
|
|
810
|
-
|
|
811
573
|
export declare const UpdateExperimentTemplateTargetInputFilterSensitiveLog: (
|
|
812
574
|
obj: UpdateExperimentTemplateTargetInput
|
|
813
575
|
) => any;
|
|
814
|
-
|
|
815
576
|
export declare const UpdateExperimentTemplateRequestFilterSensitiveLog: (
|
|
816
577
|
obj: UpdateExperimentTemplateRequest
|
|
817
578
|
) => any;
|
|
818
|
-
|
|
819
579
|
export declare const UpdateExperimentTemplateResponseFilterSensitiveLog: (
|
|
820
580
|
obj: UpdateExperimentTemplateResponse
|
|
821
581
|
) => any;
|