aws-sdk-devopsguru 1.24.0 → 1.25.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: 06a91fde9a29161660e71beff7559016b4341f4aab47dcc6412f36c4a27724bc
4
- data.tar.gz: 20b1e53a56f4bdd69c11f4041bf5831ceea0e8170a8ebc2e8adfdc76027b64f2
3
+ metadata.gz: fd17410997959ca5b6c7822e84dcd9ad84683ac4cddf0cf70482276e187c25a5
4
+ data.tar.gz: 8acfea50f2ec114d86b6ae5df03b0562b89bc147ef1344aa9375edd408e5c501
5
5
  SHA512:
6
- metadata.gz: 9d6e42da1639127acf3926ab76a84091bc6a248559f9af82e1022d74b1edaf3b83498d291e58dc8598b57ee885ae2b080860e728b23fbf694c0700889b2f9fe8
7
- data.tar.gz: 771ec4bf72d6e3f058a1368918cacac2a42f8326adf25d2c1c0ddf9e5332b9aecefc477d5a958c55888af79de8ad7ae412605db40937d980b7f3b5c312fba107
6
+ metadata.gz: 70383bde2e54bbd1f10410ee7341503231a20ba735bb86d117ae7d4b9f6cf5620fdfd090fa21d5e54112b19a05a4dc5b6fca14b352dbb9e7c155b7746b7acf6b
7
+ data.tar.gz: 1d00d69b811295eebfd2c75b4e93bbd99ca142908cb6904bd479b38188ae54362587990a82dfd998a998ba2f3f91b5c2ada93c91e978385609a2808b183f2541
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2022-09-30)
5
+ ------------------
6
+
7
+ * Feature - This release adds filter feature on AddNotificationChannel API, enable customer to configure the SNS notification messages by Severity or MessageTypes
8
+
4
9
  1.24.0 (2022-07-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.25.0
@@ -395,6 +395,10 @@ module Aws::DevOpsGuru
395
395
  # sns: { # required
396
396
  # topic_arn: "TopicArn",
397
397
  # },
398
+ # filters: {
399
+ # severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
400
+ # message_types: ["NEW_INSIGHT"], # accepts NEW_INSIGHT, CLOSED_INSIGHT, NEW_ASSOCIATION, SEVERITY_UPGRADED, NEW_RECOMMENDATION
401
+ # },
398
402
  # },
399
403
  # })
400
404
  #
@@ -1651,6 +1655,10 @@ module Aws::DevOpsGuru
1651
1655
  # resp.channels #=> Array
1652
1656
  # resp.channels[0].id #=> String
1653
1657
  # resp.channels[0].config.sns.topic_arn #=> String
1658
+ # resp.channels[0].config.filters.severities #=> Array
1659
+ # resp.channels[0].config.filters.severities[0] #=> String, one of "LOW", "MEDIUM", "HIGH"
1660
+ # resp.channels[0].config.filters.message_types #=> Array
1661
+ # resp.channels[0].config.filters.message_types[0] #=> String, one of "NEW_INSIGHT", "CLOSED_INSIGHT", "NEW_ASSOCIATION", "SEVERITY_UPGRADED", "NEW_RECOMMENDATION"
1654
1662
  # resp.next_token #=> String
1655
1663
  #
1656
1664
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListNotificationChannels AWS API Documentation
@@ -2285,7 +2293,7 @@ module Aws::DevOpsGuru
2285
2293
  params: params,
2286
2294
  config: config)
2287
2295
  context[:gem_name] = 'aws-sdk-devopsguru'
2288
- context[:gem_version] = '1.24.0'
2296
+ context[:gem_version] = '1.25.0'
2289
2297
  Seahorse::Client::Request.new(handlers, context)
2290
2298
  end
2291
2299
 
@@ -180,6 +180,9 @@ module Aws::DevOpsGuru
180
180
  NotificationChannel = Shapes::StructureShape.new(name: 'NotificationChannel')
181
181
  NotificationChannelConfig = Shapes::StructureShape.new(name: 'NotificationChannelConfig')
182
182
  NotificationChannelId = Shapes::StringShape.new(name: 'NotificationChannelId')
183
+ NotificationFilterConfig = Shapes::StructureShape.new(name: 'NotificationFilterConfig')
184
+ NotificationMessageType = Shapes::StringShape.new(name: 'NotificationMessageType')
185
+ NotificationMessageTypes = Shapes::ListShape.new(name: 'NotificationMessageTypes')
183
186
  NumMetricsAnalyzed = Shapes::IntegerShape.new(name: 'NumMetricsAnalyzed')
184
187
  NumOpenProactiveInsights = Shapes::IntegerShape.new(name: 'NumOpenProactiveInsights')
185
188
  NumOpenReactiveInsights = Shapes::IntegerShape.new(name: 'NumOpenReactiveInsights')
@@ -767,8 +770,15 @@ module Aws::DevOpsGuru
767
770
  NotificationChannel.struct_class = Types::NotificationChannel
768
771
 
769
772
  NotificationChannelConfig.add_member(:sns, Shapes::ShapeRef.new(shape: SnsChannelConfig, required: true, location_name: "Sns"))
773
+ NotificationChannelConfig.add_member(:filters, Shapes::ShapeRef.new(shape: NotificationFilterConfig, location_name: "Filters"))
770
774
  NotificationChannelConfig.struct_class = Types::NotificationChannelConfig
771
775
 
776
+ NotificationFilterConfig.add_member(:severities, Shapes::ShapeRef.new(shape: InsightSeverities, location_name: "Severities"))
777
+ NotificationFilterConfig.add_member(:message_types, Shapes::ShapeRef.new(shape: NotificationMessageTypes, location_name: "MessageTypes"))
778
+ NotificationFilterConfig.struct_class = Types::NotificationFilterConfig
779
+
780
+ NotificationMessageTypes.member = Shapes::ShapeRef.new(shape: NotificationMessageType)
781
+
772
782
  OpsCenterIntegration.add_member(:opt_in_status, Shapes::ShapeRef.new(shape: OptInStatus, location_name: "OptInStatus"))
773
783
  OpsCenterIntegration.struct_class = Types::OpsCenterIntegration
774
784
 
@@ -84,6 +84,10 @@ module Aws::DevOpsGuru
84
84
  # sns: { # required
85
85
  # topic_arn: "TopicArn",
86
86
  # },
87
+ # filters: {
88
+ # severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
89
+ # message_types: ["NEW_INSIGHT"], # accepts NEW_INSIGHT, CLOSED_INSIGHT, NEW_ASSOCIATION, SEVERITY_UPGRADED, NEW_RECOMMENDATION
90
+ # },
87
91
  # },
88
92
  # }
89
93
  #
@@ -582,12 +586,14 @@ module Aws::DevOpsGuru
582
586
  #
583
587
  # The string used for a *key* in a tag that you use to define your
584
588
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
585
- # *key* might be `Devops-guru-deployment-application` or
586
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
587
- # case of *key* characters don't matter to DevOps Guru. For example,
588
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
589
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
590
- # application might be `Devops-Guru-production-application/RDS` or
589
+ # *key* might be `DevOps-Guru-deployment-application` or
590
+ # `devops-guru-rds-application`. When you create a *key*, the case of
591
+ # characters in the *key* can be whatever you choose. After you create
592
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
593
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
594
+ # and these act as two different *keys*. Possible *key*/*value* pairs
595
+ # in your application might be
596
+ # `Devops-Guru-production-application/RDS` or
591
597
  # `Devops-Guru-production-application/containers`.
592
598
  #
593
599
  #
@@ -1088,12 +1094,14 @@ module Aws::DevOpsGuru
1088
1094
  #
1089
1095
  # The string used for a *key* in a tag that you use to define your
1090
1096
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
1091
- # *key* might be `Devops-guru-deployment-application` or
1092
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
1093
- # case of *key* characters don't matter to DevOps Guru. For example,
1094
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
1095
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
1096
- # application might be `Devops-Guru-production-application/RDS` or
1097
+ # *key* might be `DevOps-Guru-deployment-application` or
1098
+ # `devops-guru-rds-application`. When you create a *key*, the case of
1099
+ # characters in the *key* can be whatever you choose. After you create
1100
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
1101
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
1102
+ # and these act as two different *keys*. Possible *key*/*value* pairs
1103
+ # in your application might be
1104
+ # `Devops-Guru-production-application/RDS` or
1097
1105
  # `Devops-Guru-production-application/containers`.
1098
1106
  #
1099
1107
  #
@@ -1190,12 +1198,14 @@ module Aws::DevOpsGuru
1190
1198
  #
1191
1199
  # The string used for a *key* in a tag that you use to define your
1192
1200
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
1193
- # *key* might be `Devops-guru-deployment-application` or
1194
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
1195
- # case of *key* characters don't matter to DevOps Guru. For example,
1196
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
1197
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
1198
- # application might be `Devops-Guru-production-application/RDS` or
1201
+ # *key* might be `DevOps-Guru-deployment-application` or
1202
+ # `devops-guru-rds-application`. When you create a *key*, the case of
1203
+ # characters in the *key* can be whatever you choose. After you create
1204
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
1205
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
1206
+ # and these act as two different *keys*. Possible *key*/*value* pairs
1207
+ # in your application might be
1208
+ # `Devops-Guru-production-application/RDS` or
1199
1209
  # `Devops-Guru-production-application/containers`.
1200
1210
  #
1201
1211
  #
@@ -2569,6 +2579,10 @@ module Aws::DevOpsGuru
2569
2579
  # sns: { # required
2570
2580
  # topic_arn: "TopicArn",
2571
2581
  # },
2582
+ # filters: {
2583
+ # severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
2584
+ # message_types: ["NEW_INSIGHT"], # accepts NEW_INSIGHT, CLOSED_INSIGHT, NEW_ASSOCIATION, SEVERITY_UPGRADED, NEW_RECOMMENDATION
2585
+ # },
2572
2586
  # }
2573
2587
  #
2574
2588
  # @!attribute [rw] sns
@@ -2600,10 +2614,57 @@ module Aws::DevOpsGuru
2600
2614
  # [2]: https://docs.aws.amazon.com/devops-guru/latest/userguide/sns-kms-permissions.html
2601
2615
  # @return [Types::SnsChannelConfig]
2602
2616
  #
2617
+ # @!attribute [rw] filters
2618
+ # The filter configurations for the Amazon SNS notification topic you
2619
+ # use with DevOps Guru. If you do not provide filter configurations,
2620
+ # the default configurations are to receive notifications for all
2621
+ # message types of `High` or `Medium` severity.
2622
+ # @return [Types::NotificationFilterConfig]
2623
+ #
2603
2624
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/NotificationChannelConfig AWS API Documentation
2604
2625
  #
2605
2626
  class NotificationChannelConfig < Struct.new(
2606
- :sns)
2627
+ :sns,
2628
+ :filters)
2629
+ SENSITIVE = []
2630
+ include Aws::Structure
2631
+ end
2632
+
2633
+ # The filter configurations for the Amazon SNS notification topic you
2634
+ # use with DevOps Guru. You can choose to specify which events or
2635
+ # message types to receive notifications for. You can also choose to
2636
+ # specify which severity levels to receive notifications for.
2637
+ #
2638
+ # @note When making an API call, you may pass NotificationFilterConfig
2639
+ # data as a hash:
2640
+ #
2641
+ # {
2642
+ # severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
2643
+ # message_types: ["NEW_INSIGHT"], # accepts NEW_INSIGHT, CLOSED_INSIGHT, NEW_ASSOCIATION, SEVERITY_UPGRADED, NEW_RECOMMENDATION
2644
+ # }
2645
+ #
2646
+ # @!attribute [rw] severities
2647
+ # The severity levels that you want to receive notifications for. For
2648
+ # example, you can choose to receive notifications only for insights
2649
+ # with `HIGH` and `MEDIUM` severity levels. For more information, see
2650
+ # [Understanding insight severities][1].
2651
+ #
2652
+ #
2653
+ #
2654
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2655
+ # @return [Array<String>]
2656
+ #
2657
+ # @!attribute [rw] message_types
2658
+ # The events that you want to receive notifications for. For example,
2659
+ # you can choose to receive notifications only when the severity level
2660
+ # is upgraded or a new insight is created.
2661
+ # @return [Array<String>]
2662
+ #
2663
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/NotificationFilterConfig AWS API Documentation
2664
+ #
2665
+ class NotificationFilterConfig < Struct.new(
2666
+ :severities,
2667
+ :message_types)
2607
2668
  SENSITIVE = []
2608
2669
  include Aws::Structure
2609
2670
  end
@@ -4165,12 +4226,14 @@ module Aws::DevOpsGuru
4165
4226
  #
4166
4227
  # The string used for a *key* in a tag that you use to define your
4167
4228
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
4168
- # *key* might be `Devops-guru-deployment-application` or
4169
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4170
- # case of *key* characters don't matter to DevOps Guru. For example,
4171
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4172
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4173
- # application might be `Devops-Guru-production-application/RDS` or
4229
+ # *key* might be `DevOps-Guru-deployment-application` or
4230
+ # `devops-guru-rds-application`. When you create a *key*, the case of
4231
+ # characters in the *key* can be whatever you choose. After you create
4232
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
4233
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
4234
+ # and these act as two different *keys*. Possible *key*/*value* pairs
4235
+ # in your application might be
4236
+ # `Devops-Guru-production-application/RDS` or
4174
4237
  # `Devops-Guru-production-application/containers`.
4175
4238
  #
4176
4239
  #
@@ -4227,12 +4290,14 @@ module Aws::DevOpsGuru
4227
4290
  #
4228
4291
  # The string used for a *key* in a tag that you use to define your
4229
4292
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
4230
- # *key* might be `Devops-guru-deployment-application` or
4231
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4232
- # case of *key* characters don't matter to DevOps Guru. For example,
4233
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4234
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4235
- # application might be `Devops-Guru-production-application/RDS` or
4293
+ # *key* might be `DevOps-Guru-deployment-application` or
4294
+ # `devops-guru-rds-application`. When you create a *key*, the case of
4295
+ # characters in the *key* can be whatever you choose. After you create
4296
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
4297
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
4298
+ # and these act as two different *keys*. Possible *key*/*value* pairs
4299
+ # in your application might be
4300
+ # `Devops-Guru-production-application/RDS` or
4236
4301
  # `Devops-Guru-production-application/containers`.
4237
4302
  #
4238
4303
  #
@@ -4856,7 +4921,7 @@ module Aws::DevOpsGuru
4856
4921
  include Aws::Structure
4857
4922
  end
4858
4923
 
4859
- # A collection of Amazon Web Services stags.
4924
+ # A collection of Amazon Web Services tags.
4860
4925
  #
4861
4926
  # Tags help you identify and organize your Amazon Web Services
4862
4927
  # resources. Many Amazon Web Services services support tagging, so you
@@ -4880,12 +4945,13 @@ module Aws::DevOpsGuru
4880
4945
  #
4881
4946
  # The string used for a *key* in a tag that you use to define your
4882
4947
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
4883
- # *key* might be `Devops-guru-deployment-application` or
4884
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4885
- # case of *key* characters don't matter to DevOps Guru. For example,
4886
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4887
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4888
- # application might be `Devops-Guru-production-application/RDS` or
4948
+ # *key* might be `DevOps-Guru-deployment-application` or
4949
+ # `devops-guru-rds-application`. When you create a *key*, the case of
4950
+ # characters in the *key* can be whatever you choose. After you create a
4951
+ # *key*, it is case-sensitive. For example, DevOps Guru works with a
4952
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`, and
4953
+ # these act as two different *keys*. Possible *key*/*value* pairs in
4954
+ # your application might be `Devops-Guru-production-application/RDS` or
4889
4955
  # `Devops-Guru-production-application/containers`.
4890
4956
  #
4891
4957
  #
@@ -4908,12 +4974,14 @@ module Aws::DevOpsGuru
4908
4974
  #
4909
4975
  # The string used for a *key* in a tag that you use to define your
4910
4976
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
4911
- # *key* might be `Devops-guru-deployment-application` or
4912
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4913
- # case of *key* characters don't matter to DevOps Guru. For example,
4914
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4915
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4916
- # application might be `Devops-Guru-production-application/RDS` or
4977
+ # *key* might be `DevOps-Guru-deployment-application` or
4978
+ # `devops-guru-rds-application`. When you create a *key*, the case of
4979
+ # characters in the *key* can be whatever you choose. After you create
4980
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
4981
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
4982
+ # and these act as two different *keys*. Possible *key*/*value* pairs
4983
+ # in your application might be
4984
+ # `Devops-Guru-production-application/RDS` or
4917
4985
  # `Devops-Guru-production-application/containers`.
4918
4986
  # @return [String]
4919
4987
  #
@@ -4949,12 +5017,14 @@ module Aws::DevOpsGuru
4949
5017
  #
4950
5018
  # The string used for a *key* in a tag that you use to define your
4951
5019
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
4952
- # *key* might be `Devops-guru-deployment-application` or
4953
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4954
- # case of *key* characters don't matter to DevOps Guru. For example,
4955
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4956
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4957
- # application might be `Devops-Guru-production-application/RDS` or
5020
+ # *key* might be `DevOps-Guru-deployment-application` or
5021
+ # `devops-guru-rds-application`. When you create a *key*, the case of
5022
+ # characters in the *key* can be whatever you choose. After you create
5023
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
5024
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
5025
+ # and these act as two different *keys*. Possible *key*/*value* pairs
5026
+ # in your application might be
5027
+ # `Devops-Guru-production-application/RDS` or
4958
5028
  # `Devops-Guru-production-application/containers`.
4959
5029
  # @return [String]
4960
5030
  #
@@ -5007,12 +5077,14 @@ module Aws::DevOpsGuru
5007
5077
  #
5008
5078
  # The string used for a *key* in a tag that you use to define your
5009
5079
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
5010
- # *key* might be `Devops-guru-deployment-application` or
5011
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
5012
- # case of *key* characters don't matter to DevOps Guru. For example,
5013
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
5014
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
5015
- # application might be `Devops-Guru-production-application/RDS` or
5080
+ # *key* might be `DevOps-Guru-deployment-application` or
5081
+ # `devops-guru-rds-application`. When you create a *key*, the case of
5082
+ # characters in the *key* can be whatever you choose. After you create
5083
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
5084
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
5085
+ # and these act as two different *keys*. Possible *key*/*value* pairs
5086
+ # in your application might be
5087
+ # `Devops-Guru-production-application/RDS` or
5016
5088
  # `Devops-Guru-production-application/containers`.
5017
5089
  # @return [String]
5018
5090
  #
@@ -5047,12 +5119,14 @@ module Aws::DevOpsGuru
5047
5119
  #
5048
5120
  # The string used for a *key* in a tag that you use to define your
5049
5121
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
5050
- # *key* might be `Devops-guru-deployment-application` or
5051
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
5052
- # case of *key* characters don't matter to DevOps Guru. For example,
5053
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
5054
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
5055
- # application might be `Devops-Guru-production-application/RDS` or
5122
+ # *key* might be `DevOps-Guru-deployment-application` or
5123
+ # `devops-guru-rds-application`. When you create a *key*, the case of
5124
+ # characters in the *key* can be whatever you choose. After you create
5125
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
5126
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
5127
+ # and these act as two different *keys*. Possible *key*/*value* pairs
5128
+ # in your application might be
5129
+ # `Devops-Guru-production-application/RDS` or
5056
5130
  # `Devops-Guru-production-application/containers`.
5057
5131
  # @return [String]
5058
5132
  #
@@ -5235,12 +5309,14 @@ module Aws::DevOpsGuru
5235
5309
  #
5236
5310
  # The string used for a *key* in a tag that you use to define your
5237
5311
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
5238
- # *key* might be `Devops-guru-deployment-application` or
5239
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
5240
- # case of *key* characters don't matter to DevOps Guru. For example,
5241
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
5242
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
5243
- # application might be `Devops-Guru-production-application/RDS` or
5312
+ # *key* might be `DevOps-Guru-deployment-application` or
5313
+ # `devops-guru-rds-application`. When you create a *key*, the case of
5314
+ # characters in the *key* can be whatever you choose. After you create
5315
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
5316
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
5317
+ # and these act as two different *keys*. Possible *key*/*value* pairs
5318
+ # in your application might be
5319
+ # `Devops-Guru-production-application/RDS` or
5244
5320
  # `Devops-Guru-production-application/containers`.
5245
5321
  #
5246
5322
  #
@@ -5385,12 +5461,14 @@ module Aws::DevOpsGuru
5385
5461
  #
5386
5462
  # The string used for a *key* in a tag that you use to define your
5387
5463
  # resource coverage must begin with the prefix `Devops-guru-`. The tag
5388
- # *key* might be `Devops-guru-deployment-application` or
5389
- # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
5390
- # case of *key* characters don't matter to DevOps Guru. For example,
5391
- # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
5392
- # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
5393
- # application might be `Devops-Guru-production-application/RDS` or
5464
+ # *key* might be `DevOps-Guru-deployment-application` or
5465
+ # `devops-guru-rds-application`. When you create a *key*, the case of
5466
+ # characters in the *key* can be whatever you choose. After you create
5467
+ # a *key*, it is case-sensitive. For example, DevOps Guru works with a
5468
+ # *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
5469
+ # and these act as two different *keys*. Possible *key*/*value* pairs
5470
+ # in your application might be
5471
+ # `Devops-Guru-production-application/RDS` or
5394
5472
  # `Devops-Guru-production-application/containers`.
5395
5473
  # @return [String]
5396
5474
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-devopsguru/customizations'
48
48
  # @!group service
49
49
  module Aws::DevOpsGuru
50
50
 
51
- GEM_VERSION = '1.24.0'
51
+ GEM_VERSION = '1.25.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-devopsguru
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.25.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-07-19 00:00:00.000000000 Z
11
+ date: 2022-09-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core