Skip to content

Commit 9919119

Browse files
author
AWS
committed
Amazon CloudWatch Evidently Update: Add detail message inside GetExperimentResults API response to indicate experiment result availability
1 parent 06878b7 commit 9919119

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon CloudWatch Evidently",
4+
"contributor": "",
5+
"description": "Add detail message inside GetExperimentResults API response to indicate experiment result availability"
6+
}

services/evidently/src/main/resources/codegen-resources/service-2.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
{"shape":"ResourceNotFoundException"},
231231
{"shape":"AccessDeniedException"}
232232
],
233-
"documentation":"<p>Retrieves the results of a running or completed experiment.</p>"
233+
"documentation":"<p>Retrieves the results of a running or completed experiment. No results are available until there have been 100 events for each variation and at least 10 minutes have passed since the start of the experiment.</p> <p>Experiment results are available up to 63 days after the start of the experiment. They are not available after that because of CloudWatch data retention policies.</p>"
234234
},
235235
"GetFeature":{
236236
"name":"GetFeature",
@@ -1649,7 +1649,7 @@
16491649
},
16501650
"endTime":{
16511651
"shape":"Timestamp",
1652-
"documentation":"<p>The date and time that the experiment ended, if it is completed.</p>"
1652+
"documentation":"<p>The date and time that the experiment ended, if it is completed. This must be no longer than 30 days after the experiment start time.</p>"
16531653
},
16541654
"experiment":{
16551655
"shape":"ExperimentName",
@@ -1692,6 +1692,10 @@
16921692
"GetExperimentResultsResponse":{
16931693
"type":"structure",
16941694
"members":{
1695+
"details":{
1696+
"shape":"String",
1697+
"documentation":"<p>If the experiment doesn't yet have enough events to provide valid results, this field is returned with the message <code>Not enough events to generate results</code>. If there are enough events to provide valid results, this field is not returned.</p>"
1698+
},
16951699
"reports":{
16961700
"shape":"ExperimentReportList",
16971701
"documentation":"<p>An array of structures that include the reports that you requested.</p>"
@@ -2832,7 +2836,7 @@
28322836
"members":{
28332837
"analysisCompleteTime":{
28342838
"shape":"Timestamp",
2835-
"documentation":"<p>The date and time to end the experiment.</p>"
2839+
"documentation":"<p>The date and time to end the experiment. This must be no more than 30 days after the experiment starts.</p>"
28362840
},
28372841
"experiment":{
28382842
"shape":"ExperimentName",

0 commit comments

Comments
 (0)