@aws-sdk/client-fis 3.690.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +279 -279
- package/dist-types/ts3.4/models/models_0.d.ts +311 -279
- package/package.json +7 -7
|
@@ -7,19 +7,19 @@ export declare const AccountTargeting: {
|
|
|
7
7
|
export type AccountTargeting =
|
|
8
8
|
(typeof AccountTargeting)[keyof typeof AccountTargeting];
|
|
9
9
|
export interface ActionParameter {
|
|
10
|
-
description?: string;
|
|
11
|
-
required?: boolean;
|
|
10
|
+
description?: string | undefined;
|
|
11
|
+
required?: boolean | undefined;
|
|
12
12
|
}
|
|
13
13
|
export interface ActionTarget {
|
|
14
|
-
resourceType?: string;
|
|
14
|
+
resourceType?: string | undefined;
|
|
15
15
|
}
|
|
16
16
|
export interface Action {
|
|
17
|
-
id?: string;
|
|
18
|
-
arn?: string;
|
|
19
|
-
description?: string;
|
|
20
|
-
parameters?: Record<string, ActionParameter
|
|
21
|
-
targets?: Record<string, ActionTarget
|
|
22
|
-
tags?: Record<string, string
|
|
17
|
+
id?: string | undefined;
|
|
18
|
+
arn?: string | undefined;
|
|
19
|
+
description?: string | undefined;
|
|
20
|
+
parameters?: Record<string, ActionParameter> | undefined;
|
|
21
|
+
targets?: Record<string, ActionTarget> | undefined;
|
|
22
|
+
tags?: Record<string, string> | undefined;
|
|
23
23
|
}
|
|
24
24
|
export declare const ActionsMode: {
|
|
25
25
|
readonly RUN_ALL: "run-all";
|
|
@@ -27,11 +27,11 @@ export declare const ActionsMode: {
|
|
|
27
27
|
};
|
|
28
28
|
export type ActionsMode = (typeof ActionsMode)[keyof typeof ActionsMode];
|
|
29
29
|
export interface ActionSummary {
|
|
30
|
-
id?: string;
|
|
31
|
-
arn?: string;
|
|
32
|
-
description?: string;
|
|
33
|
-
targets?: Record<string, ActionTarget
|
|
34
|
-
tags?: Record<string, string
|
|
30
|
+
id?: string | undefined;
|
|
31
|
+
arn?: string | undefined;
|
|
32
|
+
description?: string | undefined;
|
|
33
|
+
targets?: Record<string, ActionTarget> | undefined;
|
|
34
|
+
tags?: Record<string, string> | undefined;
|
|
35
35
|
}
|
|
36
36
|
export declare class ConflictException extends __BaseException {
|
|
37
37
|
readonly name: "ConflictException";
|
|
@@ -40,10 +40,10 @@ export declare class ConflictException extends __BaseException {
|
|
|
40
40
|
}
|
|
41
41
|
export interface CreateExperimentTemplateActionInput {
|
|
42
42
|
actionId: string | undefined;
|
|
43
|
-
description?: string;
|
|
44
|
-
parameters?: Record<string, string
|
|
45
|
-
targets?: Record<string, string
|
|
46
|
-
startAfter?: string[];
|
|
43
|
+
description?: string | undefined;
|
|
44
|
+
parameters?: Record<string, string> | undefined;
|
|
45
|
+
targets?: Record<string, string> | undefined;
|
|
46
|
+
startAfter?: string[] | undefined;
|
|
47
47
|
}
|
|
48
48
|
export declare const EmptyTargetResolutionMode: {
|
|
49
49
|
readonly FAIL: "fail";
|
|
@@ -52,43 +52,49 @@ export declare const EmptyTargetResolutionMode: {
|
|
|
52
52
|
export type EmptyTargetResolutionMode =
|
|
53
53
|
(typeof EmptyTargetResolutionMode)[keyof typeof EmptyTargetResolutionMode];
|
|
54
54
|
export interface CreateExperimentTemplateExperimentOptionsInput {
|
|
55
|
-
accountTargeting?: AccountTargeting;
|
|
56
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
55
|
+
accountTargeting?: AccountTargeting | undefined;
|
|
56
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
57
57
|
}
|
|
58
58
|
export interface ReportConfigurationCloudWatchDashboardInput {
|
|
59
|
-
dashboardIdentifier?: string;
|
|
59
|
+
dashboardIdentifier?: string | undefined;
|
|
60
60
|
}
|
|
61
61
|
export interface ExperimentTemplateReportConfigurationDataSourcesInput {
|
|
62
|
-
cloudWatchDashboards?:
|
|
62
|
+
cloudWatchDashboards?:
|
|
63
|
+
| ReportConfigurationCloudWatchDashboardInput[]
|
|
64
|
+
| undefined;
|
|
63
65
|
}
|
|
64
66
|
export interface ReportConfigurationS3OutputInput {
|
|
65
|
-
bucketName?: string;
|
|
66
|
-
prefix?: string;
|
|
67
|
+
bucketName?: string | undefined;
|
|
68
|
+
prefix?: string | undefined;
|
|
67
69
|
}
|
|
68
70
|
export interface ExperimentTemplateReportConfigurationOutputsInput {
|
|
69
|
-
s3Configuration?: ReportConfigurationS3OutputInput;
|
|
71
|
+
s3Configuration?: ReportConfigurationS3OutputInput | undefined;
|
|
70
72
|
}
|
|
71
73
|
export interface CreateExperimentTemplateReportConfigurationInput {
|
|
72
|
-
outputs?: ExperimentTemplateReportConfigurationOutputsInput;
|
|
73
|
-
dataSources?:
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
outputs?: ExperimentTemplateReportConfigurationOutputsInput | undefined;
|
|
75
|
+
dataSources?:
|
|
76
|
+
| ExperimentTemplateReportConfigurationDataSourcesInput
|
|
77
|
+
| undefined;
|
|
78
|
+
preExperimentDuration?: string | undefined;
|
|
79
|
+
postExperimentDuration?: string | undefined;
|
|
76
80
|
}
|
|
77
81
|
export interface ExperimentTemplateCloudWatchLogsLogConfigurationInput {
|
|
78
82
|
logGroupArn: string | undefined;
|
|
79
83
|
}
|
|
80
84
|
export interface ExperimentTemplateS3LogConfigurationInput {
|
|
81
85
|
bucketName: string | undefined;
|
|
82
|
-
prefix?: string;
|
|
86
|
+
prefix?: string | undefined;
|
|
83
87
|
}
|
|
84
88
|
export interface CreateExperimentTemplateLogConfigurationInput {
|
|
85
|
-
cloudWatchLogsConfiguration?:
|
|
86
|
-
|
|
89
|
+
cloudWatchLogsConfiguration?:
|
|
90
|
+
| ExperimentTemplateCloudWatchLogsLogConfigurationInput
|
|
91
|
+
| undefined;
|
|
92
|
+
s3Configuration?: ExperimentTemplateS3LogConfigurationInput | undefined;
|
|
87
93
|
logSchemaVersion: number | undefined;
|
|
88
94
|
}
|
|
89
95
|
export interface CreateExperimentTemplateStopConditionInput {
|
|
90
96
|
source: string | undefined;
|
|
91
|
-
value?: string;
|
|
97
|
+
value?: string | undefined;
|
|
92
98
|
}
|
|
93
99
|
export interface ExperimentTemplateTargetInputFilter {
|
|
94
100
|
path: string | undefined;
|
|
@@ -96,100 +102,110 @@ export interface ExperimentTemplateTargetInputFilter {
|
|
|
96
102
|
}
|
|
97
103
|
export interface CreateExperimentTemplateTargetInput {
|
|
98
104
|
resourceType: string | undefined;
|
|
99
|
-
resourceArns?: string[];
|
|
100
|
-
resourceTags?: Record<string, string
|
|
101
|
-
filters?: ExperimentTemplateTargetInputFilter[];
|
|
105
|
+
resourceArns?: string[] | undefined;
|
|
106
|
+
resourceTags?: Record<string, string> | undefined;
|
|
107
|
+
filters?: ExperimentTemplateTargetInputFilter[] | undefined;
|
|
102
108
|
selectionMode: string | undefined;
|
|
103
|
-
parameters?: Record<string, string
|
|
109
|
+
parameters?: Record<string, string> | undefined;
|
|
104
110
|
}
|
|
105
111
|
export interface CreateExperimentTemplateRequest {
|
|
106
|
-
clientToken?: string;
|
|
112
|
+
clientToken?: string | undefined;
|
|
107
113
|
description: string | undefined;
|
|
108
114
|
stopConditions: CreateExperimentTemplateStopConditionInput[] | undefined;
|
|
109
|
-
targets?: Record<string, CreateExperimentTemplateTargetInput
|
|
115
|
+
targets?: Record<string, CreateExperimentTemplateTargetInput> | undefined;
|
|
110
116
|
actions: Record<string, CreateExperimentTemplateActionInput> | undefined;
|
|
111
117
|
roleArn: string | undefined;
|
|
112
|
-
tags?: Record<string, string
|
|
113
|
-
logConfiguration?: CreateExperimentTemplateLogConfigurationInput;
|
|
114
|
-
experimentOptions?:
|
|
115
|
-
|
|
118
|
+
tags?: Record<string, string> | undefined;
|
|
119
|
+
logConfiguration?: CreateExperimentTemplateLogConfigurationInput | undefined;
|
|
120
|
+
experimentOptions?:
|
|
121
|
+
| CreateExperimentTemplateExperimentOptionsInput
|
|
122
|
+
| undefined;
|
|
123
|
+
experimentReportConfiguration?:
|
|
124
|
+
| CreateExperimentTemplateReportConfigurationInput
|
|
125
|
+
| undefined;
|
|
116
126
|
}
|
|
117
127
|
export interface ExperimentTemplateAction {
|
|
118
|
-
actionId?: string;
|
|
119
|
-
description?: string;
|
|
120
|
-
parameters?: Record<string, string
|
|
121
|
-
targets?: Record<string, string
|
|
122
|
-
startAfter?: string[];
|
|
128
|
+
actionId?: string | undefined;
|
|
129
|
+
description?: string | undefined;
|
|
130
|
+
parameters?: Record<string, string> | undefined;
|
|
131
|
+
targets?: Record<string, string> | undefined;
|
|
132
|
+
startAfter?: string[] | undefined;
|
|
123
133
|
}
|
|
124
134
|
export interface ExperimentTemplateExperimentOptions {
|
|
125
|
-
accountTargeting?: AccountTargeting;
|
|
126
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
135
|
+
accountTargeting?: AccountTargeting | undefined;
|
|
136
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
127
137
|
}
|
|
128
138
|
export interface ExperimentTemplateReportConfigurationCloudWatchDashboard {
|
|
129
|
-
dashboardIdentifier?: string;
|
|
139
|
+
dashboardIdentifier?: string | undefined;
|
|
130
140
|
}
|
|
131
141
|
export interface ExperimentTemplateReportConfigurationDataSources {
|
|
132
|
-
cloudWatchDashboards?:
|
|
142
|
+
cloudWatchDashboards?:
|
|
143
|
+
| ExperimentTemplateReportConfigurationCloudWatchDashboard[]
|
|
144
|
+
| undefined;
|
|
133
145
|
}
|
|
134
146
|
export interface ReportConfigurationS3Output {
|
|
135
|
-
bucketName?: string;
|
|
136
|
-
prefix?: string;
|
|
147
|
+
bucketName?: string | undefined;
|
|
148
|
+
prefix?: string | undefined;
|
|
137
149
|
}
|
|
138
150
|
export interface ExperimentTemplateReportConfigurationOutputs {
|
|
139
|
-
s3Configuration?: ReportConfigurationS3Output;
|
|
151
|
+
s3Configuration?: ReportConfigurationS3Output | undefined;
|
|
140
152
|
}
|
|
141
153
|
export interface ExperimentTemplateReportConfiguration {
|
|
142
|
-
outputs?: ExperimentTemplateReportConfigurationOutputs;
|
|
143
|
-
dataSources?: ExperimentTemplateReportConfigurationDataSources;
|
|
144
|
-
preExperimentDuration?: string;
|
|
145
|
-
postExperimentDuration?: string;
|
|
154
|
+
outputs?: ExperimentTemplateReportConfigurationOutputs | undefined;
|
|
155
|
+
dataSources?: ExperimentTemplateReportConfigurationDataSources | undefined;
|
|
156
|
+
preExperimentDuration?: string | undefined;
|
|
157
|
+
postExperimentDuration?: string | undefined;
|
|
146
158
|
}
|
|
147
159
|
export interface ExperimentTemplateCloudWatchLogsLogConfiguration {
|
|
148
|
-
logGroupArn?: string;
|
|
160
|
+
logGroupArn?: string | undefined;
|
|
149
161
|
}
|
|
150
162
|
export interface ExperimentTemplateS3LogConfiguration {
|
|
151
|
-
bucketName?: string;
|
|
152
|
-
prefix?: string;
|
|
163
|
+
bucketName?: string | undefined;
|
|
164
|
+
prefix?: string | undefined;
|
|
153
165
|
}
|
|
154
166
|
export interface ExperimentTemplateLogConfiguration {
|
|
155
|
-
cloudWatchLogsConfiguration?:
|
|
156
|
-
|
|
157
|
-
|
|
167
|
+
cloudWatchLogsConfiguration?:
|
|
168
|
+
| ExperimentTemplateCloudWatchLogsLogConfiguration
|
|
169
|
+
| undefined;
|
|
170
|
+
s3Configuration?: ExperimentTemplateS3LogConfiguration | undefined;
|
|
171
|
+
logSchemaVersion?: number | undefined;
|
|
158
172
|
}
|
|
159
173
|
export interface ExperimentTemplateStopCondition {
|
|
160
|
-
source?: string;
|
|
161
|
-
value?: string;
|
|
174
|
+
source?: string | undefined;
|
|
175
|
+
value?: string | undefined;
|
|
162
176
|
}
|
|
163
177
|
export interface ExperimentTemplateTargetFilter {
|
|
164
|
-
path?: string;
|
|
165
|
-
values?: string[];
|
|
178
|
+
path?: string | undefined;
|
|
179
|
+
values?: string[] | undefined;
|
|
166
180
|
}
|
|
167
181
|
export interface ExperimentTemplateTarget {
|
|
168
|
-
resourceType?: string;
|
|
169
|
-
resourceArns?: string[];
|
|
170
|
-
resourceTags?: Record<string, string
|
|
171
|
-
filters?: ExperimentTemplateTargetFilter[];
|
|
172
|
-
selectionMode?: string;
|
|
173
|
-
parameters?: Record<string, string
|
|
182
|
+
resourceType?: string | undefined;
|
|
183
|
+
resourceArns?: string[] | undefined;
|
|
184
|
+
resourceTags?: Record<string, string> | undefined;
|
|
185
|
+
filters?: ExperimentTemplateTargetFilter[] | undefined;
|
|
186
|
+
selectionMode?: string | undefined;
|
|
187
|
+
parameters?: Record<string, string> | undefined;
|
|
174
188
|
}
|
|
175
189
|
export interface ExperimentTemplate {
|
|
176
|
-
id?: string;
|
|
177
|
-
arn?: string;
|
|
178
|
-
description?: string;
|
|
179
|
-
targets?: Record<string, ExperimentTemplateTarget
|
|
180
|
-
actions?: Record<string, ExperimentTemplateAction
|
|
181
|
-
stopConditions?: ExperimentTemplateStopCondition[];
|
|
182
|
-
creationTime?: Date;
|
|
183
|
-
lastUpdateTime?: Date;
|
|
184
|
-
roleArn?: string;
|
|
185
|
-
tags?: Record<string, string
|
|
186
|
-
logConfiguration?: ExperimentTemplateLogConfiguration;
|
|
187
|
-
experimentOptions?: ExperimentTemplateExperimentOptions;
|
|
188
|
-
targetAccountConfigurationsCount?: number;
|
|
189
|
-
experimentReportConfiguration?:
|
|
190
|
+
id?: string | undefined;
|
|
191
|
+
arn?: string | undefined;
|
|
192
|
+
description?: string | undefined;
|
|
193
|
+
targets?: Record<string, ExperimentTemplateTarget> | undefined;
|
|
194
|
+
actions?: Record<string, ExperimentTemplateAction> | undefined;
|
|
195
|
+
stopConditions?: ExperimentTemplateStopCondition[] | undefined;
|
|
196
|
+
creationTime?: Date | undefined;
|
|
197
|
+
lastUpdateTime?: Date | undefined;
|
|
198
|
+
roleArn?: string | undefined;
|
|
199
|
+
tags?: Record<string, string> | undefined;
|
|
200
|
+
logConfiguration?: ExperimentTemplateLogConfiguration | undefined;
|
|
201
|
+
experimentOptions?: ExperimentTemplateExperimentOptions | undefined;
|
|
202
|
+
targetAccountConfigurationsCount?: number | undefined;
|
|
203
|
+
experimentReportConfiguration?:
|
|
204
|
+
| ExperimentTemplateReportConfiguration
|
|
205
|
+
| undefined;
|
|
190
206
|
}
|
|
191
207
|
export interface CreateExperimentTemplateResponse {
|
|
192
|
-
experimentTemplate?: ExperimentTemplate;
|
|
208
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
193
209
|
}
|
|
194
210
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
195
211
|
readonly name: "ResourceNotFoundException";
|
|
@@ -213,32 +229,32 @@ export declare class ValidationException extends __BaseException {
|
|
|
213
229
|
);
|
|
214
230
|
}
|
|
215
231
|
export interface CreateTargetAccountConfigurationRequest {
|
|
216
|
-
clientToken?: string;
|
|
232
|
+
clientToken?: string | undefined;
|
|
217
233
|
experimentTemplateId: string | undefined;
|
|
218
234
|
accountId: string | undefined;
|
|
219
235
|
roleArn: string | undefined;
|
|
220
|
-
description?: string;
|
|
236
|
+
description?: string | undefined;
|
|
221
237
|
}
|
|
222
238
|
export interface TargetAccountConfiguration {
|
|
223
|
-
roleArn?: string;
|
|
224
|
-
accountId?: string;
|
|
225
|
-
description?: string;
|
|
239
|
+
roleArn?: string | undefined;
|
|
240
|
+
accountId?: string | undefined;
|
|
241
|
+
description?: string | undefined;
|
|
226
242
|
}
|
|
227
243
|
export interface CreateTargetAccountConfigurationResponse {
|
|
228
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
244
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
229
245
|
}
|
|
230
246
|
export interface DeleteExperimentTemplateRequest {
|
|
231
247
|
id: string | undefined;
|
|
232
248
|
}
|
|
233
249
|
export interface DeleteExperimentTemplateResponse {
|
|
234
|
-
experimentTemplate?: ExperimentTemplate;
|
|
250
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
235
251
|
}
|
|
236
252
|
export interface DeleteTargetAccountConfigurationRequest {
|
|
237
253
|
experimentTemplateId: string | undefined;
|
|
238
254
|
accountId: string | undefined;
|
|
239
255
|
}
|
|
240
256
|
export interface DeleteTargetAccountConfigurationResponse {
|
|
241
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
257
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
242
258
|
}
|
|
243
259
|
export declare const ExperimentActionStatus: {
|
|
244
260
|
readonly cancelled: "cancelled";
|
|
@@ -254,30 +270,30 @@ export declare const ExperimentActionStatus: {
|
|
|
254
270
|
export type ExperimentActionStatus =
|
|
255
271
|
(typeof ExperimentActionStatus)[keyof typeof ExperimentActionStatus];
|
|
256
272
|
export interface ExperimentActionState {
|
|
257
|
-
status?: ExperimentActionStatus;
|
|
258
|
-
reason?: string;
|
|
273
|
+
status?: ExperimentActionStatus | undefined;
|
|
274
|
+
reason?: string | undefined;
|
|
259
275
|
}
|
|
260
276
|
export interface ExperimentAction {
|
|
261
|
-
actionId?: string;
|
|
262
|
-
description?: string;
|
|
263
|
-
parameters?: Record<string, string
|
|
264
|
-
targets?: Record<string, string
|
|
265
|
-
startAfter?: string[];
|
|
266
|
-
state?: ExperimentActionState;
|
|
267
|
-
startTime?: Date;
|
|
268
|
-
endTime?: Date;
|
|
277
|
+
actionId?: string | undefined;
|
|
278
|
+
description?: string | undefined;
|
|
279
|
+
parameters?: Record<string, string> | undefined;
|
|
280
|
+
targets?: Record<string, string> | undefined;
|
|
281
|
+
startAfter?: string[] | undefined;
|
|
282
|
+
state?: ExperimentActionState | undefined;
|
|
283
|
+
startTime?: Date | undefined;
|
|
284
|
+
endTime?: Date | undefined;
|
|
269
285
|
}
|
|
270
286
|
export interface ExperimentOptions {
|
|
271
|
-
accountTargeting?: AccountTargeting;
|
|
272
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
273
|
-
actionsMode?: ActionsMode;
|
|
287
|
+
accountTargeting?: AccountTargeting | undefined;
|
|
288
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
289
|
+
actionsMode?: ActionsMode | undefined;
|
|
274
290
|
}
|
|
275
291
|
export interface ExperimentReportS3Report {
|
|
276
|
-
arn?: string;
|
|
277
|
-
reportType?: string;
|
|
292
|
+
arn?: string | undefined;
|
|
293
|
+
reportType?: string | undefined;
|
|
278
294
|
}
|
|
279
295
|
export interface ExperimentReportError {
|
|
280
|
-
code?: string;
|
|
296
|
+
code?: string | undefined;
|
|
281
297
|
}
|
|
282
298
|
export declare const ExperimentReportStatus: {
|
|
283
299
|
readonly cancelled: "cancelled";
|
|
@@ -289,49 +305,55 @@ export declare const ExperimentReportStatus: {
|
|
|
289
305
|
export type ExperimentReportStatus =
|
|
290
306
|
(typeof ExperimentReportStatus)[keyof typeof ExperimentReportStatus];
|
|
291
307
|
export interface ExperimentReportState {
|
|
292
|
-
status?: ExperimentReportStatus;
|
|
293
|
-
reason?: string;
|
|
294
|
-
error?: ExperimentReportError;
|
|
308
|
+
status?: ExperimentReportStatus | undefined;
|
|
309
|
+
reason?: string | undefined;
|
|
310
|
+
error?: ExperimentReportError | undefined;
|
|
295
311
|
}
|
|
296
312
|
export interface ExperimentReport {
|
|
297
|
-
state?: ExperimentReportState;
|
|
298
|
-
s3Reports?: ExperimentReportS3Report[];
|
|
313
|
+
state?: ExperimentReportState | undefined;
|
|
314
|
+
s3Reports?: ExperimentReportS3Report[] | undefined;
|
|
299
315
|
}
|
|
300
316
|
export interface ExperimentReportConfigurationCloudWatchDashboard {
|
|
301
|
-
dashboardIdentifier?: string;
|
|
317
|
+
dashboardIdentifier?: string | undefined;
|
|
302
318
|
}
|
|
303
319
|
export interface ExperimentReportConfigurationDataSources {
|
|
304
|
-
cloudWatchDashboards?:
|
|
320
|
+
cloudWatchDashboards?:
|
|
321
|
+
| ExperimentReportConfigurationCloudWatchDashboard[]
|
|
322
|
+
| undefined;
|
|
305
323
|
}
|
|
306
324
|
export interface ExperimentReportConfigurationOutputsS3Configuration {
|
|
307
|
-
bucketName?: string;
|
|
308
|
-
prefix?: string;
|
|
325
|
+
bucketName?: string | undefined;
|
|
326
|
+
prefix?: string | undefined;
|
|
309
327
|
}
|
|
310
328
|
export interface ExperimentReportConfigurationOutputs {
|
|
311
|
-
s3Configuration?:
|
|
329
|
+
s3Configuration?:
|
|
330
|
+
| ExperimentReportConfigurationOutputsS3Configuration
|
|
331
|
+
| undefined;
|
|
312
332
|
}
|
|
313
333
|
export interface ExperimentReportConfiguration {
|
|
314
|
-
outputs?: ExperimentReportConfigurationOutputs;
|
|
315
|
-
dataSources?: ExperimentReportConfigurationDataSources;
|
|
316
|
-
preExperimentDuration?: string;
|
|
317
|
-
postExperimentDuration?: string;
|
|
334
|
+
outputs?: ExperimentReportConfigurationOutputs | undefined;
|
|
335
|
+
dataSources?: ExperimentReportConfigurationDataSources | undefined;
|
|
336
|
+
preExperimentDuration?: string | undefined;
|
|
337
|
+
postExperimentDuration?: string | undefined;
|
|
318
338
|
}
|
|
319
339
|
export interface ExperimentCloudWatchLogsLogConfiguration {
|
|
320
|
-
logGroupArn?: string;
|
|
340
|
+
logGroupArn?: string | undefined;
|
|
321
341
|
}
|
|
322
342
|
export interface ExperimentS3LogConfiguration {
|
|
323
|
-
bucketName?: string;
|
|
324
|
-
prefix?: string;
|
|
343
|
+
bucketName?: string | undefined;
|
|
344
|
+
prefix?: string | undefined;
|
|
325
345
|
}
|
|
326
346
|
export interface ExperimentLogConfiguration {
|
|
327
|
-
cloudWatchLogsConfiguration?:
|
|
328
|
-
|
|
329
|
-
|
|
347
|
+
cloudWatchLogsConfiguration?:
|
|
348
|
+
| ExperimentCloudWatchLogsLogConfiguration
|
|
349
|
+
| undefined;
|
|
350
|
+
s3Configuration?: ExperimentS3LogConfiguration | undefined;
|
|
351
|
+
logSchemaVersion?: number | undefined;
|
|
330
352
|
}
|
|
331
353
|
export interface ExperimentError {
|
|
332
|
-
accountId?: string;
|
|
333
|
-
code?: string;
|
|
334
|
-
location?: string;
|
|
354
|
+
accountId?: string | undefined;
|
|
355
|
+
code?: string | undefined;
|
|
356
|
+
location?: string | undefined;
|
|
335
357
|
}
|
|
336
358
|
export declare const ExperimentStatus: {
|
|
337
359
|
readonly cancelled: "cancelled";
|
|
@@ -346,96 +368,96 @@ export declare const ExperimentStatus: {
|
|
|
346
368
|
export type ExperimentStatus =
|
|
347
369
|
(typeof ExperimentStatus)[keyof typeof ExperimentStatus];
|
|
348
370
|
export interface ExperimentState {
|
|
349
|
-
status?: ExperimentStatus;
|
|
350
|
-
reason?: string;
|
|
351
|
-
error?: ExperimentError;
|
|
371
|
+
status?: ExperimentStatus | undefined;
|
|
372
|
+
reason?: string | undefined;
|
|
373
|
+
error?: ExperimentError | undefined;
|
|
352
374
|
}
|
|
353
375
|
export interface ExperimentStopCondition {
|
|
354
|
-
source?: string;
|
|
355
|
-
value?: string;
|
|
376
|
+
source?: string | undefined;
|
|
377
|
+
value?: string | undefined;
|
|
356
378
|
}
|
|
357
379
|
export interface ExperimentTargetFilter {
|
|
358
|
-
path?: string;
|
|
359
|
-
values?: string[];
|
|
380
|
+
path?: string | undefined;
|
|
381
|
+
values?: string[] | undefined;
|
|
360
382
|
}
|
|
361
383
|
export interface ExperimentTarget {
|
|
362
|
-
resourceType?: string;
|
|
363
|
-
resourceArns?: string[];
|
|
364
|
-
resourceTags?: Record<string, string
|
|
365
|
-
filters?: ExperimentTargetFilter[];
|
|
366
|
-
selectionMode?: string;
|
|
367
|
-
parameters?: Record<string, string
|
|
384
|
+
resourceType?: string | undefined;
|
|
385
|
+
resourceArns?: string[] | undefined;
|
|
386
|
+
resourceTags?: Record<string, string> | undefined;
|
|
387
|
+
filters?: ExperimentTargetFilter[] | undefined;
|
|
388
|
+
selectionMode?: string | undefined;
|
|
389
|
+
parameters?: Record<string, string> | undefined;
|
|
368
390
|
}
|
|
369
391
|
export interface Experiment {
|
|
370
|
-
id?: string;
|
|
371
|
-
arn?: string;
|
|
372
|
-
experimentTemplateId?: string;
|
|
373
|
-
roleArn?: string;
|
|
374
|
-
state?: ExperimentState;
|
|
375
|
-
targets?: Record<string, ExperimentTarget
|
|
376
|
-
actions?: Record<string, ExperimentAction
|
|
377
|
-
stopConditions?: ExperimentStopCondition[];
|
|
378
|
-
creationTime?: Date;
|
|
379
|
-
startTime?: Date;
|
|
380
|
-
endTime?: Date;
|
|
381
|
-
tags?: Record<string, string
|
|
382
|
-
logConfiguration?: ExperimentLogConfiguration;
|
|
383
|
-
experimentOptions?: ExperimentOptions;
|
|
384
|
-
targetAccountConfigurationsCount?: number;
|
|
385
|
-
experimentReportConfiguration?: ExperimentReportConfiguration;
|
|
386
|
-
experimentReport?: ExperimentReport;
|
|
392
|
+
id?: string | undefined;
|
|
393
|
+
arn?: string | undefined;
|
|
394
|
+
experimentTemplateId?: string | undefined;
|
|
395
|
+
roleArn?: string | undefined;
|
|
396
|
+
state?: ExperimentState | undefined;
|
|
397
|
+
targets?: Record<string, ExperimentTarget> | undefined;
|
|
398
|
+
actions?: Record<string, ExperimentAction> | undefined;
|
|
399
|
+
stopConditions?: ExperimentStopCondition[] | undefined;
|
|
400
|
+
creationTime?: Date | undefined;
|
|
401
|
+
startTime?: Date | undefined;
|
|
402
|
+
endTime?: Date | undefined;
|
|
403
|
+
tags?: Record<string, string> | undefined;
|
|
404
|
+
logConfiguration?: ExperimentLogConfiguration | undefined;
|
|
405
|
+
experimentOptions?: ExperimentOptions | undefined;
|
|
406
|
+
targetAccountConfigurationsCount?: number | undefined;
|
|
407
|
+
experimentReportConfiguration?: ExperimentReportConfiguration | undefined;
|
|
408
|
+
experimentReport?: ExperimentReport | undefined;
|
|
387
409
|
}
|
|
388
410
|
export interface ExperimentSummary {
|
|
389
|
-
id?: string;
|
|
390
|
-
arn?: string;
|
|
391
|
-
experimentTemplateId?: string;
|
|
392
|
-
state?: ExperimentState;
|
|
393
|
-
creationTime?: Date;
|
|
394
|
-
tags?: Record<string, string
|
|
395
|
-
experimentOptions?: ExperimentOptions;
|
|
411
|
+
id?: string | undefined;
|
|
412
|
+
arn?: string | undefined;
|
|
413
|
+
experimentTemplateId?: string | undefined;
|
|
414
|
+
state?: ExperimentState | undefined;
|
|
415
|
+
creationTime?: Date | undefined;
|
|
416
|
+
tags?: Record<string, string> | undefined;
|
|
417
|
+
experimentOptions?: ExperimentOptions | undefined;
|
|
396
418
|
}
|
|
397
419
|
export interface ExperimentTargetAccountConfiguration {
|
|
398
|
-
roleArn?: string;
|
|
399
|
-
accountId?: string;
|
|
400
|
-
description?: string;
|
|
420
|
+
roleArn?: string | undefined;
|
|
421
|
+
accountId?: string | undefined;
|
|
422
|
+
description?: string | undefined;
|
|
401
423
|
}
|
|
402
424
|
export interface ExperimentTargetAccountConfigurationSummary {
|
|
403
|
-
roleArn?: string;
|
|
404
|
-
accountId?: string;
|
|
405
|
-
description?: string;
|
|
425
|
+
roleArn?: string | undefined;
|
|
426
|
+
accountId?: string | undefined;
|
|
427
|
+
description?: string | undefined;
|
|
406
428
|
}
|
|
407
429
|
export interface ExperimentTemplateSummary {
|
|
408
|
-
id?: string;
|
|
409
|
-
arn?: string;
|
|
410
|
-
description?: string;
|
|
411
|
-
creationTime?: Date;
|
|
412
|
-
lastUpdateTime?: Date;
|
|
413
|
-
tags?: Record<string, string
|
|
430
|
+
id?: string | undefined;
|
|
431
|
+
arn?: string | undefined;
|
|
432
|
+
description?: string | undefined;
|
|
433
|
+
creationTime?: Date | undefined;
|
|
434
|
+
lastUpdateTime?: Date | undefined;
|
|
435
|
+
tags?: Record<string, string> | undefined;
|
|
414
436
|
}
|
|
415
437
|
export interface GetActionRequest {
|
|
416
438
|
id: string | undefined;
|
|
417
439
|
}
|
|
418
440
|
export interface GetActionResponse {
|
|
419
|
-
action?: Action;
|
|
441
|
+
action?: Action | undefined;
|
|
420
442
|
}
|
|
421
443
|
export interface GetExperimentRequest {
|
|
422
444
|
id: string | undefined;
|
|
423
445
|
}
|
|
424
446
|
export interface GetExperimentResponse {
|
|
425
|
-
experiment?: Experiment;
|
|
447
|
+
experiment?: Experiment | undefined;
|
|
426
448
|
}
|
|
427
449
|
export interface GetExperimentTargetAccountConfigurationRequest {
|
|
428
450
|
experimentId: string | undefined;
|
|
429
451
|
accountId: string | undefined;
|
|
430
452
|
}
|
|
431
453
|
export interface GetExperimentTargetAccountConfigurationResponse {
|
|
432
|
-
targetAccountConfiguration?: ExperimentTargetAccountConfiguration;
|
|
454
|
+
targetAccountConfiguration?: ExperimentTargetAccountConfiguration | undefined;
|
|
433
455
|
}
|
|
434
456
|
export interface GetExperimentTemplateRequest {
|
|
435
457
|
id: string | undefined;
|
|
436
458
|
}
|
|
437
459
|
export interface GetExperimentTemplateResponse {
|
|
438
|
-
experimentTemplate?: ExperimentTemplate;
|
|
460
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
439
461
|
}
|
|
440
462
|
export interface GetSafetyLeverRequest {
|
|
441
463
|
id: string | undefined;
|
|
@@ -448,136 +470,138 @@ export declare const SafetyLeverStatus: {
|
|
|
448
470
|
export type SafetyLeverStatus =
|
|
449
471
|
(typeof SafetyLeverStatus)[keyof typeof SafetyLeverStatus];
|
|
450
472
|
export interface SafetyLeverState {
|
|
451
|
-
status?: SafetyLeverStatus;
|
|
452
|
-
reason?: string;
|
|
473
|
+
status?: SafetyLeverStatus | undefined;
|
|
474
|
+
reason?: string | undefined;
|
|
453
475
|
}
|
|
454
476
|
export interface SafetyLever {
|
|
455
|
-
id?: string;
|
|
456
|
-
arn?: string;
|
|
457
|
-
state?: SafetyLeverState;
|
|
477
|
+
id?: string | undefined;
|
|
478
|
+
arn?: string | undefined;
|
|
479
|
+
state?: SafetyLeverState | undefined;
|
|
458
480
|
}
|
|
459
481
|
export interface GetSafetyLeverResponse {
|
|
460
|
-
safetyLever?: SafetyLever;
|
|
482
|
+
safetyLever?: SafetyLever | undefined;
|
|
461
483
|
}
|
|
462
484
|
export interface GetTargetAccountConfigurationRequest {
|
|
463
485
|
experimentTemplateId: string | undefined;
|
|
464
486
|
accountId: string | undefined;
|
|
465
487
|
}
|
|
466
488
|
export interface GetTargetAccountConfigurationResponse {
|
|
467
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
489
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
468
490
|
}
|
|
469
491
|
export interface GetTargetResourceTypeRequest {
|
|
470
492
|
resourceType: string | undefined;
|
|
471
493
|
}
|
|
472
494
|
export interface TargetResourceTypeParameter {
|
|
473
|
-
description?: string;
|
|
474
|
-
required?: boolean;
|
|
495
|
+
description?: string | undefined;
|
|
496
|
+
required?: boolean | undefined;
|
|
475
497
|
}
|
|
476
498
|
export interface TargetResourceType {
|
|
477
|
-
resourceType?: string;
|
|
478
|
-
description?: string;
|
|
479
|
-
parameters?: Record<string, TargetResourceTypeParameter
|
|
499
|
+
resourceType?: string | undefined;
|
|
500
|
+
description?: string | undefined;
|
|
501
|
+
parameters?: Record<string, TargetResourceTypeParameter> | undefined;
|
|
480
502
|
}
|
|
481
503
|
export interface GetTargetResourceTypeResponse {
|
|
482
|
-
targetResourceType?: TargetResourceType;
|
|
504
|
+
targetResourceType?: TargetResourceType | undefined;
|
|
483
505
|
}
|
|
484
506
|
export interface ListActionsRequest {
|
|
485
|
-
maxResults?: number;
|
|
486
|
-
nextToken?: string;
|
|
507
|
+
maxResults?: number | undefined;
|
|
508
|
+
nextToken?: string | undefined;
|
|
487
509
|
}
|
|
488
510
|
export interface ListActionsResponse {
|
|
489
|
-
actions?: ActionSummary[];
|
|
490
|
-
nextToken?: string;
|
|
511
|
+
actions?: ActionSummary[] | undefined;
|
|
512
|
+
nextToken?: string | undefined;
|
|
491
513
|
}
|
|
492
514
|
export interface ListExperimentResolvedTargetsRequest {
|
|
493
515
|
experimentId: string | undefined;
|
|
494
|
-
maxResults?: number;
|
|
495
|
-
nextToken?: string;
|
|
496
|
-
targetName?: string;
|
|
516
|
+
maxResults?: number | undefined;
|
|
517
|
+
nextToken?: string | undefined;
|
|
518
|
+
targetName?: string | undefined;
|
|
497
519
|
}
|
|
498
520
|
export interface ResolvedTarget {
|
|
499
|
-
resourceType?: string;
|
|
500
|
-
targetName?: string;
|
|
501
|
-
targetInformation?: Record<string, string
|
|
521
|
+
resourceType?: string | undefined;
|
|
522
|
+
targetName?: string | undefined;
|
|
523
|
+
targetInformation?: Record<string, string> | undefined;
|
|
502
524
|
}
|
|
503
525
|
export interface ListExperimentResolvedTargetsResponse {
|
|
504
|
-
resolvedTargets?: ResolvedTarget[];
|
|
505
|
-
nextToken?: string;
|
|
526
|
+
resolvedTargets?: ResolvedTarget[] | undefined;
|
|
527
|
+
nextToken?: string | undefined;
|
|
506
528
|
}
|
|
507
529
|
export interface ListExperimentsRequest {
|
|
508
|
-
maxResults?: number;
|
|
509
|
-
nextToken?: string;
|
|
510
|
-
experimentTemplateId?: string;
|
|
530
|
+
maxResults?: number | undefined;
|
|
531
|
+
nextToken?: string | undefined;
|
|
532
|
+
experimentTemplateId?: string | undefined;
|
|
511
533
|
}
|
|
512
534
|
export interface ListExperimentsResponse {
|
|
513
|
-
experiments?: ExperimentSummary[];
|
|
514
|
-
nextToken?: string;
|
|
535
|
+
experiments?: ExperimentSummary[] | undefined;
|
|
536
|
+
nextToken?: string | undefined;
|
|
515
537
|
}
|
|
516
538
|
export interface ListExperimentTargetAccountConfigurationsRequest {
|
|
517
539
|
experimentId: string | undefined;
|
|
518
|
-
nextToken?: string;
|
|
540
|
+
nextToken?: string | undefined;
|
|
519
541
|
}
|
|
520
542
|
export interface ListExperimentTargetAccountConfigurationsResponse {
|
|
521
|
-
targetAccountConfigurations?:
|
|
522
|
-
|
|
543
|
+
targetAccountConfigurations?:
|
|
544
|
+
| ExperimentTargetAccountConfigurationSummary[]
|
|
545
|
+
| undefined;
|
|
546
|
+
nextToken?: string | undefined;
|
|
523
547
|
}
|
|
524
548
|
export interface ListExperimentTemplatesRequest {
|
|
525
|
-
maxResults?: number;
|
|
526
|
-
nextToken?: string;
|
|
549
|
+
maxResults?: number | undefined;
|
|
550
|
+
nextToken?: string | undefined;
|
|
527
551
|
}
|
|
528
552
|
export interface ListExperimentTemplatesResponse {
|
|
529
|
-
experimentTemplates?: ExperimentTemplateSummary[];
|
|
530
|
-
nextToken?: string;
|
|
553
|
+
experimentTemplates?: ExperimentTemplateSummary[] | undefined;
|
|
554
|
+
nextToken?: string | undefined;
|
|
531
555
|
}
|
|
532
556
|
export interface ListTagsForResourceRequest {
|
|
533
557
|
resourceArn: string | undefined;
|
|
534
558
|
}
|
|
535
559
|
export interface ListTagsForResourceResponse {
|
|
536
|
-
tags?: Record<string, string
|
|
560
|
+
tags?: Record<string, string> | undefined;
|
|
537
561
|
}
|
|
538
562
|
export interface ListTargetAccountConfigurationsRequest {
|
|
539
563
|
experimentTemplateId: string | undefined;
|
|
540
|
-
maxResults?: number;
|
|
541
|
-
nextToken?: string;
|
|
564
|
+
maxResults?: number | undefined;
|
|
565
|
+
nextToken?: string | undefined;
|
|
542
566
|
}
|
|
543
567
|
export interface TargetAccountConfigurationSummary {
|
|
544
|
-
roleArn?: string;
|
|
545
|
-
accountId?: string;
|
|
546
|
-
description?: string;
|
|
568
|
+
roleArn?: string | undefined;
|
|
569
|
+
accountId?: string | undefined;
|
|
570
|
+
description?: string | undefined;
|
|
547
571
|
}
|
|
548
572
|
export interface ListTargetAccountConfigurationsResponse {
|
|
549
|
-
targetAccountConfigurations?: TargetAccountConfigurationSummary[];
|
|
550
|
-
nextToken?: string;
|
|
573
|
+
targetAccountConfigurations?: TargetAccountConfigurationSummary[] | undefined;
|
|
574
|
+
nextToken?: string | undefined;
|
|
551
575
|
}
|
|
552
576
|
export interface ListTargetResourceTypesRequest {
|
|
553
|
-
maxResults?: number;
|
|
554
|
-
nextToken?: string;
|
|
577
|
+
maxResults?: number | undefined;
|
|
578
|
+
nextToken?: string | undefined;
|
|
555
579
|
}
|
|
556
580
|
export interface TargetResourceTypeSummary {
|
|
557
|
-
resourceType?: string;
|
|
558
|
-
description?: string;
|
|
581
|
+
resourceType?: string | undefined;
|
|
582
|
+
description?: string | undefined;
|
|
559
583
|
}
|
|
560
584
|
export interface ListTargetResourceTypesResponse {
|
|
561
|
-
targetResourceTypes?: TargetResourceTypeSummary[];
|
|
562
|
-
nextToken?: string;
|
|
585
|
+
targetResourceTypes?: TargetResourceTypeSummary[] | undefined;
|
|
586
|
+
nextToken?: string | undefined;
|
|
563
587
|
}
|
|
564
588
|
export interface StartExperimentExperimentOptionsInput {
|
|
565
|
-
actionsMode?: ActionsMode;
|
|
589
|
+
actionsMode?: ActionsMode | undefined;
|
|
566
590
|
}
|
|
567
591
|
export interface StartExperimentRequest {
|
|
568
|
-
clientToken?: string;
|
|
592
|
+
clientToken?: string | undefined;
|
|
569
593
|
experimentTemplateId: string | undefined;
|
|
570
|
-
experimentOptions?: StartExperimentExperimentOptionsInput;
|
|
571
|
-
tags?: Record<string, string
|
|
594
|
+
experimentOptions?: StartExperimentExperimentOptionsInput | undefined;
|
|
595
|
+
tags?: Record<string, string> | undefined;
|
|
572
596
|
}
|
|
573
597
|
export interface StartExperimentResponse {
|
|
574
|
-
experiment?: Experiment;
|
|
598
|
+
experiment?: Experiment | undefined;
|
|
575
599
|
}
|
|
576
600
|
export interface StopExperimentRequest {
|
|
577
601
|
id: string | undefined;
|
|
578
602
|
}
|
|
579
603
|
export interface StopExperimentResponse {
|
|
580
|
-
experiment?: Experiment;
|
|
604
|
+
experiment?: Experiment | undefined;
|
|
581
605
|
}
|
|
582
606
|
export interface TagResourceRequest {
|
|
583
607
|
resourceArn: string | undefined;
|
|
@@ -586,55 +610,63 @@ export interface TagResourceRequest {
|
|
|
586
610
|
export interface TagResourceResponse {}
|
|
587
611
|
export interface UntagResourceRequest {
|
|
588
612
|
resourceArn: string | undefined;
|
|
589
|
-
tagKeys?: string[];
|
|
613
|
+
tagKeys?: string[] | undefined;
|
|
590
614
|
}
|
|
591
615
|
export interface UntagResourceResponse {}
|
|
592
616
|
export interface UpdateExperimentTemplateActionInputItem {
|
|
593
|
-
actionId?: string;
|
|
594
|
-
description?: string;
|
|
595
|
-
parameters?: Record<string, string
|
|
596
|
-
targets?: Record<string, string
|
|
597
|
-
startAfter?: string[];
|
|
617
|
+
actionId?: string | undefined;
|
|
618
|
+
description?: string | undefined;
|
|
619
|
+
parameters?: Record<string, string> | undefined;
|
|
620
|
+
targets?: Record<string, string> | undefined;
|
|
621
|
+
startAfter?: string[] | undefined;
|
|
598
622
|
}
|
|
599
623
|
export interface UpdateExperimentTemplateExperimentOptionsInput {
|
|
600
|
-
emptyTargetResolutionMode?: EmptyTargetResolutionMode;
|
|
624
|
+
emptyTargetResolutionMode?: EmptyTargetResolutionMode | undefined;
|
|
601
625
|
}
|
|
602
626
|
export interface UpdateExperimentTemplateReportConfigurationInput {
|
|
603
|
-
outputs?: ExperimentTemplateReportConfigurationOutputsInput;
|
|
604
|
-
dataSources?:
|
|
605
|
-
|
|
606
|
-
|
|
627
|
+
outputs?: ExperimentTemplateReportConfigurationOutputsInput | undefined;
|
|
628
|
+
dataSources?:
|
|
629
|
+
| ExperimentTemplateReportConfigurationDataSourcesInput
|
|
630
|
+
| undefined;
|
|
631
|
+
preExperimentDuration?: string | undefined;
|
|
632
|
+
postExperimentDuration?: string | undefined;
|
|
607
633
|
}
|
|
608
634
|
export interface UpdateExperimentTemplateLogConfigurationInput {
|
|
609
|
-
cloudWatchLogsConfiguration?:
|
|
610
|
-
|
|
611
|
-
|
|
635
|
+
cloudWatchLogsConfiguration?:
|
|
636
|
+
| ExperimentTemplateCloudWatchLogsLogConfigurationInput
|
|
637
|
+
| undefined;
|
|
638
|
+
s3Configuration?: ExperimentTemplateS3LogConfigurationInput | undefined;
|
|
639
|
+
logSchemaVersion?: number | undefined;
|
|
612
640
|
}
|
|
613
641
|
export interface UpdateExperimentTemplateStopConditionInput {
|
|
614
642
|
source: string | undefined;
|
|
615
|
-
value?: string;
|
|
643
|
+
value?: string | undefined;
|
|
616
644
|
}
|
|
617
645
|
export interface UpdateExperimentTemplateTargetInput {
|
|
618
646
|
resourceType: string | undefined;
|
|
619
|
-
resourceArns?: string[];
|
|
620
|
-
resourceTags?: Record<string, string
|
|
621
|
-
filters?: ExperimentTemplateTargetInputFilter[];
|
|
647
|
+
resourceArns?: string[] | undefined;
|
|
648
|
+
resourceTags?: Record<string, string> | undefined;
|
|
649
|
+
filters?: ExperimentTemplateTargetInputFilter[] | undefined;
|
|
622
650
|
selectionMode: string | undefined;
|
|
623
|
-
parameters?: Record<string, string
|
|
651
|
+
parameters?: Record<string, string> | undefined;
|
|
624
652
|
}
|
|
625
653
|
export interface UpdateExperimentTemplateRequest {
|
|
626
654
|
id: string | undefined;
|
|
627
|
-
description?: string;
|
|
628
|
-
stopConditions?: UpdateExperimentTemplateStopConditionInput[];
|
|
629
|
-
targets?: Record<string, UpdateExperimentTemplateTargetInput
|
|
630
|
-
actions?: Record<string, UpdateExperimentTemplateActionInputItem
|
|
631
|
-
roleArn?: string;
|
|
632
|
-
logConfiguration?: UpdateExperimentTemplateLogConfigurationInput;
|
|
633
|
-
experimentOptions?:
|
|
634
|
-
|
|
655
|
+
description?: string | undefined;
|
|
656
|
+
stopConditions?: UpdateExperimentTemplateStopConditionInput[] | undefined;
|
|
657
|
+
targets?: Record<string, UpdateExperimentTemplateTargetInput> | undefined;
|
|
658
|
+
actions?: Record<string, UpdateExperimentTemplateActionInputItem> | undefined;
|
|
659
|
+
roleArn?: string | undefined;
|
|
660
|
+
logConfiguration?: UpdateExperimentTemplateLogConfigurationInput | undefined;
|
|
661
|
+
experimentOptions?:
|
|
662
|
+
| UpdateExperimentTemplateExperimentOptionsInput
|
|
663
|
+
| undefined;
|
|
664
|
+
experimentReportConfiguration?:
|
|
665
|
+
| UpdateExperimentTemplateReportConfigurationInput
|
|
666
|
+
| undefined;
|
|
635
667
|
}
|
|
636
668
|
export interface UpdateExperimentTemplateResponse {
|
|
637
|
-
experimentTemplate?: ExperimentTemplate;
|
|
669
|
+
experimentTemplate?: ExperimentTemplate | undefined;
|
|
638
670
|
}
|
|
639
671
|
export declare const SafetyLeverStatusInput: {
|
|
640
672
|
readonly DISENGAGED: "disengaged";
|
|
@@ -651,14 +683,14 @@ export interface UpdateSafetyLeverStateRequest {
|
|
|
651
683
|
state: UpdateSafetyLeverStateInput | undefined;
|
|
652
684
|
}
|
|
653
685
|
export interface UpdateSafetyLeverStateResponse {
|
|
654
|
-
safetyLever?: SafetyLever;
|
|
686
|
+
safetyLever?: SafetyLever | undefined;
|
|
655
687
|
}
|
|
656
688
|
export interface UpdateTargetAccountConfigurationRequest {
|
|
657
689
|
experimentTemplateId: string | undefined;
|
|
658
690
|
accountId: string | undefined;
|
|
659
|
-
roleArn?: string;
|
|
660
|
-
description?: string;
|
|
691
|
+
roleArn?: string | undefined;
|
|
692
|
+
description?: string | undefined;
|
|
661
693
|
}
|
|
662
694
|
export interface UpdateTargetAccountConfigurationResponse {
|
|
663
|
-
targetAccountConfiguration?: TargetAccountConfiguration;
|
|
695
|
+
targetAccountConfiguration?: TargetAccountConfiguration | undefined;
|
|
664
696
|
}
|