@Generated(value="software.amazon.awssdk:codegen") public final class GetExperimentResultsRequest extends EvidentlyRequest implements ToCopyableBuilder<GetExperimentResultsRequest.Builder,GetExperimentResultsRequest>
| Modifier and Type | Class and Description |
|---|---|
static interface |
GetExperimentResultsRequest.Builder |
| Modifier and Type | Method and Description |
|---|---|
ExperimentBaseStat |
baseStat()
The statistic used to calculate experiment results.
|
String |
baseStatAsString()
The statistic used to calculate experiment results.
|
static GetExperimentResultsRequest.Builder |
builder() |
Instant |
endTime()
The date and time that the experiment ended, if it is completed.
|
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
String |
experiment()
The name of the experiment to retrieve the results of.
|
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
boolean |
hasMetricNames()
For responses, this returns true if the service returned a value for the MetricNames property.
|
boolean |
hasReportNames()
For responses, this returns true if the service returned a value for the ReportNames property.
|
boolean |
hasResultStats()
For responses, this returns true if the service returned a value for the ResultStats property.
|
boolean |
hasTreatmentNames()
For responses, this returns true if the service returned a value for the TreatmentNames property.
|
List<String> |
metricNames()
The names of the experiment metrics that you want to see the results of.
|
Long |
period()
In seconds, the amount of time to aggregate results together.
|
String |
project()
The name or ARN of the project that contains the experiment that you want to see the results of.
|
List<ExperimentReportName> |
reportNames()
The names of the report types that you want to see.
|
List<String> |
reportNamesAsStrings()
The names of the report types that you want to see.
|
List<ExperimentResultRequestType> |
resultStats()
The statistics that you want to see in the returned results.
|
List<String> |
resultStatsAsStrings()
The statistics that you want to see in the returned results.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends GetExperimentResultsRequest.Builder> |
serializableBuilderClass() |
Instant |
startTime()
The date and time that the experiment started.
|
GetExperimentResultsRequest.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
List<String> |
treatmentNames()
The names of the experiment treatments that you want to see the results for.
|
overrideConfigurationclone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final ExperimentBaseStat baseStat()
The statistic used to calculate experiment results. Currently the only valid value is mean, which
uses the mean of the collected values as the statistic.
If the service returns an enum value that is not available in the current SDK version, baseStat will
return ExperimentBaseStat.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
baseStatAsString().
mean,
which uses the mean of the collected values as the statistic.ExperimentBaseStatpublic final String baseStatAsString()
The statistic used to calculate experiment results. Currently the only valid value is mean, which
uses the mean of the collected values as the statistic.
If the service returns an enum value that is not available in the current SDK version, baseStat will
return ExperimentBaseStat.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
baseStatAsString().
mean,
which uses the mean of the collected values as the statistic.ExperimentBaseStatpublic final Instant endTime()
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.
public final String experiment()
The name of the experiment to retrieve the results of.
public final boolean hasMetricNames()
isEmpty() method on the property).
This is useful because the SDK will never return a null collection or map, but you may need to differentiate
between the service returning nothing (or null) and the service returning an empty collection or map. For
requests, this returns true if a value for the property was specified in the request builder, and false if a
value was not specified.public final List<String> metricNames()
The names of the experiment metrics that you want to see the results of.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasMetricNames() method.
public final Long period()
In seconds, the amount of time to aggregate results together.
public final String project()
The name or ARN of the project that contains the experiment that you want to see the results of.
public final List<ExperimentReportName> reportNames()
The names of the report types that you want to see. Currently, BayesianInference is the only valid
value.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasReportNames() method.
BayesianInference is the only
valid value.public final boolean hasReportNames()
isEmpty() method on the property).
This is useful because the SDK will never return a null collection or map, but you may need to differentiate
between the service returning nothing (or null) and the service returning an empty collection or map. For
requests, this returns true if a value for the property was specified in the request builder, and false if a
value was not specified.public final List<String> reportNamesAsStrings()
The names of the report types that you want to see. Currently, BayesianInference is the only valid
value.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasReportNames() method.
BayesianInference is the only
valid value.public final List<ExperimentResultRequestType> resultStats()
The statistics that you want to see in the returned results.
PValue specifies to use p-values for the results. A p-value is used in hypothesis testing to measure
how often you are willing to make a mistake in rejecting the null hypothesis. A general practice is to reject the
null hypothesis and declare that the results are statistically significant when the p-value is less than 0.05.
ConfidenceInterval specifies a confidence interval for the results. The confidence interval
represents the range of values for the chosen metric that is likely to contain the true difference between the
baseStat of a variation and the baseline. Evidently returns the 95% confidence interval.
TreatmentEffect is the difference in the statistic specified by the baseStat parameter
between each variation and the default variation.
BaseStat returns the statistical values collected for the metric for each variation. The statistic
uses the same statistic specified in the baseStat parameter. Therefore, if baseStat is
mean, this returns the mean of the values collected for each variation.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasResultStats() method.
PValue specifies to use p-values for the results. A p-value is used in hypothesis testing to
measure how often you are willing to make a mistake in rejecting the null hypothesis. A general practice
is to reject the null hypothesis and declare that the results are statistically significant when the
p-value is less than 0.05.
ConfidenceInterval specifies a confidence interval for the results. The confidence interval
represents the range of values for the chosen metric that is likely to contain the true difference
between the baseStat of a variation and the baseline. Evidently returns the 95% confidence
interval.
TreatmentEffect is the difference in the statistic specified by the baseStat
parameter between each variation and the default variation.
BaseStat returns the statistical values collected for the metric for each variation. The
statistic uses the same statistic specified in the baseStat parameter. Therefore, if
baseStat is mean, this returns the mean of the values collected for each
variation.
public final boolean hasResultStats()
isEmpty() method on the property).
This is useful because the SDK will never return a null collection or map, but you may need to differentiate
between the service returning nothing (or null) and the service returning an empty collection or map. For
requests, this returns true if a value for the property was specified in the request builder, and false if a
value was not specified.public final List<String> resultStatsAsStrings()
The statistics that you want to see in the returned results.
PValue specifies to use p-values for the results. A p-value is used in hypothesis testing to measure
how often you are willing to make a mistake in rejecting the null hypothesis. A general practice is to reject the
null hypothesis and declare that the results are statistically significant when the p-value is less than 0.05.
ConfidenceInterval specifies a confidence interval for the results. The confidence interval
represents the range of values for the chosen metric that is likely to contain the true difference between the
baseStat of a variation and the baseline. Evidently returns the 95% confidence interval.
TreatmentEffect is the difference in the statistic specified by the baseStat parameter
between each variation and the default variation.
BaseStat returns the statistical values collected for the metric for each variation. The statistic
uses the same statistic specified in the baseStat parameter. Therefore, if baseStat is
mean, this returns the mean of the values collected for each variation.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasResultStats() method.
PValue specifies to use p-values for the results. A p-value is used in hypothesis testing to
measure how often you are willing to make a mistake in rejecting the null hypothesis. A general practice
is to reject the null hypothesis and declare that the results are statistically significant when the
p-value is less than 0.05.
ConfidenceInterval specifies a confidence interval for the results. The confidence interval
represents the range of values for the chosen metric that is likely to contain the true difference
between the baseStat of a variation and the baseline. Evidently returns the 95% confidence
interval.
TreatmentEffect is the difference in the statistic specified by the baseStat
parameter between each variation and the default variation.
BaseStat returns the statistical values collected for the metric for each variation. The
statistic uses the same statistic specified in the baseStat parameter. Therefore, if
baseStat is mean, this returns the mean of the values collected for each
variation.
public final Instant startTime()
The date and time that the experiment started.
public final boolean hasTreatmentNames()
isEmpty() method on the property).
This is useful because the SDK will never return a null collection or map, but you may need to differentiate
between the service returning nothing (or null) and the service returning an empty collection or map. For
requests, this returns true if a value for the property was specified in the request builder, and false if a
value was not specified.public final List<String> treatmentNames()
The names of the experiment treatments that you want to see the results for.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasTreatmentNames() method.
public GetExperimentResultsRequest.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<GetExperimentResultsRequest.Builder,GetExperimentResultsRequest>toBuilder in class EvidentlyRequestpublic static GetExperimentResultsRequest.Builder builder()
public static Class<? extends GetExperimentResultsRequest.Builder> serializableBuilderClass()
public final int hashCode()
hashCode in class AwsRequestpublic final boolean equals(Object obj)
equals in class AwsRequestpublic final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
getValueForField in class SdkRequestCopyright © 2023. All rights reserved.