aws-sdk-cloudwatch 1.63.0 → 1.64.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: 8700346d69df22798982a45c12299f596cb8b9d20e0a6bd5c877182748f3295a
4
- data.tar.gz: fdc16e10869b1f84c67dd3f0f4d270487547b7afdb47847ed3571b46842a8e19
3
+ metadata.gz: 918f50d5e3f8d43f139fda5f9f3e5cd9b7e5dea0bb93ed7926df40c9d2a5156c
4
+ data.tar.gz: c992a354593a95ba169777d3a1b8e28e2136443796a808166dd8f8fcd2a599c0
5
5
  SHA512:
6
- metadata.gz: 80c6f183c2fdbab2f176c2d6eb3d862c7943ceafbad4e2b84c0af71009fbf47f6f6ae379c0d700248f57f22a81e9016e4a13cc310f1b1c66020be8af1a765386
7
- data.tar.gz: edfd3e9952ed03e71c8db8d099a79fed3bb8dd32e554bdabc53337a76e8660312b9c444065a67f38a854a0a224667a78aff7d2df4ddb239cf303683dc4c178b1
6
+ metadata.gz: 3bd904fd9553fd6709653b1f2c4c9e835e8f0871a866871ae259f177fa0a4fe8faacf4385a2bd7e2a5e55b10aea598d986d280ac9ce695c394c75917734925e8
7
+ data.tar.gz: 06e82055db45c57c29cf0dff6a2468b40c887a7dd79b0a2abc89b23ced0b04906dd2f2616b6fad5505b66fbe251133045be966114b4ba30f4c954c0b8123623a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.64.0 (2022-04-14)
5
+ ------------------
6
+
7
+ * Feature - Updates documentation for additional statistics in CloudWatch Metric Streams.
8
+
4
9
  1.63.0 (2022-04-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.64.0
@@ -2970,6 +2970,13 @@ module Aws::CloudWatch
2970
2970
  #
2971
2971
  # Valid Values: `breaching | notBreaching | ignore | missing`
2972
2972
  #
2973
+ # <note markdown="1"> Alarms that evaluate metrics in the `AWS/DynamoDB` namespace always
2974
+ # `ignore` missing data even if you choose a different option for
2975
+ # `TreatMissingData`. When an `AWS/DynamoDB` metric has missing data,
2976
+ # alarms that evaluate that metric remain in their current state.
2977
+ #
2978
+ # </note>
2979
+ #
2973
2980
  #
2974
2981
  #
2975
2982
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarms-and-missing-data
@@ -3244,7 +3251,7 @@ module Aws::CloudWatch
3244
3251
  # By default, a metric stream always sends the `MAX`, `MIN`, `SUM`, and
3245
3252
  # `SAMPLECOUNT` statistics for each metric that is streamed. You can use
3246
3253
  # the `StatisticsConfigurations` parameter to have the metric stream
3247
- # also send extended statistics in the stream. Streaming extended
3254
+ # also send additional statistics in the stream. Streaming additional
3248
3255
  # statistics incurs additional costs. For more information, see [Amazon
3249
3256
  # CloudWatch Pricing][2].
3250
3257
  #
@@ -3327,16 +3334,17 @@ module Aws::CloudWatch
3327
3334
  # @option params [Array<Types::MetricStreamStatisticsConfiguration>] :statistics_configurations
3328
3335
  # By default, a metric stream always sends the `MAX`, `MIN`, `SUM`, and
3329
3336
  # `SAMPLECOUNT` statistics for each metric that is streamed. You can use
3330
- # this parameter to have the metric stream also send extended statistics
3331
- # in the stream. This array can have up to 100 members.
3337
+ # this parameter to have the metric stream also send additional
3338
+ # statistics in the stream. This array can have up to 100 members.
3332
3339
  #
3333
3340
  # For each entry in this array, you specify one or more metrics and the
3334
- # list of extended statistics to stream for those metrics. The extended
3335
- # statistics that you can stream depend on the stream's `OutputFormat`.
3336
- # If the `OutputFormat` is `json`, you can stream any extended statistic
3337
- # that is supported by CloudWatch, listed in [ CloudWatch statistics
3338
- # definitions][1]. If the `OutputFormat` is `opentelemetry0.7`, you can
3339
- # stream percentile statistics (p*??*).
3341
+ # list of additional statistics to stream for those metrics. The
3342
+ # additional statistics that you can stream depend on the stream's
3343
+ # `OutputFormat`. If the `OutputFormat` is `json`, you can stream any
3344
+ # additional statistic that is supported by CloudWatch, listed in [
3345
+ # CloudWatch statistics definitions][1]. If the `OutputFormat` is
3346
+ # `opentelemetry0.7`, you can stream percentile statistics such as p95,
3347
+ # p99.9 and so on.
3340
3348
  #
3341
3349
  #
3342
3350
  #
@@ -3625,7 +3633,7 @@ module Aws::CloudWatch
3625
3633
  params: params,
3626
3634
  config: config)
3627
3635
  context[:gem_name] = 'aws-sdk-cloudwatch'
3628
- context[:gem_version] = '1.63.0'
3636
+ context[:gem_version] = '1.64.0'
3629
3637
  Seahorse::Client::Request.new(handlers, context)
3630
3638
  end
3631
3639
 
@@ -531,6 +531,13 @@ module Aws::CloudWatch
531
531
  #
532
532
  # Valid Values: `breaching | notBreaching | ignore | missing`
533
533
  #
534
+ # <note markdown="1"> Alarms that evaluate metrics in the `AWS/DynamoDB` namespace always
535
+ # `ignore` missing data even if you choose a different option for
536
+ # `TreatMissingData`. When an `AWS/DynamoDB` metric has missing data,
537
+ # alarms that evaluate that metric remain in their current state.
538
+ #
539
+ # </note>
540
+ #
534
541
  #
535
542
  #
536
543
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarms-and-missing-data
@@ -1799,8 +1799,8 @@ module Aws::CloudWatch
1799
1799
  #
1800
1800
  # @!attribute [rw] statistics_configurations
1801
1801
  # Each entry in this array displays information about one or more
1802
- # metrics that include extended statistics in the metric stream. For
1803
- # more information about extended statistics, see [ CloudWatch
1802
+ # metrics that include additional statistics in the metric stream. For
1803
+ # more information about the additional statistics, see [ CloudWatch
1804
1804
  # statistics definitions][1].
1805
1805
  #
1806
1806
  #
@@ -3227,10 +3227,9 @@ module Aws::CloudWatch
3227
3227
 
3228
3228
  # By default, a metric stream always sends the `MAX`, `MIN`, `SUM`, and
3229
3229
  # `SAMPLECOUNT` statistics for each metric that is streamed. This
3230
- # structure contains information for one metric that includes extended
3231
- # statistics in the stream. For more information about extended
3232
- # statistics, see CloudWatch, listed in [ CloudWatch statistics
3233
- # definitions][1].
3230
+ # structure contains information for one metric that includes additional
3231
+ # statistics in the stream. For more information about statistics, see
3232
+ # CloudWatch, listed in [ CloudWatch statistics definitions][1].
3234
3233
  #
3235
3234
  #
3236
3235
  #
@@ -3250,17 +3249,18 @@ module Aws::CloudWatch
3250
3249
  # }
3251
3250
  #
3252
3251
  # @!attribute [rw] include_metrics
3253
- # An array of metric name and namespace pairs that stream the extended
3254
- # statistics listed in the value of the `AdditionalStatistics`
3255
- # parameter. There can be as many as 100 pairs in the array.
3252
+ # An array of metric name and namespace pairs that stream the
3253
+ # additional statistics listed in the value of the
3254
+ # `AdditionalStatistics` parameter. There can be as many as 100 pairs
3255
+ # in the array.
3256
3256
  #
3257
3257
  # All metrics that match the combination of metric name and namespace
3258
- # will be streamed with the extended statistics, no matter their
3258
+ # will be streamed with the additional statistics, no matter their
3259
3259
  # dimensions.
3260
3260
  # @return [Array<Types::MetricStreamStatisticsMetric>]
3261
3261
  #
3262
3262
  # @!attribute [rw] additional_statistics
3263
- # The list of extended statistics that are to be streamed for the
3263
+ # The list of additional statistics that are to be streamed for the
3264
3264
  # metrics listed in the `IncludeMetrics` array in this structure. This
3265
3265
  # list can include as many as 20 statistics.
3266
3266
  #
@@ -3268,10 +3268,10 @@ module Aws::CloudWatch
3268
3268
  # valid values are `p?? ` percentile statistics such as `p90`, `p99`
3269
3269
  # and so on.
3270
3270
  #
3271
- # If the `OutputFormat` for the stream is `json`, the valid values are
3272
- # include the abbreviations for all of the extended statistics listed
3273
- # in [ CloudWatch statistics definitions][1]. For example, this
3274
- # includes `tm98, ` `wm90`, `PR(:300)`, and so on.
3271
+ # If the `OutputFormat` for the stream is `json`, the valid values
3272
+ # include the abbreviations for all of the statistics listed in [
3273
+ # CloudWatch statistics definitions][1]. For example, this includes
3274
+ # `tm98, ` `wm90`, `PR(:300)`, and so on.
3275
3275
  #
3276
3276
  #
3277
3277
  #
@@ -3287,8 +3287,8 @@ module Aws::CloudWatch
3287
3287
  include Aws::Structure
3288
3288
  end
3289
3289
 
3290
- # This object contains the information for one metric that is to
3291
- # streamed with extended statistics.
3290
+ # This object contains the information for one metric that is to be
3291
+ # streamed with additional statistics.
3292
3292
  #
3293
3293
  # @note When making an API call, you may pass MetricStreamStatisticsMetric
3294
3294
  # data as a hash:
@@ -3299,7 +3299,7 @@ module Aws::CloudWatch
3299
3299
  # }
3300
3300
  #
3301
3301
  # @!attribute [rw] namespace
3302
- # The metric namespace for the metric.
3302
+ # The namespace of the metric.
3303
3303
  # @return [String]
3304
3304
  #
3305
3305
  # @!attribute [rw] metric_name
@@ -4056,6 +4056,13 @@ module Aws::CloudWatch
4056
4056
  #
4057
4057
  # Valid Values: `breaching | notBreaching | ignore | missing`
4058
4058
  #
4059
+ # <note markdown="1"> Alarms that evaluate metrics in the `AWS/DynamoDB` namespace always
4060
+ # `ignore` missing data even if you choose a different option for
4061
+ # `TreatMissingData`. When an `AWS/DynamoDB` metric has missing data,
4062
+ # alarms that evaluate that metric remain in their current state.
4063
+ #
4064
+ # </note>
4065
+ #
4059
4066
  #
4060
4067
  #
4061
4068
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarms-and-missing-data
@@ -4328,16 +4335,18 @@ module Aws::CloudWatch
4328
4335
  # @!attribute [rw] statistics_configurations
4329
4336
  # By default, a metric stream always sends the `MAX`, `MIN`, `SUM`,
4330
4337
  # and `SAMPLECOUNT` statistics for each metric that is streamed. You
4331
- # can use this parameter to have the metric stream also send extended
4332
- # statistics in the stream. This array can have up to 100 members.
4338
+ # can use this parameter to have the metric stream also send
4339
+ # additional statistics in the stream. This array can have up to 100
4340
+ # members.
4333
4341
  #
4334
4342
  # For each entry in this array, you specify one or more metrics and
4335
- # the list of extended statistics to stream for those metrics. The
4336
- # extended statistics that you can stream depend on the stream's
4343
+ # the list of additional statistics to stream for those metrics. The
4344
+ # additional statistics that you can stream depend on the stream's
4337
4345
  # `OutputFormat`. If the `OutputFormat` is `json`, you can stream any
4338
- # extended statistic that is supported by CloudWatch, listed in [
4346
+ # additional statistic that is supported by CloudWatch, listed in [
4339
4347
  # CloudWatch statistics definitions][1]. If the `OutputFormat` is
4340
- # `opentelemetry0.7`, you can stream percentile statistics (p*??*).
4348
+ # `opentelemetry0.7`, you can stream percentile statistics such as
4349
+ # p95, p99.9 and so on.
4341
4350
  #
4342
4351
  #
4343
4352
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloudwatch/customizations'
52
52
  # @!group service
53
53
  module Aws::CloudWatch
54
54
 
55
- GEM_VERSION = '1.63.0'
55
+ GEM_VERSION = '1.64.0'
56
56
 
57
57
  end
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.63.0
4
+ version: 1.64.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-04-13 00:00:00.000000000 Z
11
+ date: 2022-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core