aws-sdk-cloudwatch 1.0.0.rc8 → 1.0.0.rc10
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 +4 -4
- data/lib/aws-sdk-cloudwatch.rb +1 -1
- data/lib/aws-sdk-cloudwatch/alarm.rb +1 -1
- data/lib/aws-sdk-cloudwatch/client.rb +89 -32
- data/lib/aws-sdk-cloudwatch/metric.rb +41 -7
- data/lib/aws-sdk-cloudwatch/types.rb +61 -13
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ea259d174e65439aa6e4c56dbc39872d9f1f026
|
4
|
+
data.tar.gz: eacb3652d9204ee1bdaa7f82a5034287e7519422
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54d4c323daeb60950b787192e0eef9c0e07f7ead8a3b6242696af5f59061f9ad74b23db3f437253b0bee78bfd176a00bdbbde0b30dc104d3b793c9e45462c240
|
7
|
+
data.tar.gz: 8315100a174b41470439fa970195f26cbad8ee7da1d38ec92efc3787359b560268aac6ff4ef338af5835345eae8a75f410c04e9424b32d1aae28d374b14daa43
|
data/lib/aws-sdk-cloudwatch.rb
CHANGED
@@ -179,7 +179,7 @@ module Aws::CloudWatch
|
|
179
179
|
# Used only for alarms based on percentiles. If `ignore`, the alarm
|
180
180
|
# state does not change during periods with too few data points to be
|
181
181
|
# statistically significant. If `evaluate` or this parameter is not
|
182
|
-
# used, the alarm
|
182
|
+
# used, the alarm is always evaluated and possibly changes state no
|
183
183
|
# matter how many data points are available.
|
184
184
|
# @return [String]
|
185
185
|
def evaluate_low_sample_count_percentile
|
@@ -511,27 +511,12 @@ module Aws::CloudWatch
|
|
511
511
|
|
512
512
|
# Gets statistics for the specified metric.
|
513
513
|
#
|
514
|
-
# Amazon CloudWatch retains metric data as follows:
|
515
|
-
#
|
516
|
-
# * Data points with a period of 60 seconds (1-minute) are available for
|
517
|
-
# 15 days
|
518
|
-
#
|
519
|
-
# * Data points with a period of 300 seconds (5-minute) are available
|
520
|
-
# for 63 days
|
521
|
-
#
|
522
|
-
# * Data points with a period of 3600 seconds (1 hour) are available for
|
523
|
-
# 455 days (15 months)
|
524
|
-
#
|
525
|
-
# CloudWatch started retaining 5-minute and 1-hour metric data as of
|
526
|
-
# July 9, 2016.
|
527
|
-
#
|
528
514
|
# The maximum number of data points returned from a single call is
|
529
515
|
# 1,440. If you request more than 1,440 data points, CloudWatch returns
|
530
516
|
# an error. To reduce the number of data points, you can narrow the
|
531
517
|
# specified time range and make multiple requests across adjacent time
|
532
|
-
# ranges, or you can increase the specified period.
|
533
|
-
#
|
534
|
-
# chronological order.
|
518
|
+
# ranges, or you can increase the specified period. Data points are not
|
519
|
+
# returned in chronological order.
|
535
520
|
#
|
536
521
|
# CloudWatch aggregates data points based on the length of the period
|
537
522
|
# that you specify. For example, if you request statistics with a
|
@@ -549,9 +534,36 @@ module Aws::CloudWatch
|
|
549
534
|
#
|
550
535
|
# * The Min and the Max values of the statistic set are equal.
|
551
536
|
#
|
552
|
-
#
|
553
|
-
#
|
554
|
-
# *
|
537
|
+
# Amazon CloudWatch retains metric data as follows:
|
538
|
+
#
|
539
|
+
# * Data points with a period of less than 60 seconds are available for
|
540
|
+
# 3 hours. These data points are high-resolution metrics and are
|
541
|
+
# available only for custom metrics that have been defined with a
|
542
|
+
# `StorageResolution` of 1.
|
543
|
+
#
|
544
|
+
# * Data points with a period of 60 seconds (1-minute) are available for
|
545
|
+
# 15 days.
|
546
|
+
#
|
547
|
+
# * Data points with a period of 300 seconds (5-minute) are available
|
548
|
+
# for 63 days.
|
549
|
+
#
|
550
|
+
# * Data points with a period of 3600 seconds (1 hour) are available for
|
551
|
+
# 455 days (15 months).
|
552
|
+
#
|
553
|
+
# Data points that are initially published with a shorter period are
|
554
|
+
# aggregated together for long-term storage. For example, if you collect
|
555
|
+
# data using a period of 1 minute, the data remains available for 15
|
556
|
+
# days with 1-minute resolution. After 15 days, this data is still
|
557
|
+
# available, but is aggregated and retrievable only with a resolution of
|
558
|
+
# 5 minutes. After 63 days, the data is further aggregated and is
|
559
|
+
# available with a resolution of 1 hour.
|
560
|
+
#
|
561
|
+
# CloudWatch started retaining 5-minute and 1-hour metric data as of
|
562
|
+
# July 9, 2016.
|
563
|
+
#
|
564
|
+
# For information about metrics and dimensions supported by AWS
|
565
|
+
# services, see the [Amazon CloudWatch Metrics and Dimensions
|
566
|
+
# Reference][1] in the *Amazon CloudWatch User Guide*.
|
555
567
|
#
|
556
568
|
#
|
557
569
|
#
|
@@ -601,6 +613,15 @@ module Aws::CloudWatch
|
|
601
613
|
# 1-hour clock interval. For example, 12:32:34 is rounded down to
|
602
614
|
# 12:00:00.
|
603
615
|
#
|
616
|
+
# If you set `Period` to 5, 10, or 30, the start time of your request is
|
617
|
+
# rounded down to the nearest time that corresponds to even 5-, 10-, or
|
618
|
+
# 30-second divisions of a minute. For example, if you make a query at
|
619
|
+
# (HH:mm:ss) 01:05:23 for the previous 10-second period, the start time
|
620
|
+
# of your request is rounded down and you receive data from 01:05:10 to
|
621
|
+
# 01:05:20. If you make a query at 15:07:17 for the previous 5 minutes
|
622
|
+
# of data, using a period of 5 seconds, you receive data timestamped
|
623
|
+
# between 15:02:15 and 15:07:15.
|
624
|
+
#
|
604
625
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
605
626
|
# The time stamp that determines the last data point to return.
|
606
627
|
#
|
@@ -609,13 +630,21 @@ module Aws::CloudWatch
|
|
609
630
|
# format (for example, 2016-10-10T23:00:00Z).
|
610
631
|
#
|
611
632
|
# @option params [required, Integer] :period
|
612
|
-
# The granularity, in seconds, of the returned data points.
|
613
|
-
# be as short as one minute (60
|
633
|
+
# The granularity, in seconds, of the returned data points. For metrics
|
634
|
+
# with regular resolution, a period can be as short as one minute (60
|
635
|
+
# seconds) and must be a multiple of 60. For high-resolution metrics
|
636
|
+
# that are collected at intervals of less than one minute, the period
|
637
|
+
# can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution
|
638
|
+
# metrics are those metrics stored by a `PutMetricData` call that
|
639
|
+
# includes a `StorageResolution` of 1 second.
|
614
640
|
#
|
615
641
|
# If the `StartTime` parameter specifies a time stamp that is greater
|
616
|
-
# than
|
642
|
+
# than 3 hours ago, you must specify the period as follows or no data
|
617
643
|
# points in that time range is returned:
|
618
644
|
#
|
645
|
+
# * Start time between 3 hours and 15 days ago - Use a multiple of 60
|
646
|
+
# seconds (1 minute).
|
647
|
+
#
|
619
648
|
# * Start time between 15 and 63 days ago - Use a multiple of 300
|
620
649
|
# seconds (5 minutes).
|
621
650
|
#
|
@@ -798,15 +827,26 @@ module Aws::CloudWatch
|
|
798
827
|
# You can have up to 500 dashboards per account. All dashboards in your
|
799
828
|
# account are global, not region-specific.
|
800
829
|
#
|
801
|
-
#
|
802
|
-
#
|
803
|
-
#
|
830
|
+
# A simple way to create a dashboard using `PutDashboard` is to copy an
|
831
|
+
# existing dashboard. To copy an existing dashboard using the console,
|
832
|
+
# you can load the dashboard and then use the View/edit source command
|
833
|
+
# in the Actions menu to display the JSON block for that dashboard.
|
834
|
+
# Another way to copy a dashboard is to use `GetDashboard`, and then use
|
835
|
+
# the data returned within `DashboardBody` as the template for the new
|
836
|
+
# dashboard when you call `PutDashboard`.
|
837
|
+
#
|
838
|
+
# When you create a dashboard with `PutDashboard`, a good practice is to
|
839
|
+
# add a text widget at the top of the dashboard with a message that the
|
840
|
+
# dashboard was created by script and should not be changed in the
|
841
|
+
# console. This message could also point console users to the location
|
842
|
+
# of the `DashboardBody` script or the CloudFormation template used to
|
843
|
+
# create the dashboard.
|
804
844
|
#
|
805
845
|
# @option params [String] :dashboard_name
|
806
846
|
# The name of the dashboard. If a dashboard with this name already
|
807
847
|
# exists, this call modifies that dashboard, replacing its current
|
808
848
|
# contents. Otherwise, a new dashboard is created. The maximum length is
|
809
|
-
# 255, and valid characters are A-Z, a-z, 0-9, "
|
849
|
+
# 255, and valid characters are A-Z, a-z, 0-9, "-", and "\_".
|
810
850
|
#
|
811
851
|
# @option params [String] :dashboard_body
|
812
852
|
# The detailed information about the dashboard in JSON format, including
|
@@ -965,9 +1005,26 @@ module Aws::CloudWatch
|
|
965
1005
|
#
|
966
1006
|
# @option params [required, Integer] :period
|
967
1007
|
# The period, in seconds, over which the specified statistic is applied.
|
1008
|
+
# Valid values are 10, 30, and any multiple of 60.
|
1009
|
+
#
|
1010
|
+
# Be sure to specify 10 or 30 only for metrics that are stored by a
|
1011
|
+
# `PutMetricData` call with a `StorageResolution` of 1. If you specify a
|
1012
|
+
# Period of 10 or 30 for a metric that does not have sub-minute
|
1013
|
+
# resolution, the alarm still attempts to gather data at the period rate
|
1014
|
+
# that you specify. In this case, it does not receive data for the
|
1015
|
+
# attempts that do not correspond to a one-minute data resolution, and
|
1016
|
+
# the alarm may often lapse into INSUFFICENT\_DATA status. Specifying 10
|
1017
|
+
# or 30 also sets this alarm as a high-resolution alarm, which has a
|
1018
|
+
# higher charge than other alarms. For more information about pricing,
|
1019
|
+
# see [Amazon CloudWatch Pricing][1].
|
1020
|
+
#
|
968
1021
|
# An alarm's total current evaluation period can be no longer than one
|
969
|
-
# day, so
|
970
|
-
#
|
1022
|
+
# day, so `Period` multiplied by `EvaluationPeriods` cannot be more than
|
1023
|
+
# 86,400 seconds.
|
1024
|
+
#
|
1025
|
+
#
|
1026
|
+
#
|
1027
|
+
# [1]: https://aws.amazon.com/cloudwatch/pricing/
|
971
1028
|
#
|
972
1029
|
# @option params [String] :unit
|
973
1030
|
# The unit of measure for the statistic. For example, the units for the
|
@@ -984,8 +1041,8 @@ module Aws::CloudWatch
|
|
984
1041
|
# @option params [required, Integer] :evaluation_periods
|
985
1042
|
# The number of periods over which data is compared to the specified
|
986
1043
|
# threshold. An alarm's total current evaluation period can be no
|
987
|
-
# longer than one day, so this number multiplied by `Period`
|
988
|
-
# 86,400
|
1044
|
+
# longer than one day, so this number multiplied by `Period` cannot be
|
1045
|
+
# more than 86,400 seconds.
|
989
1046
|
#
|
990
1047
|
# @option params [required, Float] :threshold
|
991
1048
|
# The value against which the specified statistic is compared.
|
@@ -1204,7 +1261,7 @@ module Aws::CloudWatch
|
|
1204
1261
|
params: params,
|
1205
1262
|
config: config)
|
1206
1263
|
context[:gem_name] = 'aws-sdk-cloudwatch'
|
1207
|
-
context[:gem_version] = '1.0.0.
|
1264
|
+
context[:gem_version] = '1.0.0.rc10'
|
1208
1265
|
Seahorse::Client::Request.new(handlers, context)
|
1209
1266
|
end
|
1210
1267
|
|
@@ -138,6 +138,15 @@ module Aws::CloudWatch
|
|
138
138
|
# * Start time greater than 63 days ago - Round down to the nearest
|
139
139
|
# 1-hour clock interval. For example, 12:32:34 is rounded down to
|
140
140
|
# 12:00:00.
|
141
|
+
#
|
142
|
+
# If you set `Period` to 5, 10, or 30, the start time of your request is
|
143
|
+
# rounded down to the nearest time that corresponds to even 5-, 10-, or
|
144
|
+
# 30-second divisions of a minute. For example, if you make a query at
|
145
|
+
# (HH:mm:ss) 01:05:23 for the previous 10-second period, the start time
|
146
|
+
# of your request is rounded down and you receive data from 01:05:10 to
|
147
|
+
# 01:05:20. If you make a query at 15:07:17 for the previous 5 minutes
|
148
|
+
# of data, using a period of 5 seconds, you receive data timestamped
|
149
|
+
# between 15:02:15 and 15:07:15.
|
141
150
|
# @option options [required, Time,DateTime,Date,Integer,String] :end_time
|
142
151
|
# The time stamp that determines the last data point to return.
|
143
152
|
#
|
@@ -145,13 +154,21 @@ module Aws::CloudWatch
|
|
145
154
|
# the specified time stamp. The time stamp must be in ISO 8601 UTC
|
146
155
|
# format (for example, 2016-10-10T23:00:00Z).
|
147
156
|
# @option options [required, Integer] :period
|
148
|
-
# The granularity, in seconds, of the returned data points.
|
149
|
-
# be as short as one minute (60
|
157
|
+
# The granularity, in seconds, of the returned data points. For metrics
|
158
|
+
# with regular resolution, a period can be as short as one minute (60
|
159
|
+
# seconds) and must be a multiple of 60. For high-resolution metrics
|
160
|
+
# that are collected at intervals of less than one minute, the period
|
161
|
+
# can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution
|
162
|
+
# metrics are those metrics stored by a `PutMetricData` call that
|
163
|
+
# includes a `StorageResolution` of 1 second.
|
150
164
|
#
|
151
165
|
# If the `StartTime` parameter specifies a time stamp that is greater
|
152
|
-
# than
|
166
|
+
# than 3 hours ago, you must specify the period as follows or no data
|
153
167
|
# points in that time range is returned:
|
154
168
|
#
|
169
|
+
# * Start time between 3 hours and 15 days ago - Use a multiple of 60
|
170
|
+
# seconds (1 minute).
|
171
|
+
#
|
155
172
|
# * Start time between 15 and 63 days ago - Use a multiple of 300
|
156
173
|
# seconds (5 minutes).
|
157
174
|
#
|
@@ -270,9 +287,26 @@ module Aws::CloudWatch
|
|
270
287
|
# The dimensions for the metric associated with the alarm.
|
271
288
|
# @option options [required, Integer] :period
|
272
289
|
# The period, in seconds, over which the specified statistic is applied.
|
290
|
+
# Valid values are 10, 30, and any multiple of 60.
|
291
|
+
#
|
292
|
+
# Be sure to specify 10 or 30 only for metrics that are stored by a
|
293
|
+
# `PutMetricData` call with a `StorageResolution` of 1. If you specify a
|
294
|
+
# Period of 10 or 30 for a metric that does not have sub-minute
|
295
|
+
# resolution, the alarm still attempts to gather data at the period rate
|
296
|
+
# that you specify. In this case, it does not receive data for the
|
297
|
+
# attempts that do not correspond to a one-minute data resolution, and
|
298
|
+
# the alarm may often lapse into INSUFFICENT\_DATA status. Specifying 10
|
299
|
+
# or 30 also sets this alarm as a high-resolution alarm, which has a
|
300
|
+
# higher charge than other alarms. For more information about pricing,
|
301
|
+
# see [Amazon CloudWatch Pricing][1].
|
302
|
+
#
|
273
303
|
# An alarm's total current evaluation period can be no longer than one
|
274
|
-
# day, so
|
275
|
-
#
|
304
|
+
# day, so `Period` multiplied by `EvaluationPeriods` cannot be more than
|
305
|
+
# 86,400 seconds.
|
306
|
+
#
|
307
|
+
#
|
308
|
+
#
|
309
|
+
# [1]: https://aws.amazon.com/cloudwatch/pricing/
|
276
310
|
# @option options [String] :unit
|
277
311
|
# The unit of measure for the statistic. For example, the units for the
|
278
312
|
# Amazon EC2 NetworkIn metric are Bytes because NetworkIn tracks the
|
@@ -287,8 +321,8 @@ module Aws::CloudWatch
|
|
287
321
|
# @option options [required, Integer] :evaluation_periods
|
288
322
|
# The number of periods over which data is compared to the specified
|
289
323
|
# threshold. An alarm's total current evaluation period can be no
|
290
|
-
# longer than one day, so this number multiplied by `Period`
|
291
|
-
# 86,400
|
324
|
+
# longer than one day, so this number multiplied by `Period` cannot be
|
325
|
+
# more than 86,400 seconds.
|
292
326
|
# @option options [required, Float] :threshold
|
293
327
|
# The value against which the specified statistic is compared.
|
294
328
|
# @option options [required, String] :comparison_operator
|
@@ -582,6 +582,15 @@ module Aws::CloudWatch
|
|
582
582
|
# * Start time greater than 63 days ago - Round down to the nearest
|
583
583
|
# 1-hour clock interval. For example, 12:32:34 is rounded down to
|
584
584
|
# 12:00:00.
|
585
|
+
#
|
586
|
+
# If you set `Period` to 5, 10, or 30, the start time of your request
|
587
|
+
# is rounded down to the nearest time that corresponds to even 5-,
|
588
|
+
# 10-, or 30-second divisions of a minute. For example, if you make a
|
589
|
+
# query at (HH:mm:ss) 01:05:23 for the previous 10-second period, the
|
590
|
+
# start time of your request is rounded down and you receive data from
|
591
|
+
# 01:05:10 to 01:05:20. If you make a query at 15:07:17 for the
|
592
|
+
# previous 5 minutes of data, using a period of 5 seconds, you receive
|
593
|
+
# data timestamped between 15:02:15 and 15:07:15.
|
585
594
|
# @return [Time]
|
586
595
|
#
|
587
596
|
# @!attribute [rw] end_time
|
@@ -593,14 +602,22 @@ module Aws::CloudWatch
|
|
593
602
|
# @return [Time]
|
594
603
|
#
|
595
604
|
# @!attribute [rw] period
|
596
|
-
# The granularity, in seconds, of the returned data points.
|
597
|
-
# can be as short as one
|
598
|
-
# 60.
|
605
|
+
# The granularity, in seconds, of the returned data points. For
|
606
|
+
# metrics with regular resolution, a period can be as short as one
|
607
|
+
# minute (60 seconds) and must be a multiple of 60. For
|
608
|
+
# high-resolution metrics that are collected at intervals of less than
|
609
|
+
# one minute, the period can be 1, 5, 10, 30, 60, or any multiple of
|
610
|
+
# 60. High-resolution metrics are those metrics stored by a
|
611
|
+
# `PutMetricData` call that includes a `StorageResolution` of 1
|
612
|
+
# second.
|
599
613
|
#
|
600
614
|
# If the `StartTime` parameter specifies a time stamp that is greater
|
601
|
-
# than
|
615
|
+
# than 3 hours ago, you must specify the period as follows or no data
|
602
616
|
# points in that time range is returned:
|
603
617
|
#
|
618
|
+
# * Start time between 3 hours and 15 days ago - Use a multiple of 60
|
619
|
+
# seconds (1 minute).
|
620
|
+
#
|
604
621
|
# * Start time between 15 and 63 days ago - Use a multiple of 300
|
605
622
|
# seconds (5 minutes).
|
606
623
|
#
|
@@ -897,8 +914,8 @@ module Aws::CloudWatch
|
|
897
914
|
# Used only for alarms based on percentiles. If `ignore`, the alarm
|
898
915
|
# state does not change during periods with too few data points to be
|
899
916
|
# statistically significant. If `evaluate` or this parameter is not
|
900
|
-
# used, the alarm
|
901
|
-
#
|
917
|
+
# used, the alarm is always evaluated and possibly changes state no
|
918
|
+
# matter how many data points are available.
|
902
919
|
# @return [String]
|
903
920
|
#
|
904
921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/monitoring-2010-08-01/MetricAlarm AWS API Documentation
|
@@ -989,6 +1006,21 @@ module Aws::CloudWatch
|
|
989
1006
|
# @return [String]
|
990
1007
|
#
|
991
1008
|
# @!attribute [rw] storage_resolution
|
1009
|
+
# Valid values are 1 and 60. Setting this to 1 specifies this metric
|
1010
|
+
# as a high-resolution metric, so that CloudWatch stores the metric
|
1011
|
+
# with sub-minute resolution down to one second. Setting this to 60
|
1012
|
+
# specifies this metric as a regular-resolution metric, which
|
1013
|
+
# CloudWatch stores at 1-minute resolution. Currently, high resolution
|
1014
|
+
# is available only for custom metrics. For more information about
|
1015
|
+
# high-resolution metrics, see [High-Resolution Metrics][1] in the
|
1016
|
+
# *Amazon CloudWatch User Guide*.
|
1017
|
+
#
|
1018
|
+
# This field is optional, if you do not specify it the default of 60
|
1019
|
+
# is used.
|
1020
|
+
#
|
1021
|
+
#
|
1022
|
+
#
|
1023
|
+
# [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/publishingMetrics.html#high-resolution-metrics
|
992
1024
|
# @return [Integer]
|
993
1025
|
#
|
994
1026
|
# @see http://docs.aws.amazon.com/goto/WebAPI/monitoring-2010-08-01/MetricDatum AWS API Documentation
|
@@ -1016,8 +1048,7 @@ module Aws::CloudWatch
|
|
1016
1048
|
# The name of the dashboard. If a dashboard with this name already
|
1017
1049
|
# exists, this call modifies that dashboard, replacing its current
|
1018
1050
|
# contents. Otherwise, a new dashboard is created. The maximum length
|
1019
|
-
# is 255, and valid characters are A-Z, a-z, 0-9, "
|
1020
|
-
# "\_".
|
1051
|
+
# is 255, and valid characters are A-Z, a-z, 0-9, "-", and "\_".
|
1021
1052
|
# @return [String]
|
1022
1053
|
#
|
1023
1054
|
# @!attribute [rw] dashboard_body
|
@@ -1174,9 +1205,26 @@ module Aws::CloudWatch
|
|
1174
1205
|
#
|
1175
1206
|
# @!attribute [rw] period
|
1176
1207
|
# The period, in seconds, over which the specified statistic is
|
1177
|
-
# applied.
|
1178
|
-
#
|
1179
|
-
#
|
1208
|
+
# applied. Valid values are 10, 30, and any multiple of 60.
|
1209
|
+
#
|
1210
|
+
# Be sure to specify 10 or 30 only for metrics that are stored by a
|
1211
|
+
# `PutMetricData` call with a `StorageResolution` of 1. If you specify
|
1212
|
+
# a Period of 10 or 30 for a metric that does not have sub-minute
|
1213
|
+
# resolution, the alarm still attempts to gather data at the period
|
1214
|
+
# rate that you specify. In this case, it does not receive data for
|
1215
|
+
# the attempts that do not correspond to a one-minute data resolution,
|
1216
|
+
# and the alarm may often lapse into INSUFFICENT\_DATA status.
|
1217
|
+
# Specifying 10 or 30 also sets this alarm as a high-resolution alarm,
|
1218
|
+
# which has a higher charge than other alarms. For more information
|
1219
|
+
# about pricing, see [Amazon CloudWatch Pricing][1].
|
1220
|
+
#
|
1221
|
+
# An alarm's total current evaluation period can be no longer than
|
1222
|
+
# one day, so `Period` multiplied by `EvaluationPeriods` cannot be
|
1223
|
+
# more than 86,400 seconds.
|
1224
|
+
#
|
1225
|
+
#
|
1226
|
+
#
|
1227
|
+
# [1]: https://aws.amazon.com/cloudwatch/pricing/
|
1180
1228
|
# @return [Integer]
|
1181
1229
|
#
|
1182
1230
|
# @!attribute [rw] unit
|
@@ -1196,8 +1244,8 @@ module Aws::CloudWatch
|
|
1196
1244
|
# @!attribute [rw] evaluation_periods
|
1197
1245
|
# The number of periods over which data is compared to the specified
|
1198
1246
|
# threshold. An alarm's total current evaluation period can be no
|
1199
|
-
# longer than one day, so this number multiplied by `Period`
|
1200
|
-
# 86,400
|
1247
|
+
# longer than one day, so this number multiplied by `Period` cannot be
|
1248
|
+
# more than 86,400 seconds.
|
1201
1249
|
# @return [Integer]
|
1202
1250
|
#
|
1203
1251
|
# @!attribute [rw] threshold
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudwatch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc10
|
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: 2017-07-
|
11
|
+
date: 2017-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0.
|
19
|
+
version: 3.0.0.rc18
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0.
|
26
|
+
version: 3.0.0.rc18
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|