aws-sdk-cloudwatchevidently 1.3.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: d4b051b4720b1550b4ed710f5a401a34f553e8ee6f0f2c69af82ac8e1b8d1842
4
- data.tar.gz: 496932c4ae5747273da3f65de714d5216b24669765f8228cbcffc80081328969
3
+ metadata.gz: 6f3f58c6a280d62dbd2882697ce813b620de949d15a155b590b342baade0cb7b
4
+ data.tar.gz: 066babd43b4b8b6f7d8fe99117d3844a8c6a53766873f36425a1f3907c4425e9
5
5
  SHA512:
6
- metadata.gz: b85306603b70deb98a5436a2d3fff873447fe25ca17f12b3f298f5bd8a0e26b0adb6d588123acb5453510daeb5ea18c5875b52193386f4417ea23acc7e181d30
7
- data.tar.gz: 6db222d7ce50c32964a74d86173d9af7cfdc6c7dded48bf76d3f2053a756a827a7cc33d2c8180cfeb7a835314c74c744e284fff0b19704c169f9dc5897fd27dc
6
+ metadata.gz: 1971f9f8bcb807c344947a3f772dea1596736763a59dfe6b4e6b6dfbdf3c4fa59076d029110f0fd4e91541d8774fce5185e55992880e9b6f785d9f9f5b61a616
7
+ data.tar.gz: 3e4872f524c53b4af5866be95324240d37d2c38628612d0999a610beb1c2c9e35d197ffd3c20f4c23d0b498871a3c655d13b88ab7c5c924a630024569dcd09f3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
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
+
9
+ 1.5.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.4.0 (2022-02-17)
15
+ ------------------
16
+
17
+ * Feature - Add support for filtering list of experiments and launches by status
18
+
4
19
  1.3.0 (2022-02-03)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0
1
+ 1.6.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
32
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
@@ -75,6 +76,7 @@ module Aws::CloudWatchEvidently
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
78
80
  add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::RecursionDetection)
80
82
  add_plugin(Aws::Plugins::SignatureV4)
@@ -502,11 +504,11 @@ module Aws::CloudWatchEvidently
502
504
  # {
503
505
  # desired_change: "INCREASE", # accepts INCREASE, DECREASE
504
506
  # metric_definition: { # required
505
- # entity_id_key: "JsonPath",
507
+ # entity_id_key: "JsonPath", # required
506
508
  # event_pattern: "MetricDefinitionConfigEventPatternString",
507
- # name: "CwDimensionSafeName",
509
+ # name: "CwDimensionSafeName", # required
508
510
  # unit_label: "MetricUnitLabel",
509
- # value_key: "JsonPath",
511
+ # value_key: "JsonPath", # required
510
512
  # },
511
513
  # },
512
514
  # ],
@@ -779,11 +781,11 @@ module Aws::CloudWatchEvidently
779
781
  # metric_monitors: [
780
782
  # {
781
783
  # metric_definition: { # required
782
- # entity_id_key: "JsonPath",
784
+ # entity_id_key: "JsonPath", # required
783
785
  # event_pattern: "MetricDefinitionConfigEventPatternString",
784
- # name: "CwDimensionSafeName",
786
+ # name: "CwDimensionSafeName", # required
785
787
  # unit_label: "MetricUnitLabel",
786
- # value_key: "JsonPath",
788
+ # value_key: "JsonPath", # required
787
789
  # },
788
790
  # },
789
791
  # ],
@@ -1199,7 +1201,13 @@ module Aws::CloudWatchEvidently
1199
1201
  req.send_request(options)
1200
1202
  end
1201
1203
 
1202
- # 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.
1203
1211
  #
1204
1212
  # @option params [String] :base_stat
1205
1213
  # The statistic used to calculate experiment results. Currently the only
@@ -1207,7 +1215,8 @@ module Aws::CloudWatchEvidently
1207
1215
  # the statistic.
1208
1216
  #
1209
1217
  # @option params [Time,DateTime,Date,Integer,String] :end_time
1210
- # 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.
1211
1220
  #
1212
1221
  # @option params [required, String] :experiment
1213
1222
  # The name of the experiment to retrieve the results of.
@@ -1260,6 +1269,7 @@ module Aws::CloudWatchEvidently
1260
1269
  #
1261
1270
  # @return [Types::GetExperimentResultsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1262
1271
  #
1272
+ # * {Types::GetExperimentResultsResponse#details #details} => String
1263
1273
  # * {Types::GetExperimentResultsResponse#reports #reports} => Array<Types::ExperimentReport>
1264
1274
  # * {Types::GetExperimentResultsResponse#results_data #results_data} => Array<Types::ExperimentResultsData>
1265
1275
  # * {Types::GetExperimentResultsResponse#timestamps #timestamps} => Array<Time>
@@ -1281,6 +1291,7 @@ module Aws::CloudWatchEvidently
1281
1291
  #
1282
1292
  # @example Response structure
1283
1293
  #
1294
+ # resp.details #=> String
1284
1295
  # resp.reports #=> Array
1285
1296
  # resp.reports[0].content #=> String
1286
1297
  # resp.reports[0].metric_name #=> String
@@ -1492,6 +1503,10 @@ module Aws::CloudWatchEvidently
1492
1503
  # @option params [required, String] :project
1493
1504
  # The name or ARN of the project to return the experiment list from.
1494
1505
  #
1506
+ # @option params [String] :status
1507
+ # Use this optional parameter to limit the returned results to only the
1508
+ # experiments with the status that you specify here.
1509
+ #
1495
1510
  # @return [Types::ListExperimentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1496
1511
  #
1497
1512
  # * {Types::ListExperimentsResponse#experiments #experiments} => Array<Types::Experiment>
@@ -1505,6 +1520,7 @@ module Aws::CloudWatchEvidently
1505
1520
  # max_results: 1,
1506
1521
  # next_token: "NextToken",
1507
1522
  # project: "ProjectRef", # required
1523
+ # status: "CREATED", # accepts CREATED, UPDATING, RUNNING, COMPLETED, CANCELLED
1508
1524
  # })
1509
1525
  #
1510
1526
  # @example Response structure
@@ -1620,6 +1636,10 @@ module Aws::CloudWatchEvidently
1620
1636
  # @option params [required, String] :project
1621
1637
  # The name or ARN of the project to return the launch list from.
1622
1638
  #
1639
+ # @option params [String] :status
1640
+ # Use this optional parameter to limit the returned results to only the
1641
+ # launches with the status that you specify here.
1642
+ #
1623
1643
  # @return [Types::ListLaunchesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1624
1644
  #
1625
1645
  # * {Types::ListLaunchesResponse#launches #launches} => Array<Types::Launch>
@@ -1633,6 +1653,7 @@ module Aws::CloudWatchEvidently
1633
1653
  # max_results: 1,
1634
1654
  # next_token: "NextToken",
1635
1655
  # project: "ProjectRef", # required
1656
+ # status: "CREATED", # accepts CREATED, UPDATING, RUNNING, COMPLETED, CANCELLED
1636
1657
  # })
1637
1658
  #
1638
1659
  # @example Response structure
@@ -1811,7 +1832,8 @@ module Aws::CloudWatchEvidently
1811
1832
  # [1]: https://docs.aws.amazon.com/cloudwatchevidently/latest/APIReference/API_CreateExperiment.html
1812
1833
  #
1813
1834
  # @option params [required, Time,DateTime,Date,Integer,String] :analysis_complete_time
1814
- # 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.
1815
1837
  #
1816
1838
  # @option params [required, String] :experiment
1817
1839
  # The name of the experiment to start.
@@ -2139,11 +2161,11 @@ module Aws::CloudWatchEvidently
2139
2161
  # {
2140
2162
  # desired_change: "INCREASE", # accepts INCREASE, DECREASE
2141
2163
  # metric_definition: { # required
2142
- # entity_id_key: "JsonPath",
2164
+ # entity_id_key: "JsonPath", # required
2143
2165
  # event_pattern: "MetricDefinitionConfigEventPatternString",
2144
- # name: "CwDimensionSafeName",
2166
+ # name: "CwDimensionSafeName", # required
2145
2167
  # unit_label: "MetricUnitLabel",
2146
- # value_key: "JsonPath",
2168
+ # value_key: "JsonPath", # required
2147
2169
  # },
2148
2170
  # },
2149
2171
  # ],
@@ -2382,11 +2404,11 @@ module Aws::CloudWatchEvidently
2382
2404
  # metric_monitors: [
2383
2405
  # {
2384
2406
  # metric_definition: { # required
2385
- # entity_id_key: "JsonPath",
2407
+ # entity_id_key: "JsonPath", # required
2386
2408
  # event_pattern: "MetricDefinitionConfigEventPatternString",
2387
- # name: "CwDimensionSafeName",
2409
+ # name: "CwDimensionSafeName", # required
2388
2410
  # unit_label: "MetricUnitLabel",
2389
- # value_key: "JsonPath",
2411
+ # value_key: "JsonPath", # required
2390
2412
  # },
2391
2413
  # },
2392
2414
  # ],
@@ -2585,7 +2607,7 @@ module Aws::CloudWatchEvidently
2585
2607
  params: params,
2586
2608
  config: config)
2587
2609
  context[:gem_name] = 'aws-sdk-cloudwatchevidently'
2588
- context[:gem_version] = '1.3.0'
2610
+ context[:gem_version] = '1.6.0'
2589
2611
  Seahorse::Client::Request.new(handlers, context)
2590
2612
  end
2591
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"))
@@ -541,6 +542,7 @@ module Aws::CloudWatchEvidently
541
542
  ListExperimentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxExperiments, location: "querystring", location_name: "maxResults"))
542
543
  ListExperimentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
543
544
  ListExperimentsRequest.add_member(:project, Shapes::ShapeRef.new(shape: ProjectRef, required: true, location: "uri", location_name: "project"))
545
+ ListExperimentsRequest.add_member(:status, Shapes::ShapeRef.new(shape: ExperimentStatus, location: "querystring", location_name: "status"))
544
546
  ListExperimentsRequest.struct_class = Types::ListExperimentsRequest
545
547
 
546
548
  ListExperimentsResponse.add_member(:experiments, Shapes::ShapeRef.new(shape: ExperimentList, location_name: "experiments"))
@@ -559,6 +561,7 @@ module Aws::CloudWatchEvidently
559
561
  ListLaunchesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxLaunches, location: "querystring", location_name: "maxResults"))
560
562
  ListLaunchesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
561
563
  ListLaunchesRequest.add_member(:project, Shapes::ShapeRef.new(shape: ProjectRef, required: true, location: "uri", location_name: "project"))
564
+ ListLaunchesRequest.add_member(:status, Shapes::ShapeRef.new(shape: LaunchStatus, location: "querystring", location_name: "status"))
562
565
  ListLaunchesRequest.struct_class = Types::ListLaunchesRequest
563
566
 
564
567
  ListLaunchesResponse.add_member(:launches, Shapes::ShapeRef.new(shape: LaunchesList, location_name: "launches"))
@@ -586,11 +589,11 @@ module Aws::CloudWatchEvidently
586
589
  MetricDefinition.add_member(:value_key, Shapes::ShapeRef.new(shape: JsonPath, location_name: "valueKey"))
587
590
  MetricDefinition.struct_class = Types::MetricDefinition
588
591
 
589
- MetricDefinitionConfig.add_member(:entity_id_key, Shapes::ShapeRef.new(shape: JsonPath, location_name: "entityIdKey"))
592
+ MetricDefinitionConfig.add_member(:entity_id_key, Shapes::ShapeRef.new(shape: JsonPath, required: true, location_name: "entityIdKey"))
590
593
  MetricDefinitionConfig.add_member(:event_pattern, Shapes::ShapeRef.new(shape: MetricDefinitionConfigEventPatternString, location_name: "eventPattern", metadata: {"jsonvalue"=>true}))
591
- MetricDefinitionConfig.add_member(:name, Shapes::ShapeRef.new(shape: CwDimensionSafeName, location_name: "name"))
594
+ MetricDefinitionConfig.add_member(:name, Shapes::ShapeRef.new(shape: CwDimensionSafeName, required: true, location_name: "name"))
592
595
  MetricDefinitionConfig.add_member(:unit_label, Shapes::ShapeRef.new(shape: MetricUnitLabel, location_name: "unitLabel"))
593
- MetricDefinitionConfig.add_member(:value_key, Shapes::ShapeRef.new(shape: JsonPath, location_name: "valueKey"))
596
+ MetricDefinitionConfig.add_member(:value_key, Shapes::ShapeRef.new(shape: JsonPath, required: true, location_name: "valueKey"))
594
597
  MetricDefinitionConfig.struct_class = Types::MetricDefinitionConfig
595
598
 
596
599
  MetricGoal.add_member(:desired_change, Shapes::ShapeRef.new(shape: ChangeDirectionEnum, location_name: "desiredChange"))
@@ -977,6 +980,7 @@ module Aws::CloudWatchEvidently
977
980
  o.http_request_uri = "/projects/{project}/experiments/{experiment}"
978
981
  o.input = Shapes::ShapeRef.new(shape: DeleteExperimentRequest)
979
982
  o.output = Shapes::ShapeRef.new(shape: DeleteExperimentResponse)
983
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
980
984
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
981
985
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
982
986
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
@@ -1045,6 +1049,7 @@ module Aws::CloudWatchEvidently
1045
1049
  o.input = Shapes::ShapeRef.new(shape: GetExperimentRequest)
1046
1050
  o.output = Shapes::ShapeRef.new(shape: GetExperimentResponse)
1047
1051
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1052
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1048
1053
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1049
1054
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1050
1055
  end)
@@ -1081,6 +1086,7 @@ module Aws::CloudWatchEvidently
1081
1086
  o.input = Shapes::ShapeRef.new(shape: GetLaunchRequest)
1082
1087
  o.output = Shapes::ShapeRef.new(shape: GetLaunchResponse)
1083
1088
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1089
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1084
1090
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1085
1091
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1086
1092
  end)
@@ -1105,6 +1111,7 @@ module Aws::CloudWatchEvidently
1105
1111
  o.output = Shapes::ShapeRef.new(shape: ListExperimentsResponse)
1106
1112
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1107
1113
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1114
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1108
1115
  o[:pager] = Aws::Pager.new(
1109
1116
  limit_key: "max_results",
1110
1117
  tokens: {
@@ -1213,6 +1220,7 @@ module Aws::CloudWatchEvidently
1213
1220
  o.output = Shapes::ShapeRef.new(shape: StartLaunchResponse)
1214
1221
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1215
1222
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1223
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1216
1224
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1217
1225
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1218
1226
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -141,11 +141,11 @@ module Aws::CloudWatchEvidently
141
141
  # {
142
142
  # desired_change: "INCREASE", # accepts INCREASE, DECREASE
143
143
  # metric_definition: { # required
144
- # entity_id_key: "JsonPath",
144
+ # entity_id_key: "JsonPath", # required
145
145
  # event_pattern: "MetricDefinitionConfigEventPatternString",
146
- # name: "CwDimensionSafeName",
146
+ # name: "CwDimensionSafeName", # required
147
147
  # unit_label: "MetricUnitLabel",
148
- # value_key: "JsonPath",
148
+ # value_key: "JsonPath", # required
149
149
  # },
150
150
  # },
151
151
  # ],
@@ -391,11 +391,11 @@ module Aws::CloudWatchEvidently
391
391
  # metric_monitors: [
392
392
  # {
393
393
  # metric_definition: { # required
394
- # entity_id_key: "JsonPath",
394
+ # entity_id_key: "JsonPath", # required
395
395
  # event_pattern: "MetricDefinitionConfigEventPatternString",
396
- # name: "CwDimensionSafeName",
396
+ # name: "CwDimensionSafeName", # required
397
397
  # unit_label: "MetricUnitLabel",
398
- # value_key: "JsonPath",
398
+ # value_key: "JsonPath", # required
399
399
  # },
400
400
  # },
401
401
  # ],
@@ -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)
@@ -1757,6 +1766,7 @@ module Aws::CloudWatchEvidently
1757
1766
  # max_results: 1,
1758
1767
  # next_token: "NextToken",
1759
1768
  # project: "ProjectRef", # required
1769
+ # status: "CREATED", # accepts CREATED, UPDATING, RUNNING, COMPLETED, CANCELLED
1760
1770
  # }
1761
1771
  #
1762
1772
  # @!attribute [rw] max_results
@@ -1772,12 +1782,18 @@ module Aws::CloudWatchEvidently
1772
1782
  # The name or ARN of the project to return the experiment list from.
1773
1783
  # @return [String]
1774
1784
  #
1785
+ # @!attribute [rw] status
1786
+ # Use this optional parameter to limit the returned results to only
1787
+ # the experiments with the status that you specify here.
1788
+ # @return [String]
1789
+ #
1775
1790
  # @see http://docs.aws.amazon.com/goto/WebAPI/evidently-2021-02-01/ListExperimentsRequest AWS API Documentation
1776
1791
  #
1777
1792
  class ListExperimentsRequest < Struct.new(
1778
1793
  :max_results,
1779
1794
  :next_token,
1780
- :project)
1795
+ :project,
1796
+ :status)
1781
1797
  SENSITIVE = []
1782
1798
  include Aws::Structure
1783
1799
  end
@@ -1859,6 +1875,7 @@ module Aws::CloudWatchEvidently
1859
1875
  # max_results: 1,
1860
1876
  # next_token: "NextToken",
1861
1877
  # project: "ProjectRef", # required
1878
+ # status: "CREATED", # accepts CREATED, UPDATING, RUNNING, COMPLETED, CANCELLED
1862
1879
  # }
1863
1880
  #
1864
1881
  # @!attribute [rw] max_results
@@ -1874,12 +1891,18 @@ module Aws::CloudWatchEvidently
1874
1891
  # The name or ARN of the project to return the launch list from.
1875
1892
  # @return [String]
1876
1893
  #
1894
+ # @!attribute [rw] status
1895
+ # Use this optional parameter to limit the returned results to only
1896
+ # the launches with the status that you specify here.
1897
+ # @return [String]
1898
+ #
1877
1899
  # @see http://docs.aws.amazon.com/goto/WebAPI/evidently-2021-02-01/ListLaunchesRequest AWS API Documentation
1878
1900
  #
1879
1901
  class ListLaunchesRequest < Struct.new(
1880
1902
  :max_results,
1881
1903
  :next_token,
1882
- :project)
1904
+ :project,
1905
+ :status)
1883
1906
  SENSITIVE = []
1884
1907
  include Aws::Structure
1885
1908
  end
@@ -2031,11 +2054,11 @@ module Aws::CloudWatchEvidently
2031
2054
  # data as a hash:
2032
2055
  #
2033
2056
  # {
2034
- # entity_id_key: "JsonPath",
2057
+ # entity_id_key: "JsonPath", # required
2035
2058
  # event_pattern: "MetricDefinitionConfigEventPatternString",
2036
- # name: "CwDimensionSafeName",
2059
+ # name: "CwDimensionSafeName", # required
2037
2060
  # unit_label: "MetricUnitLabel",
2038
- # value_key: "JsonPath",
2061
+ # value_key: "JsonPath", # required
2039
2062
  # }
2040
2063
  #
2041
2064
  # @!attribute [rw] entity_id_key
@@ -2113,11 +2136,11 @@ module Aws::CloudWatchEvidently
2113
2136
  # {
2114
2137
  # desired_change: "INCREASE", # accepts INCREASE, DECREASE
2115
2138
  # metric_definition: { # required
2116
- # entity_id_key: "JsonPath",
2139
+ # entity_id_key: "JsonPath", # required
2117
2140
  # event_pattern: "MetricDefinitionConfigEventPatternString",
2118
- # name: "CwDimensionSafeName",
2141
+ # name: "CwDimensionSafeName", # required
2119
2142
  # unit_label: "MetricUnitLabel",
2120
- # value_key: "JsonPath",
2143
+ # value_key: "JsonPath", # required
2121
2144
  # },
2122
2145
  # }
2123
2146
  #
@@ -2165,11 +2188,11 @@ module Aws::CloudWatchEvidently
2165
2188
  #
2166
2189
  # {
2167
2190
  # metric_definition: { # required
2168
- # entity_id_key: "JsonPath",
2191
+ # entity_id_key: "JsonPath", # required
2169
2192
  # event_pattern: "MetricDefinitionConfigEventPatternString",
2170
- # name: "CwDimensionSafeName",
2193
+ # name: "CwDimensionSafeName", # required
2171
2194
  # unit_label: "MetricUnitLabel",
2172
- # value_key: "JsonPath",
2195
+ # value_key: "JsonPath", # required
2173
2196
  # },
2174
2197
  # }
2175
2198
  #
@@ -2771,7 +2794,8 @@ module Aws::CloudWatchEvidently
2771
2794
  # }
2772
2795
  #
2773
2796
  # @!attribute [rw] analysis_complete_time
2774
- # 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.
2775
2799
  # @return [Time]
2776
2800
  #
2777
2801
  # @!attribute [rw] experiment
@@ -3110,11 +3134,11 @@ module Aws::CloudWatchEvidently
3110
3134
  # {
3111
3135
  # desired_change: "INCREASE", # accepts INCREASE, DECREASE
3112
3136
  # metric_definition: { # required
3113
- # entity_id_key: "JsonPath",
3137
+ # entity_id_key: "JsonPath", # required
3114
3138
  # event_pattern: "MetricDefinitionConfigEventPatternString",
3115
- # name: "CwDimensionSafeName",
3139
+ # name: "CwDimensionSafeName", # required
3116
3140
  # unit_label: "MetricUnitLabel",
3117
- # value_key: "JsonPath",
3141
+ # value_key: "JsonPath", # required
3118
3142
  # },
3119
3143
  # },
3120
3144
  # ],
@@ -3334,11 +3358,11 @@ module Aws::CloudWatchEvidently
3334
3358
  # metric_monitors: [
3335
3359
  # {
3336
3360
  # metric_definition: { # required
3337
- # entity_id_key: "JsonPath",
3361
+ # entity_id_key: "JsonPath", # required
3338
3362
  # event_pattern: "MetricDefinitionConfigEventPatternString",
3339
- # name: "CwDimensionSafeName",
3363
+ # name: "CwDimensionSafeName", # required
3340
3364
  # unit_label: "MetricUnitLabel",
3341
- # value_key: "JsonPath",
3365
+ # value_key: "JsonPath", # required
3342
3366
  # },
3343
3367
  # },
3344
3368
  # ],
@@ -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.3.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.3.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-03 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.126.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.126.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement