aws-sdk-cloudwatchevidently 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f3f58c6a280d62dbd2882697ce813b620de949d15a155b590b342baade0cb7b
|
4
|
+
data.tar.gz: 066babd43b4b8b6f7d8fe99117d3844a8c6a53766873f36425a1f3907c4425e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1971f9f8bcb807c344947a3f772dea1596736763a59dfe6b4e6b6dfbdf3c4fa59076d029110f0fd4e91541d8774fce5185e55992880e9b6f785d9f9f5b61a616
|
7
|
+
data.tar.gz: 3e4872f524c53b4af5866be95324240d37d2c38628612d0999a610beb1c2c9e35d197ffd3c20f4c23d0b498871a3c655d13b88ab7c5c924a630024569dcd09f3
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.6.0
|
@@ -1201,7 +1201,13 @@ module Aws::CloudWatchEvidently
|
|
1201
1201
|
req.send_request(options)
|
1202
1202
|
end
|
1203
1203
|
|
1204
|
-
# Retrieves the results of a running or completed experiment.
|
1204
|
+
# Retrieves the results of a running or completed experiment. No results
|
1205
|
+
# are available until there have been 100 events for each variation and
|
1206
|
+
# at least 10 minutes have passed since the start of the experiment.
|
1207
|
+
#
|
1208
|
+
# Experiment results are available up to 63 days after the start of the
|
1209
|
+
# experiment. They are not available after that because of CloudWatch
|
1210
|
+
# data retention policies.
|
1205
1211
|
#
|
1206
1212
|
# @option params [String] :base_stat
|
1207
1213
|
# The statistic used to calculate experiment results. Currently the only
|
@@ -1209,7 +1215,8 @@ module Aws::CloudWatchEvidently
|
|
1209
1215
|
# the statistic.
|
1210
1216
|
#
|
1211
1217
|
# @option params [Time,DateTime,Date,Integer,String] :end_time
|
1212
|
-
# The date and time that the experiment ended, if it is completed.
|
1218
|
+
# The date and time that the experiment ended, if it is completed. This
|
1219
|
+
# must be no longer than 30 days after the experiment start time.
|
1213
1220
|
#
|
1214
1221
|
# @option params [required, String] :experiment
|
1215
1222
|
# The name of the experiment to retrieve the results of.
|
@@ -1262,6 +1269,7 @@ module Aws::CloudWatchEvidently
|
|
1262
1269
|
#
|
1263
1270
|
# @return [Types::GetExperimentResultsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1264
1271
|
#
|
1272
|
+
# * {Types::GetExperimentResultsResponse#details #details} => String
|
1265
1273
|
# * {Types::GetExperimentResultsResponse#reports #reports} => Array<Types::ExperimentReport>
|
1266
1274
|
# * {Types::GetExperimentResultsResponse#results_data #results_data} => Array<Types::ExperimentResultsData>
|
1267
1275
|
# * {Types::GetExperimentResultsResponse#timestamps #timestamps} => Array<Time>
|
@@ -1283,6 +1291,7 @@ module Aws::CloudWatchEvidently
|
|
1283
1291
|
#
|
1284
1292
|
# @example Response structure
|
1285
1293
|
#
|
1294
|
+
# resp.details #=> String
|
1286
1295
|
# resp.reports #=> Array
|
1287
1296
|
# resp.reports[0].content #=> String
|
1288
1297
|
# resp.reports[0].metric_name #=> String
|
@@ -1823,7 +1832,8 @@ module Aws::CloudWatchEvidently
|
|
1823
1832
|
# [1]: https://docs.aws.amazon.com/cloudwatchevidently/latest/APIReference/API_CreateExperiment.html
|
1824
1833
|
#
|
1825
1834
|
# @option params [required, Time,DateTime,Date,Integer,String] :analysis_complete_time
|
1826
|
-
# The date and time to end the experiment.
|
1835
|
+
# The date and time to end the experiment. This must be no more than 30
|
1836
|
+
# days after the experiment starts.
|
1827
1837
|
#
|
1828
1838
|
# @option params [required, String] :experiment
|
1829
1839
|
# The name of the experiment to start.
|
@@ -2597,7 +2607,7 @@ module Aws::CloudWatchEvidently
|
|
2597
2607
|
params: params,
|
2598
2608
|
config: config)
|
2599
2609
|
context[:gem_name] = 'aws-sdk-cloudwatchevidently'
|
2600
|
-
context[:gem_version] = '1.
|
2610
|
+
context[:gem_version] = '1.6.0'
|
2601
2611
|
Seahorse::Client::Request.new(handlers, context)
|
2602
2612
|
end
|
2603
2613
|
|
@@ -469,6 +469,7 @@ module Aws::CloudWatchEvidently
|
|
469
469
|
GetExperimentResultsRequest.add_member(:treatment_names, Shapes::ShapeRef.new(shape: TreatmentNameList, required: true, location_name: "treatmentNames"))
|
470
470
|
GetExperimentResultsRequest.struct_class = Types::GetExperimentResultsRequest
|
471
471
|
|
472
|
+
GetExperimentResultsResponse.add_member(:details, Shapes::ShapeRef.new(shape: String, location_name: "details"))
|
472
473
|
GetExperimentResultsResponse.add_member(:reports, Shapes::ShapeRef.new(shape: ExperimentReportList, location_name: "reports"))
|
473
474
|
GetExperimentResultsResponse.add_member(:results_data, Shapes::ShapeRef.new(shape: ExperimentResultsDataList, location_name: "resultsData"))
|
474
475
|
GetExperimentResultsResponse.add_member(:timestamps, Shapes::ShapeRef.new(shape: TimestampList, location_name: "timestamps"))
|
@@ -1351,6 +1351,7 @@ module Aws::CloudWatchEvidently
|
|
1351
1351
|
#
|
1352
1352
|
# @!attribute [rw] end_time
|
1353
1353
|
# The date and time that the experiment ended, if it is completed.
|
1354
|
+
# This must be no longer than 30 days after the experiment start time.
|
1354
1355
|
# @return [Time]
|
1355
1356
|
#
|
1356
1357
|
# @!attribute [rw] experiment
|
@@ -1429,6 +1430,13 @@ module Aws::CloudWatchEvidently
|
|
1429
1430
|
include Aws::Structure
|
1430
1431
|
end
|
1431
1432
|
|
1433
|
+
# @!attribute [rw] details
|
1434
|
+
# If the experiment doesn't yet have enough events to provide valid
|
1435
|
+
# results, this field is returned with the message `Not enough events
|
1436
|
+
# to generate results`. If there are enough events to provide valid
|
1437
|
+
# results, this field is not returned.
|
1438
|
+
# @return [String]
|
1439
|
+
#
|
1432
1440
|
# @!attribute [rw] reports
|
1433
1441
|
# An array of structures that include the reports that you requested.
|
1434
1442
|
# @return [Array<Types::ExperimentReport>]
|
@@ -1445,6 +1453,7 @@ module Aws::CloudWatchEvidently
|
|
1445
1453
|
# @see http://docs.aws.amazon.com/goto/WebAPI/evidently-2021-02-01/GetExperimentResultsResponse AWS API Documentation
|
1446
1454
|
#
|
1447
1455
|
class GetExperimentResultsResponse < Struct.new(
|
1456
|
+
:details,
|
1448
1457
|
:reports,
|
1449
1458
|
:results_data,
|
1450
1459
|
:timestamps)
|
@@ -2785,7 +2794,8 @@ module Aws::CloudWatchEvidently
|
|
2785
2794
|
# }
|
2786
2795
|
#
|
2787
2796
|
# @!attribute [rw] analysis_complete_time
|
2788
|
-
# The date and time to end the experiment.
|
2797
|
+
# The date and time to end the experiment. This must be no more than
|
2798
|
+
# 30 days after the experiment starts.
|
2789
2799
|
# @return [Time]
|
2790
2800
|
#
|
2791
2801
|
# @!attribute [rw] experiment
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudwatchevidently
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|