public static interface GetExperimentResultsRequest.Builder extends EvidentlyRequest.Builder, SdkPojo, CopyableBuilder<GetExperimentResultsRequest.Builder,GetExperimentResultsRequest>
| Modifier and Type | Method and Description |
|---|---|
GetExperimentResultsRequest.Builder |
baseStat(ExperimentBaseStat baseStat)
The statistic used to calculate experiment results.
|
GetExperimentResultsRequest.Builder |
baseStat(String baseStat)
The statistic used to calculate experiment results.
|
GetExperimentResultsRequest.Builder |
endTime(Instant endTime)
The date and time that the experiment ended, if it is completed.
|
GetExperimentResultsRequest.Builder |
experiment(String experiment)
The name of the experiment to retrieve the results of.
|
GetExperimentResultsRequest.Builder |
metricNames(Collection<String> metricNames)
The names of the experiment metrics that you want to see the results of.
|
GetExperimentResultsRequest.Builder |
metricNames(String... metricNames)
The names of the experiment metrics that you want to see the results of.
|
GetExperimentResultsRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) |
GetExperimentResultsRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) |
GetExperimentResultsRequest.Builder |
period(Long period)
In seconds, the amount of time to aggregate results together.
|
GetExperimentResultsRequest.Builder |
project(String project)
The name or ARN of the project that contains the experiment that you want to see the results of.
|
GetExperimentResultsRequest.Builder |
reportNames(Collection<ExperimentReportName> reportNames)
The names of the report types that you want to see.
|
GetExperimentResultsRequest.Builder |
reportNames(ExperimentReportName... reportNames)
The names of the report types that you want to see.
|
GetExperimentResultsRequest.Builder |
reportNamesWithStrings(Collection<String> reportNames)
The names of the report types that you want to see.
|
GetExperimentResultsRequest.Builder |
reportNamesWithStrings(String... reportNames)
The names of the report types that you want to see.
|
GetExperimentResultsRequest.Builder |
resultStats(Collection<ExperimentResultRequestType> resultStats)
The statistics that you want to see in the returned results.
|
GetExperimentResultsRequest.Builder |
resultStats(ExperimentResultRequestType... resultStats)
The statistics that you want to see in the returned results.
|
GetExperimentResultsRequest.Builder |
resultStatsWithStrings(Collection<String> resultStats)
The statistics that you want to see in the returned results.
|
GetExperimentResultsRequest.Builder |
resultStatsWithStrings(String... resultStats)
The statistics that you want to see in the returned results.
|
GetExperimentResultsRequest.Builder |
startTime(Instant startTime)
The date and time that the experiment started.
|
GetExperimentResultsRequest.Builder |
treatmentNames(Collection<String> treatmentNames)
The names of the experiment treatments that you want to see the results for.
|
GetExperimentResultsRequest.Builder |
treatmentNames(String... treatmentNames)
The names of the experiment treatments that you want to see the results for.
|
buildoverrideConfigurationequalsBySdkFields, sdkFieldscopyapplyMutation, buildGetExperimentResultsRequest.Builder baseStat(String 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.
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.ExperimentBaseStat,
ExperimentBaseStatGetExperimentResultsRequest.Builder baseStat(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.
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.ExperimentBaseStat,
ExperimentBaseStatGetExperimentResultsRequest.Builder endTime(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.
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.GetExperimentResultsRequest.Builder experiment(String experiment)
The name of the experiment to retrieve the results of.
experiment - The name of the experiment to retrieve the results of.GetExperimentResultsRequest.Builder metricNames(Collection<String> metricNames)
The names of the experiment metrics that you want to see the results of.
metricNames - The names of the experiment metrics that you want to see the results of.GetExperimentResultsRequest.Builder metricNames(String... metricNames)
The names of the experiment metrics that you want to see the results of.
metricNames - The names of the experiment metrics that you want to see the results of.GetExperimentResultsRequest.Builder period(Long period)
In seconds, the amount of time to aggregate results together.
period - In seconds, the amount of time to aggregate results together.GetExperimentResultsRequest.Builder project(String project)
The name or ARN of the project that contains the experiment that you want to see the results of.
project - The name or ARN of the project that contains the experiment that you want to see the results of.GetExperimentResultsRequest.Builder reportNamesWithStrings(Collection<String> reportNames)
The names of the report types that you want to see. Currently, BayesianInference is the only
valid value.
reportNames - The names of the report types that you want to see. Currently, BayesianInference is the
only valid value.GetExperimentResultsRequest.Builder reportNamesWithStrings(String... reportNames)
The names of the report types that you want to see. Currently, BayesianInference is the only
valid value.
reportNames - The names of the report types that you want to see. Currently, BayesianInference is the
only valid value.GetExperimentResultsRequest.Builder reportNames(Collection<ExperimentReportName> reportNames)
The names of the report types that you want to see. Currently, BayesianInference is the only
valid value.
reportNames - The names of the report types that you want to see. Currently, BayesianInference is the
only valid value.GetExperimentResultsRequest.Builder reportNames(ExperimentReportName... reportNames)
The names of the report types that you want to see. Currently, BayesianInference is the only
valid value.
reportNames - The names of the report types that you want to see. Currently, BayesianInference is the
only valid value.GetExperimentResultsRequest.Builder resultStatsWithStrings(Collection<String> 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.
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.
GetExperimentResultsRequest.Builder resultStatsWithStrings(String... 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.
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.
GetExperimentResultsRequest.Builder resultStats(Collection<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.
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.
GetExperimentResultsRequest.Builder resultStats(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.
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.
GetExperimentResultsRequest.Builder startTime(Instant startTime)
The date and time that the experiment started.
startTime - The date and time that the experiment started.GetExperimentResultsRequest.Builder treatmentNames(Collection<String> treatmentNames)
The names of the experiment treatments that you want to see the results for.
treatmentNames - The names of the experiment treatments that you want to see the results for.GetExperimentResultsRequest.Builder treatmentNames(String... treatmentNames)
The names of the experiment treatments that you want to see the results for.
treatmentNames - The names of the experiment treatments that you want to see the results for.GetExperimentResultsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
overrideConfiguration in interface AwsRequest.BuilderGetExperimentResultsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
overrideConfiguration in interface AwsRequest.BuilderCopyright © 2022. All rights reserved.