|
5 | 5 |
|
6 | 6 | #pragma once
|
7 | 7 | #include <aws/evidently/CloudWatchEvidently_EXPORTS.h>
|
| 8 | +#include <aws/core/utils/memory/stl/AWSString.h> |
8 | 9 | #include <aws/core/utils/memory/stl/AWSVector.h>
|
9 | 10 | #include <aws/evidently/model/ExperimentReport.h>
|
10 | 11 | #include <aws/evidently/model/ExperimentResultsData.h>
|
@@ -35,6 +36,63 @@ namespace Model
|
35 | 36 | GetExperimentResultsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
36 | 37 |
|
37 | 38 |
|
| 39 | + /** |
| 40 | + * <p>If the experiment doesn't yet have enough events to provide valid results, |
| 41 | + * this field is returned with the message <code>Not enough events to generate |
| 42 | + * results</code>. If there are enough events to provide valid results, this field |
| 43 | + * is not returned.</p> |
| 44 | + */ |
| 45 | + inline const Aws::String& GetDetails() const{ return m_details; } |
| 46 | + |
| 47 | + /** |
| 48 | + * <p>If the experiment doesn't yet have enough events to provide valid results, |
| 49 | + * this field is returned with the message <code>Not enough events to generate |
| 50 | + * results</code>. If there are enough events to provide valid results, this field |
| 51 | + * is not returned.</p> |
| 52 | + */ |
| 53 | + inline void SetDetails(const Aws::String& value) { m_details = value; } |
| 54 | + |
| 55 | + /** |
| 56 | + * <p>If the experiment doesn't yet have enough events to provide valid results, |
| 57 | + * this field is returned with the message <code>Not enough events to generate |
| 58 | + * results</code>. If there are enough events to provide valid results, this field |
| 59 | + * is not returned.</p> |
| 60 | + */ |
| 61 | + inline void SetDetails(Aws::String&& value) { m_details = std::move(value); } |
| 62 | + |
| 63 | + /** |
| 64 | + * <p>If the experiment doesn't yet have enough events to provide valid results, |
| 65 | + * this field is returned with the message <code>Not enough events to generate |
| 66 | + * results</code>. If there are enough events to provide valid results, this field |
| 67 | + * is not returned.</p> |
| 68 | + */ |
| 69 | + inline void SetDetails(const char* value) { m_details.assign(value); } |
| 70 | + |
| 71 | + /** |
| 72 | + * <p>If the experiment doesn't yet have enough events to provide valid results, |
| 73 | + * this field is returned with the message <code>Not enough events to generate |
| 74 | + * results</code>. If there are enough events to provide valid results, this field |
| 75 | + * is not returned.</p> |
| 76 | + */ |
| 77 | + inline GetExperimentResultsResult& WithDetails(const Aws::String& value) { SetDetails(value); return *this;} |
| 78 | + |
| 79 | + /** |
| 80 | + * <p>If the experiment doesn't yet have enough events to provide valid results, |
| 81 | + * this field is returned with the message <code>Not enough events to generate |
| 82 | + * results</code>. If there are enough events to provide valid results, this field |
| 83 | + * is not returned.</p> |
| 84 | + */ |
| 85 | + inline GetExperimentResultsResult& WithDetails(Aws::String&& value) { SetDetails(std::move(value)); return *this;} |
| 86 | + |
| 87 | + /** |
| 88 | + * <p>If the experiment doesn't yet have enough events to provide valid results, |
| 89 | + * this field is returned with the message <code>Not enough events to generate |
| 90 | + * results</code>. If there are enough events to provide valid results, this field |
| 91 | + * is not returned.</p> |
| 92 | + */ |
| 93 | + inline GetExperimentResultsResult& WithDetails(const char* value) { SetDetails(value); return *this;} |
| 94 | + |
| 95 | + |
38 | 96 | /**
|
39 | 97 | * <p>An array of structures that include the reports that you requested.</p>
|
40 | 98 | */
|
@@ -151,6 +209,8 @@ namespace Model
|
151 | 209 |
|
152 | 210 | private:
|
153 | 211 |
|
| 212 | + Aws::String m_details; |
| 213 | + |
154 | 214 | Aws::Vector<ExperimentReport> m_reports;
|
155 | 215 |
|
156 | 216 | Aws::Vector<ExperimentResultsData> m_resultsData;
|
|
0 commit comments