Class: Aws::CloudWatchEvidently::Types::GetExperimentResultsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchEvidently::Types::GetExperimentResultsRequest
- Defined in:
- gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base_stat ⇒ String
The statistic used to calculate experiment results.
-
#end_time ⇒ Time
The date and time that the experiment ended, if it is completed.
-
#experiment ⇒ String
The name of the experiment to retrieve the results of.
-
#metric_names ⇒ Array<String>
The names of the experiment metrics that you want to see the results of.
-
#period ⇒ Integer
In seconds, the amount of time to aggregate results together.
-
#project ⇒ String
The name or ARN of the project that contains the experiment that you want to see the results of.
-
#report_names ⇒ Array<String>
The names of the report types that you want to see.
-
#result_stats ⇒ Array<String>
The statistics that you want to see in the returned results.
-
#start_time ⇒ Time
The date and time that the experiment started.
-
#treatment_names ⇒ Array<String>
The names of the experiment treatments that you want to see the results for.
Instance Attribute Details
#base_stat ⇒ String
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.
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 1338 class GetExperimentResultsRequest < Struct.new( :base_stat, :end_time, :experiment, :metric_names, :period, :project, :report_names, :result_stats, :start_time, :treatment_names) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
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.
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 1338 class GetExperimentResultsRequest < Struct.new( :base_stat, :end_time, :experiment, :metric_names, :period, :project, :report_names, :result_stats, :start_time, :treatment_names) SENSITIVE = [] include Aws::Structure end |
#experiment ⇒ String
The name of the experiment to retrieve the results of.
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 1338 class GetExperimentResultsRequest < Struct.new( :base_stat, :end_time, :experiment, :metric_names, :period, :project, :report_names, :result_stats, :start_time, :treatment_names) SENSITIVE = [] include Aws::Structure end |
#metric_names ⇒ Array<String>
The names of the experiment metrics that you want to see the results of.
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 1338 class GetExperimentResultsRequest < Struct.new( :base_stat, :end_time, :experiment, :metric_names, :period, :project, :report_names, :result_stats, :start_time, :treatment_names) SENSITIVE = [] include Aws::Structure end |
#period ⇒ Integer
In seconds, the amount of time to aggregate results together.
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 1338 class GetExperimentResultsRequest < Struct.new( :base_stat, :end_time, :experiment, :metric_names, :period, :project, :report_names, :result_stats, :start_time, :treatment_names) SENSITIVE = [] include Aws::Structure end |
#project ⇒ String
The name or ARN of the project that contains the experiment that you want to see the results of.
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 1338 class GetExperimentResultsRequest < Struct.new( :base_stat, :end_time, :experiment, :metric_names, :period, :project, :report_names, :result_stats, :start_time, :treatment_names) SENSITIVE = [] include Aws::Structure end |
#report_names ⇒ Array<String>
The names of the report types that you want to see. Currently,
BayesianInference is the only valid value.
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 1338 class GetExperimentResultsRequest < Struct.new( :base_stat, :end_time, :experiment, :metric_names, :period, :project, :report_names, :result_stats, :start_time, :treatment_names) SENSITIVE = [] include Aws::Structure end |
#result_stats ⇒ Array<String>
The statistics that you want to see in the returned results.
PValuespecifies 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.ConfidenceIntervalspecifies 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 thebaseStatof a variation and the baseline. Evidently returns the 95% confidence interval.TreatmentEffectis the difference in the statistic specified by thebaseStatparameter between each variation and the default variation.BaseStatreturns the statistical values collected for the metric for each variation. The statistic uses the same statistic specified in thebaseStatparameter. Therefore, ifbaseStatismean, this returns the mean of the values collected for each variation.
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 1338 class GetExperimentResultsRequest < Struct.new( :base_stat, :end_time, :experiment, :metric_names, :period, :project, :report_names, :result_stats, :start_time, :treatment_names) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The date and time that the experiment started.
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 1338 class GetExperimentResultsRequest < Struct.new( :base_stat, :end_time, :experiment, :metric_names, :period, :project, :report_names, :result_stats, :start_time, :treatment_names) SENSITIVE = [] include Aws::Structure end |
#treatment_names ⇒ Array<String>
The names of the experiment treatments that you want to see the results for.
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 1338 class GetExperimentResultsRequest < Struct.new( :base_stat, :end_time, :experiment, :metric_names, :period, :project, :report_names, :result_stats, :start_time, :treatment_names) SENSITIVE = [] include Aws::Structure end |