aws-sdk-cloudwatchevidently 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19f85dfeb3c1c5263519e6fc97c24fd897d5b6dd92652e6e3c93e59ddba58cd2
4
- data.tar.gz: 2ed1fa3b479ceede3c804e22dacb46fc43a4653ed26670e2d9f7541626a4850f
3
+ metadata.gz: 6f3f58c6a280d62dbd2882697ce813b620de949d15a155b590b342baade0cb7b
4
+ data.tar.gz: 066babd43b4b8b6f7d8fe99117d3844a8c6a53766873f36425a1f3907c4425e9
5
5
  SHA512:
6
- metadata.gz: f8c2d5a36c59745d40f7a635d5720cce2ccd01daa3b9f38354153d1cd43279db2bca45be17a5a536c691c70810632c7c255cb99a6572d31d775cb110b4240b79
7
- data.tar.gz: fc634217a94e3bb3594528ba90fb90df605fac385e4428d77b77fa3e9ba86a15cfc2c591d461b6e0c8ae7074c33dba912bcd6b8b15a299605924b0e701d17ccf
6
+ metadata.gz: 1971f9f8bcb807c344947a3f772dea1596736763a59dfe6b4e6b6dfbdf3c4fa59076d029110f0fd4e91541d8774fce5185e55992880e9b6f785d9f9f5b61a616
7
+ data.tar.gz: 3e4872f524c53b4af5866be95324240d37d2c38628612d0999a610beb1c2c9e35d197ffd3c20f4c23d0b498871a3c655d13b88ab7c5c924a630024569dcd09f3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.6.0 (2022-05-09)
5
+ ------------------
6
+
7
+ * Feature - Add detail message inside GetExperimentResults API response to indicate experiment result availability
8
+
4
9
  1.5.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.0
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.5.0'
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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-cloudwatchevidently/customizations'
48
48
  # @!group service
49
49
  module Aws::CloudWatchEvidently
50
50
 
51
- GEM_VERSION = '1.5.0'
51
+ GEM_VERSION = '1.6.0'
52
52
 
53
53
  end
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.5.0
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-02-24 00:00:00.000000000 Z
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