@aws-sdk/client-fis 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +14 -0
- package/dist-es/models/models_0.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +5 -0
- package/dist-types/commands/CreateExperimentTemplateCommand.d.ts +34 -0
- package/dist-types/commands/DeleteExperimentTemplateCommand.d.ts +17 -0
- package/dist-types/commands/GetExperimentCommand.d.ts +32 -0
- package/dist-types/commands/GetExperimentTemplateCommand.d.ts +17 -0
- package/dist-types/commands/StartExperimentCommand.d.ts +32 -0
- package/dist-types/commands/StopExperimentCommand.d.ts +32 -0
- package/dist-types/commands/UpdateExperimentTemplateCommand.d.ts +34 -0
- package/dist-types/models/models_0.d.ts +591 -235
- package/dist-types/ts3.4/models/models_0.d.ts +360 -235
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -30,6 +30,7 @@ __export(src_exports, {
|
|
|
30
30
|
DeleteTargetAccountConfigurationCommand: () => DeleteTargetAccountConfigurationCommand,
|
|
31
31
|
EmptyTargetResolutionMode: () => EmptyTargetResolutionMode,
|
|
32
32
|
ExperimentActionStatus: () => ExperimentActionStatus,
|
|
33
|
+
ExperimentReportStatus: () => ExperimentReportStatus,
|
|
33
34
|
ExperimentStatus: () => ExperimentStatus,
|
|
34
35
|
Fis: () => Fis,
|
|
35
36
|
FisClient: () => FisClient,
|
|
@@ -328,6 +329,13 @@ var ExperimentActionStatus = {
|
|
|
328
329
|
stopped: "stopped",
|
|
329
330
|
stopping: "stopping"
|
|
330
331
|
};
|
|
332
|
+
var ExperimentReportStatus = {
|
|
333
|
+
cancelled: "cancelled",
|
|
334
|
+
completed: "completed",
|
|
335
|
+
failed: "failed",
|
|
336
|
+
pending: "pending",
|
|
337
|
+
running: "running"
|
|
338
|
+
};
|
|
331
339
|
var ExperimentStatus = {
|
|
332
340
|
cancelled: "cancelled",
|
|
333
341
|
completed: "completed",
|
|
@@ -362,6 +370,7 @@ var se_CreateExperimentTemplateCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
362
370
|
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
363
371
|
description: [],
|
|
364
372
|
experimentOptions: (_) => (0, import_smithy_client._json)(_),
|
|
373
|
+
experimentReportConfiguration: (_) => (0, import_smithy_client._json)(_),
|
|
365
374
|
logConfiguration: (_) => (0, import_smithy_client._json)(_),
|
|
366
375
|
roleArn: [],
|
|
367
376
|
stopConditions: (_) => (0, import_smithy_client._json)(_),
|
|
@@ -640,6 +649,7 @@ var se_UpdateExperimentTemplateCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
640
649
|
actions: (_) => (0, import_smithy_client._json)(_),
|
|
641
650
|
description: [],
|
|
642
651
|
experimentOptions: (_) => (0, import_smithy_client._json)(_),
|
|
652
|
+
experimentReportConfiguration: (_) => (0, import_smithy_client._json)(_),
|
|
643
653
|
logConfiguration: (_) => (0, import_smithy_client._json)(_),
|
|
644
654
|
roleArn: [],
|
|
645
655
|
stopConditions: (_) => (0, import_smithy_client._json)(_),
|
|
@@ -1134,6 +1144,8 @@ var de_Experiment = /* @__PURE__ */ __name((output, context) => {
|
|
|
1134
1144
|
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1135
1145
|
endTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1136
1146
|
experimentOptions: import_smithy_client._json,
|
|
1147
|
+
experimentReport: import_smithy_client._json,
|
|
1148
|
+
experimentReportConfiguration: import_smithy_client._json,
|
|
1137
1149
|
experimentTemplateId: import_smithy_client.expectString,
|
|
1138
1150
|
id: import_smithy_client.expectString,
|
|
1139
1151
|
logConfiguration: import_smithy_client._json,
|
|
@@ -1191,6 +1203,7 @@ var de_ExperimentTemplate = /* @__PURE__ */ __name((output, context) => {
|
|
|
1191
1203
|
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1192
1204
|
description: import_smithy_client.expectString,
|
|
1193
1205
|
experimentOptions: import_smithy_client._json,
|
|
1206
|
+
experimentReportConfiguration: import_smithy_client._json,
|
|
1194
1207
|
id: import_smithy_client.expectString,
|
|
1195
1208
|
lastUpdateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1196
1209
|
logConfiguration: import_smithy_client._json,
|
|
@@ -1696,6 +1709,7 @@ var paginateListTargetResourceTypes = (0, import_core.createPaginator)(FisClient
|
|
|
1696
1709
|
ServiceQuotaExceededException,
|
|
1697
1710
|
ValidationException,
|
|
1698
1711
|
ExperimentActionStatus,
|
|
1712
|
+
ExperimentReportStatus,
|
|
1699
1713
|
ExperimentStatus,
|
|
1700
1714
|
SafetyLeverStatus,
|
|
1701
1715
|
SafetyLeverStatusInput
|
|
@@ -70,6 +70,13 @@ export const ExperimentActionStatus = {
|
|
|
70
70
|
stopped: "stopped",
|
|
71
71
|
stopping: "stopping",
|
|
72
72
|
};
|
|
73
|
+
export const ExperimentReportStatus = {
|
|
74
|
+
cancelled: "cancelled",
|
|
75
|
+
completed: "completed",
|
|
76
|
+
failed: "failed",
|
|
77
|
+
pending: "pending",
|
|
78
|
+
running: "running",
|
|
79
|
+
};
|
|
73
80
|
export const ExperimentStatus = {
|
|
74
81
|
cancelled: "cancelled",
|
|
75
82
|
completed: "completed",
|
|
@@ -16,6 +16,7 @@ export const se_CreateExperimentTemplateCommand = async (input, context) => {
|
|
|
16
16
|
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
17
17
|
description: [],
|
|
18
18
|
experimentOptions: (_) => _json(_),
|
|
19
|
+
experimentReportConfiguration: (_) => _json(_),
|
|
19
20
|
logConfiguration: (_) => _json(_),
|
|
20
21
|
roleArn: [],
|
|
21
22
|
stopConditions: (_) => _json(_),
|
|
@@ -286,6 +287,7 @@ export const se_UpdateExperimentTemplateCommand = async (input, context) => {
|
|
|
286
287
|
actions: (_) => _json(_),
|
|
287
288
|
description: [],
|
|
288
289
|
experimentOptions: (_) => _json(_),
|
|
290
|
+
experimentReportConfiguration: (_) => _json(_),
|
|
289
291
|
logConfiguration: (_) => _json(_),
|
|
290
292
|
roleArn: [],
|
|
291
293
|
stopConditions: (_) => _json(_),
|
|
@@ -775,6 +777,8 @@ const de_Experiment = (output, context) => {
|
|
|
775
777
|
creationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
776
778
|
endTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
777
779
|
experimentOptions: _json,
|
|
780
|
+
experimentReport: _json,
|
|
781
|
+
experimentReportConfiguration: _json,
|
|
778
782
|
experimentTemplateId: __expectString,
|
|
779
783
|
id: __expectString,
|
|
780
784
|
logConfiguration: _json,
|
|
@@ -834,6 +838,7 @@ const de_ExperimentTemplate = (output, context) => {
|
|
|
834
838
|
creationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
835
839
|
description: __expectString,
|
|
836
840
|
experimentOptions: _json,
|
|
841
|
+
experimentReportConfiguration: _json,
|
|
837
842
|
id: __expectString,
|
|
838
843
|
lastUpdateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
839
844
|
logConfiguration: _json,
|
|
@@ -121,6 +121,23 @@ declare const CreateExperimentTemplateCommand_base: {
|
|
|
121
121
|
* accountTargeting: "single-account" || "multi-account",
|
|
122
122
|
* emptyTargetResolutionMode: "fail" || "skip",
|
|
123
123
|
* },
|
|
124
|
+
* experimentReportConfiguration: { // CreateExperimentTemplateReportConfigurationInput
|
|
125
|
+
* outputs: { // ExperimentTemplateReportConfigurationOutputsInput
|
|
126
|
+
* s3Configuration: { // ReportConfigurationS3OutputInput
|
|
127
|
+
* bucketName: "STRING_VALUE",
|
|
128
|
+
* prefix: "STRING_VALUE",
|
|
129
|
+
* },
|
|
130
|
+
* },
|
|
131
|
+
* dataSources: { // ExperimentTemplateReportConfigurationDataSourcesInput
|
|
132
|
+
* cloudWatchDashboards: [ // ReportConfigurationCloudWatchDashboardInputList
|
|
133
|
+
* { // ReportConfigurationCloudWatchDashboardInput
|
|
134
|
+
* dashboardIdentifier: "STRING_VALUE",
|
|
135
|
+
* },
|
|
136
|
+
* ],
|
|
137
|
+
* },
|
|
138
|
+
* preExperimentDuration: "STRING_VALUE",
|
|
139
|
+
* postExperimentDuration: "STRING_VALUE",
|
|
140
|
+
* },
|
|
124
141
|
* };
|
|
125
142
|
* const command = new CreateExperimentTemplateCommand(input);
|
|
126
143
|
* const response = await client.send(command);
|
|
@@ -194,6 +211,23 @@ declare const CreateExperimentTemplateCommand_base: {
|
|
|
194
211
|
* // emptyTargetResolutionMode: "fail" || "skip",
|
|
195
212
|
* // },
|
|
196
213
|
* // targetAccountConfigurationsCount: Number("long"),
|
|
214
|
+
* // experimentReportConfiguration: { // ExperimentTemplateReportConfiguration
|
|
215
|
+
* // outputs: { // ExperimentTemplateReportConfigurationOutputs
|
|
216
|
+
* // s3Configuration: { // ReportConfigurationS3Output
|
|
217
|
+
* // bucketName: "STRING_VALUE",
|
|
218
|
+
* // prefix: "STRING_VALUE",
|
|
219
|
+
* // },
|
|
220
|
+
* // },
|
|
221
|
+
* // dataSources: { // ExperimentTemplateReportConfigurationDataSources
|
|
222
|
+
* // cloudWatchDashboards: [ // ExperimentTemplateReportConfigurationCloudWatchDashboardList
|
|
223
|
+
* // { // ExperimentTemplateReportConfigurationCloudWatchDashboard
|
|
224
|
+
* // dashboardIdentifier: "STRING_VALUE",
|
|
225
|
+
* // },
|
|
226
|
+
* // ],
|
|
227
|
+
* // },
|
|
228
|
+
* // preExperimentDuration: "STRING_VALUE",
|
|
229
|
+
* // postExperimentDuration: "STRING_VALUE",
|
|
230
|
+
* // },
|
|
197
231
|
* // },
|
|
198
232
|
* // };
|
|
199
233
|
*
|
|
@@ -109,6 +109,23 @@ declare const DeleteExperimentTemplateCommand_base: {
|
|
|
109
109
|
* // emptyTargetResolutionMode: "fail" || "skip",
|
|
110
110
|
* // },
|
|
111
111
|
* // targetAccountConfigurationsCount: Number("long"),
|
|
112
|
+
* // experimentReportConfiguration: { // ExperimentTemplateReportConfiguration
|
|
113
|
+
* // outputs: { // ExperimentTemplateReportConfigurationOutputs
|
|
114
|
+
* // s3Configuration: { // ReportConfigurationS3Output
|
|
115
|
+
* // bucketName: "STRING_VALUE",
|
|
116
|
+
* // prefix: "STRING_VALUE",
|
|
117
|
+
* // },
|
|
118
|
+
* // },
|
|
119
|
+
* // dataSources: { // ExperimentTemplateReportConfigurationDataSources
|
|
120
|
+
* // cloudWatchDashboards: [ // ExperimentTemplateReportConfigurationCloudWatchDashboardList
|
|
121
|
+
* // { // ExperimentTemplateReportConfigurationCloudWatchDashboard
|
|
122
|
+
* // dashboardIdentifier: "STRING_VALUE",
|
|
123
|
+
* // },
|
|
124
|
+
* // ],
|
|
125
|
+
* // },
|
|
126
|
+
* // preExperimentDuration: "STRING_VALUE",
|
|
127
|
+
* // postExperimentDuration: "STRING_VALUE",
|
|
128
|
+
* // },
|
|
112
129
|
* // },
|
|
113
130
|
* // };
|
|
114
131
|
*
|
|
@@ -126,6 +126,38 @@ declare const GetExperimentCommand_base: {
|
|
|
126
126
|
* // actionsMode: "skip-all" || "run-all",
|
|
127
127
|
* // },
|
|
128
128
|
* // targetAccountConfigurationsCount: Number("long"),
|
|
129
|
+
* // experimentReportConfiguration: { // ExperimentReportConfiguration
|
|
130
|
+
* // outputs: { // ExperimentReportConfigurationOutputs
|
|
131
|
+
* // s3Configuration: { // ExperimentReportConfigurationOutputsS3Configuration
|
|
132
|
+
* // bucketName: "STRING_VALUE",
|
|
133
|
+
* // prefix: "STRING_VALUE",
|
|
134
|
+
* // },
|
|
135
|
+
* // },
|
|
136
|
+
* // dataSources: { // ExperimentReportConfigurationDataSources
|
|
137
|
+
* // cloudWatchDashboards: [ // ExperimentReportConfigurationCloudWatchDashboardList
|
|
138
|
+
* // { // ExperimentReportConfigurationCloudWatchDashboard
|
|
139
|
+
* // dashboardIdentifier: "STRING_VALUE",
|
|
140
|
+
* // },
|
|
141
|
+
* // ],
|
|
142
|
+
* // },
|
|
143
|
+
* // preExperimentDuration: "STRING_VALUE",
|
|
144
|
+
* // postExperimentDuration: "STRING_VALUE",
|
|
145
|
+
* // },
|
|
146
|
+
* // experimentReport: { // ExperimentReport
|
|
147
|
+
* // state: { // ExperimentReportState
|
|
148
|
+
* // status: "pending" || "running" || "completed" || "cancelled" || "failed",
|
|
149
|
+
* // reason: "STRING_VALUE",
|
|
150
|
+
* // error: { // ExperimentReportError
|
|
151
|
+
* // code: "STRING_VALUE",
|
|
152
|
+
* // },
|
|
153
|
+
* // },
|
|
154
|
+
* // s3Reports: [ // ExperimentReportS3ReportList
|
|
155
|
+
* // { // ExperimentReportS3Report
|
|
156
|
+
* // arn: "STRING_VALUE",
|
|
157
|
+
* // reportType: "STRING_VALUE",
|
|
158
|
+
* // },
|
|
159
|
+
* // ],
|
|
160
|
+
* // },
|
|
129
161
|
* // },
|
|
130
162
|
* // };
|
|
131
163
|
*
|
|
@@ -109,6 +109,23 @@ declare const GetExperimentTemplateCommand_base: {
|
|
|
109
109
|
* // emptyTargetResolutionMode: "fail" || "skip",
|
|
110
110
|
* // },
|
|
111
111
|
* // targetAccountConfigurationsCount: Number("long"),
|
|
112
|
+
* // experimentReportConfiguration: { // ExperimentTemplateReportConfiguration
|
|
113
|
+
* // outputs: { // ExperimentTemplateReportConfigurationOutputs
|
|
114
|
+
* // s3Configuration: { // ReportConfigurationS3Output
|
|
115
|
+
* // bucketName: "STRING_VALUE",
|
|
116
|
+
* // prefix: "STRING_VALUE",
|
|
117
|
+
* // },
|
|
118
|
+
* // },
|
|
119
|
+
* // dataSources: { // ExperimentTemplateReportConfigurationDataSources
|
|
120
|
+
* // cloudWatchDashboards: [ // ExperimentTemplateReportConfigurationCloudWatchDashboardList
|
|
121
|
+
* // { // ExperimentTemplateReportConfigurationCloudWatchDashboard
|
|
122
|
+
* // dashboardIdentifier: "STRING_VALUE",
|
|
123
|
+
* // },
|
|
124
|
+
* // ],
|
|
125
|
+
* // },
|
|
126
|
+
* // preExperimentDuration: "STRING_VALUE",
|
|
127
|
+
* // postExperimentDuration: "STRING_VALUE",
|
|
128
|
+
* // },
|
|
112
129
|
* // },
|
|
113
130
|
* // };
|
|
114
131
|
*
|
|
@@ -133,6 +133,38 @@ declare const StartExperimentCommand_base: {
|
|
|
133
133
|
* // actionsMode: "skip-all" || "run-all",
|
|
134
134
|
* // },
|
|
135
135
|
* // targetAccountConfigurationsCount: Number("long"),
|
|
136
|
+
* // experimentReportConfiguration: { // ExperimentReportConfiguration
|
|
137
|
+
* // outputs: { // ExperimentReportConfigurationOutputs
|
|
138
|
+
* // s3Configuration: { // ExperimentReportConfigurationOutputsS3Configuration
|
|
139
|
+
* // bucketName: "STRING_VALUE",
|
|
140
|
+
* // prefix: "STRING_VALUE",
|
|
141
|
+
* // },
|
|
142
|
+
* // },
|
|
143
|
+
* // dataSources: { // ExperimentReportConfigurationDataSources
|
|
144
|
+
* // cloudWatchDashboards: [ // ExperimentReportConfigurationCloudWatchDashboardList
|
|
145
|
+
* // { // ExperimentReportConfigurationCloudWatchDashboard
|
|
146
|
+
* // dashboardIdentifier: "STRING_VALUE",
|
|
147
|
+
* // },
|
|
148
|
+
* // ],
|
|
149
|
+
* // },
|
|
150
|
+
* // preExperimentDuration: "STRING_VALUE",
|
|
151
|
+
* // postExperimentDuration: "STRING_VALUE",
|
|
152
|
+
* // },
|
|
153
|
+
* // experimentReport: { // ExperimentReport
|
|
154
|
+
* // state: { // ExperimentReportState
|
|
155
|
+
* // status: "pending" || "running" || "completed" || "cancelled" || "failed",
|
|
156
|
+
* // reason: "STRING_VALUE",
|
|
157
|
+
* // error: { // ExperimentReportError
|
|
158
|
+
* // code: "STRING_VALUE",
|
|
159
|
+
* // },
|
|
160
|
+
* // },
|
|
161
|
+
* // s3Reports: [ // ExperimentReportS3ReportList
|
|
162
|
+
* // { // ExperimentReportS3Report
|
|
163
|
+
* // arn: "STRING_VALUE",
|
|
164
|
+
* // reportType: "STRING_VALUE",
|
|
165
|
+
* // },
|
|
166
|
+
* // ],
|
|
167
|
+
* // },
|
|
136
168
|
* // },
|
|
137
169
|
* // };
|
|
138
170
|
*
|
|
@@ -126,6 +126,38 @@ declare const StopExperimentCommand_base: {
|
|
|
126
126
|
* // actionsMode: "skip-all" || "run-all",
|
|
127
127
|
* // },
|
|
128
128
|
* // targetAccountConfigurationsCount: Number("long"),
|
|
129
|
+
* // experimentReportConfiguration: { // ExperimentReportConfiguration
|
|
130
|
+
* // outputs: { // ExperimentReportConfigurationOutputs
|
|
131
|
+
* // s3Configuration: { // ExperimentReportConfigurationOutputsS3Configuration
|
|
132
|
+
* // bucketName: "STRING_VALUE",
|
|
133
|
+
* // prefix: "STRING_VALUE",
|
|
134
|
+
* // },
|
|
135
|
+
* // },
|
|
136
|
+
* // dataSources: { // ExperimentReportConfigurationDataSources
|
|
137
|
+
* // cloudWatchDashboards: [ // ExperimentReportConfigurationCloudWatchDashboardList
|
|
138
|
+
* // { // ExperimentReportConfigurationCloudWatchDashboard
|
|
139
|
+
* // dashboardIdentifier: "STRING_VALUE",
|
|
140
|
+
* // },
|
|
141
|
+
* // ],
|
|
142
|
+
* // },
|
|
143
|
+
* // preExperimentDuration: "STRING_VALUE",
|
|
144
|
+
* // postExperimentDuration: "STRING_VALUE",
|
|
145
|
+
* // },
|
|
146
|
+
* // experimentReport: { // ExperimentReport
|
|
147
|
+
* // state: { // ExperimentReportState
|
|
148
|
+
* // status: "pending" || "running" || "completed" || "cancelled" || "failed",
|
|
149
|
+
* // reason: "STRING_VALUE",
|
|
150
|
+
* // error: { // ExperimentReportError
|
|
151
|
+
* // code: "STRING_VALUE",
|
|
152
|
+
* // },
|
|
153
|
+
* // },
|
|
154
|
+
* // s3Reports: [ // ExperimentReportS3ReportList
|
|
155
|
+
* // { // ExperimentReportS3Report
|
|
156
|
+
* // arn: "STRING_VALUE",
|
|
157
|
+
* // reportType: "STRING_VALUE",
|
|
158
|
+
* // },
|
|
159
|
+
* // ],
|
|
160
|
+
* // },
|
|
129
161
|
* // },
|
|
130
162
|
* // };
|
|
131
163
|
*
|
|
@@ -95,6 +95,23 @@ declare const UpdateExperimentTemplateCommand_base: {
|
|
|
95
95
|
* experimentOptions: { // UpdateExperimentTemplateExperimentOptionsInput
|
|
96
96
|
* emptyTargetResolutionMode: "fail" || "skip",
|
|
97
97
|
* },
|
|
98
|
+
* experimentReportConfiguration: { // UpdateExperimentTemplateReportConfigurationInput
|
|
99
|
+
* outputs: { // ExperimentTemplateReportConfigurationOutputsInput
|
|
100
|
+
* s3Configuration: { // ReportConfigurationS3OutputInput
|
|
101
|
+
* bucketName: "STRING_VALUE",
|
|
102
|
+
* prefix: "STRING_VALUE",
|
|
103
|
+
* },
|
|
104
|
+
* },
|
|
105
|
+
* dataSources: { // ExperimentTemplateReportConfigurationDataSourcesInput
|
|
106
|
+
* cloudWatchDashboards: [ // ReportConfigurationCloudWatchDashboardInputList
|
|
107
|
+
* { // ReportConfigurationCloudWatchDashboardInput
|
|
108
|
+
* dashboardIdentifier: "STRING_VALUE",
|
|
109
|
+
* },
|
|
110
|
+
* ],
|
|
111
|
+
* },
|
|
112
|
+
* preExperimentDuration: "STRING_VALUE",
|
|
113
|
+
* postExperimentDuration: "STRING_VALUE",
|
|
114
|
+
* },
|
|
98
115
|
* };
|
|
99
116
|
* const command = new UpdateExperimentTemplateCommand(input);
|
|
100
117
|
* const response = await client.send(command);
|
|
@@ -168,6 +185,23 @@ declare const UpdateExperimentTemplateCommand_base: {
|
|
|
168
185
|
* // emptyTargetResolutionMode: "fail" || "skip",
|
|
169
186
|
* // },
|
|
170
187
|
* // targetAccountConfigurationsCount: Number("long"),
|
|
188
|
+
* // experimentReportConfiguration: { // ExperimentTemplateReportConfiguration
|
|
189
|
+
* // outputs: { // ExperimentTemplateReportConfigurationOutputs
|
|
190
|
+
* // s3Configuration: { // ReportConfigurationS3Output
|
|
191
|
+
* // bucketName: "STRING_VALUE",
|
|
192
|
+
* // prefix: "STRING_VALUE",
|
|
193
|
+
* // },
|
|
194
|
+
* // },
|
|
195
|
+
* // dataSources: { // ExperimentTemplateReportConfigurationDataSources
|
|
196
|
+
* // cloudWatchDashboards: [ // ExperimentTemplateReportConfigurationCloudWatchDashboardList
|
|
197
|
+
* // { // ExperimentTemplateReportConfigurationCloudWatchDashboard
|
|
198
|
+
* // dashboardIdentifier: "STRING_VALUE",
|
|
199
|
+
* // },
|
|
200
|
+
* // ],
|
|
201
|
+
* // },
|
|
202
|
+
* // preExperimentDuration: "STRING_VALUE",
|
|
203
|
+
* // postExperimentDuration: "STRING_VALUE",
|
|
204
|
+
* // },
|
|
171
205
|
* // },
|
|
172
206
|
* // };
|
|
173
207
|
*
|