@@ -122,6 +122,23 @@ export interface CreateExperimentTemplateCommandOutput extends CreateExperimentT
122
122
* accountTargeting: "single-account" || "multi-account",
123
123
* emptyTargetResolutionMode: "fail" || "skip",
124
124
* },
125
+ * experimentReportConfiguration: { // CreateExperimentTemplateReportConfigurationInput
126
+ * outputs: { // ExperimentTemplateReportConfigurationOutputsInput
127
+ * s3Configuration: { // ReportConfigurationS3OutputInput
128
+ * bucketName: "STRING_VALUE",
129
+ * prefix: "STRING_VALUE",
130
+ * },
131
+ * },
132
+ * dataSources: { // ExperimentTemplateReportConfigurationDataSourcesInput
133
+ * cloudWatchDashboards: [ // ReportConfigurationCloudWatchDashboardInputList
134
+ * { // ReportConfigurationCloudWatchDashboardInput
135
+ * dashboardIdentifier: "STRING_VALUE",
136
+ * },
137
+ * ],
138
+ * },
139
+ * preExperimentDuration: "STRING_VALUE",
140
+ * postExperimentDuration: "STRING_VALUE",
141
+ * },
125
142
* };
126
143
* const command = new CreateExperimentTemplateCommand(input);
127
144
* const response = await client.send(command);
@@ -195,6 +212,23 @@ export interface CreateExperimentTemplateCommandOutput extends CreateExperimentT
195
212
* // emptyTargetResolutionMode: "fail" || "skip",
196
213
* // },
197
214
* // targetAccountConfigurationsCount: Number("long"),
215
+ * // experimentReportConfiguration: { // ExperimentTemplateReportConfiguration
216
+ * // outputs: { // ExperimentTemplateReportConfigurationOutputs
217
+ * // s3Configuration: { // ReportConfigurationS3Output
218
+ * // bucketName: "STRING_VALUE",
219
+ * // prefix: "STRING_VALUE",
220
+ * // },
221
+ * // },
222
+ * // dataSources: { // ExperimentTemplateReportConfigurationDataSources
223
+ * // cloudWatchDashboards: [ // ExperimentTemplateReportConfigurationCloudWatchDashboardList
224
+ * // { // ExperimentTemplateReportConfigurationCloudWatchDashboard
225
+ * // dashboardIdentifier: "STRING_VALUE",
226
+ * // },
227
+ * // ],
228
+ * // },
229
+ * // preExperimentDuration: "STRING_VALUE",
230
+ * // postExperimentDuration: "STRING_VALUE",
231
+ * // },
198
232
* // },
199
233
* // };
200
234
*
0 commit comments