aws-sdk-devopsguru 1.14.0 → 1.18.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -135,20 +135,49 @@ module Aws::DevOpsGuru
135
135
  include Aws::Structure
136
136
  end
137
137
 
138
+ # The Amazon Web Services resources in which DevOps Guru detected
139
+ # unusual behavior that resulted in the generation of an anomaly. When
140
+ # DevOps Guru detects multiple related anomalies, it creates and insight
141
+ # with details about the anomalous behavior and suggestions about how to
142
+ # correct the problem.
143
+ #
144
+ # @!attribute [rw] name
145
+ # The name of the Amazon Web Services resource.
146
+ # @return [String]
147
+ #
148
+ # @!attribute [rw] type
149
+ # The type of the Amazon Web Services resource.
150
+ # @return [String]
151
+ #
152
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AnomalyResource AWS API Documentation
153
+ #
154
+ class AnomalyResource < Struct.new(
155
+ :name,
156
+ :type)
157
+ SENSITIVE = []
158
+ include Aws::Structure
159
+ end
160
+
138
161
  # Details about the source of the anomalous operational data that
139
- # triggered the anomaly. The one supported source is Amazon CloudWatch
140
- # metrics.
162
+ # triggered the anomaly.
141
163
  #
142
164
  # @!attribute [rw] cloud_watch_metrics
143
- # An array of `CloudWatchMetricsDetail` object that contains
144
- # information about the analyzed metrics that displayed anomalous
165
+ # An array of `CloudWatchMetricsDetail` objects that contain
166
+ # information about analyzed CloudWatch metrics that show anomalous
145
167
  # behavior.
146
168
  # @return [Array<Types::CloudWatchMetricsDetail>]
147
169
  #
170
+ # @!attribute [rw] performance_insights_metrics
171
+ # An array of `PerformanceInsightsMetricsDetail` objects that contain
172
+ # information about analyzed Performance Insights metrics that show
173
+ # anomalous behavior.
174
+ # @return [Array<Types::PerformanceInsightsMetricsDetail>]
175
+ #
148
176
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AnomalySourceDetails AWS API Documentation
149
177
  #
150
178
  class AnomalySourceDetails < Struct.new(
151
- :cloud_watch_metrics)
179
+ :cloud_watch_metrics,
180
+ :performance_insights_metrics)
152
181
  SENSITIVE = []
153
182
  include Aws::Structure
154
183
  end
@@ -284,12 +313,13 @@ module Aws::DevOpsGuru
284
313
  # anomalous behavior.
285
314
  #
286
315
  # @!attribute [rw] timestamp_metric_value_pair_list
287
- # This is a list of cloudwatch metric values at given timestamp.
316
+ # This is a list of Amazon CloudWatch metric values at given
317
+ # timestamp.
288
318
  # @return [Array<Types::TimestampMetricValuePair>]
289
319
  #
290
320
  # @!attribute [rw] status_code
291
- # This is enum of the status showing whether the metric value pair
292
- # list has Partial or Complete data or there was an error.
321
+ # This is an enum of the status showing whether the metric value pair
322
+ # list has partial or complete data, or if there was an error.
293
323
  # @return [String]
294
324
  #
295
325
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CloudWatchMetricsDataSummary AWS API Documentation
@@ -354,7 +384,7 @@ module Aws::DevOpsGuru
354
384
  include Aws::Structure
355
385
  end
356
386
 
357
- # The dimension of a Amazon CloudWatch metric that is used when DevOps
387
+ # The dimension of am Amazon CloudWatch metric that is used when DevOps
358
388
  # Guru analyzes the resources in your account for operational problems
359
389
  # and anomalous behavior. A dimension is a name/value pair that is part
360
390
  # of the identity of a metric. A metric can have up to 10 dimensions.
@@ -424,6 +454,12 @@ module Aws::DevOpsGuru
424
454
  # cloud_formation: {
425
455
  # stack_names: ["StackName"],
426
456
  # },
457
+ # tags: [
458
+ # {
459
+ # app_boundary_key: "AppBoundaryKey", # required
460
+ # tag_values: ["TagValue"], # required
461
+ # },
462
+ # ],
427
463
  # }
428
464
  #
429
465
  # @!attribute [rw] cloud_formation
@@ -432,10 +468,50 @@ module Aws::DevOpsGuru
432
468
  # DevOps Guru.
433
469
  # @return [Types::CloudFormationCostEstimationResourceCollectionFilter]
434
470
  #
471
+ # @!attribute [rw] tags
472
+ # The Amazon Web Services tags used to filter the resource collection
473
+ # that is used for a cost estimate.
474
+ #
475
+ # Tags help you identify and organize your Amazon Web Services
476
+ # resources. Many Amazon Web Services services support tagging, so you
477
+ # can assign the same tag to resources from different services to
478
+ # indicate that the resources are related. For example, you can assign
479
+ # the same tag to an Amazon DynamoDB table resource that you assign to
480
+ # an Lambda function. For more information about using tags, see the
481
+ # [Tagging best practices][1] whitepaper.
482
+ #
483
+ # Each Amazon Web Services tag has two parts.
484
+ #
485
+ # * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
486
+ # or `Secret`). Tag *keys* are case-sensitive.
487
+ #
488
+ # * An optional field known as a tag *value* (for example,
489
+ # `111122223333`, `Production`, or a team name). Omitting the tag
490
+ # *value* is the same as using an empty string. Like tag *keys*, tag
491
+ # *values* are case-sensitive.
492
+ #
493
+ # Together these are known as *key*-*value* pairs.
494
+ #
495
+ # The string used for a *key* in a tag that you use to define your
496
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
497
+ # *key* might be `Devops-guru-deployment-application` or
498
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
499
+ # case of *key* characters don't matter to DevOps Guru. For example,
500
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
501
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
502
+ # application might be `Devops-Guru-production-application/RDS` or
503
+ # `Devops-Guru-production-application/containers`.
504
+ #
505
+ #
506
+ #
507
+ # [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
508
+ # @return [Array<Types::TagCostEstimationResourceCollectionFilter>]
509
+ #
435
510
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CostEstimationResourceCollectionFilter AWS API Documentation
436
511
  #
437
512
  class CostEstimationResourceCollectionFilter < Struct.new(
438
- :cloud_formation)
513
+ :cloud_formation,
514
+ :tags)
439
515
  SENSITIVE = []
440
516
  include Aws::Structure
441
517
  end
@@ -579,11 +655,11 @@ module Aws::DevOpsGuru
579
655
  end
580
656
 
581
657
  # @!attribute [rw] proactive_anomaly
582
- # A `ReactiveAnomaly` object that represents the requested anomaly.
658
+ # A `ProactiveAnomaly` object that represents the requested anomaly.
583
659
  # @return [Types::ProactiveAnomaly]
584
660
  #
585
661
  # @!attribute [rw] reactive_anomaly
586
- # A `ProactiveAnomaly` object that represents the requested anomaly.
662
+ # A `ReactiveAnomaly` object that represents the requested anomaly.
587
663
  # @return [Types::ReactiveAnomaly]
588
664
  #
589
665
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAnomalyResponse AWS API Documentation
@@ -789,7 +865,7 @@ module Aws::DevOpsGuru
789
865
  # data as a hash:
790
866
  #
791
867
  # {
792
- # organization_resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_ACCOUNT
868
+ # organization_resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_ACCOUNT, AWS_TAGS
793
869
  # account_ids: ["AwsAccountId"],
794
870
  # organizational_unit_ids: ["OrganizationalUnitId"],
795
871
  # next_token: "UuidNextToken",
@@ -798,12 +874,14 @@ module Aws::DevOpsGuru
798
874
  #
799
875
  # @!attribute [rw] organization_resource_collection_type
800
876
  # An Amazon Web Services resource collection type. This type specifies
801
- # how analyzed Amazon Web Services resources are defined. The one type
802
- # of Amazon Web Services resource collection supported is Amazon Web
803
- # Services CloudFormation stacks. DevOps Guru can be configured to
804
- # analyze only the Amazon Web Services resources that are defined in
805
- # the stacks. You can specify up to 500 Amazon Web Services
806
- # CloudFormation stacks.
877
+ # how analyzed Amazon Web Services resources are defined. The two
878
+ # types of Amazon Web Services resource collections supported are
879
+ # Amazon Web Services CloudFormation stacks and Amazon Web Services
880
+ # resources that contain the same Amazon Web Services tag. DevOps Guru
881
+ # can be configured to analyze the Amazon Web Services resources that
882
+ # are defined in the stacks or that are tagged using the same tag
883
+ # *key*. You can specify up to 500 Amazon Web Services CloudFormation
884
+ # stacks.
807
885
  # @return [String]
808
886
  #
809
887
  # @!attribute [rw] account_ids
@@ -858,13 +936,50 @@ module Aws::DevOpsGuru
858
936
  # this operation. If there are no more pages, this value is null.
859
937
  # @return [String]
860
938
  #
939
+ # @!attribute [rw] tags
940
+ # Tags help you identify and organize your Amazon Web Services
941
+ # resources. Many Amazon Web Services services support tagging, so you
942
+ # can assign the same tag to resources from different services to
943
+ # indicate that the resources are related. For example, you can assign
944
+ # the same tag to an Amazon DynamoDB table resource that you assign to
945
+ # an Lambda function. For more information about using tags, see the
946
+ # [Tagging best practices][1] whitepaper.
947
+ #
948
+ # Each Amazon Web Services tag has two parts.
949
+ #
950
+ # * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
951
+ # or `Secret`). Tag *keys* are case-sensitive.
952
+ #
953
+ # * An optional field known as a tag *value* (for example,
954
+ # `111122223333`, `Production`, or a team name). Omitting the tag
955
+ # *value* is the same as using an empty string. Like tag *keys*, tag
956
+ # *values* are case-sensitive.
957
+ #
958
+ # Together these are known as *key*-*value* pairs.
959
+ #
960
+ # The string used for a *key* in a tag that you use to define your
961
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
962
+ # *key* might be `Devops-guru-deployment-application` or
963
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
964
+ # case of *key* characters don't matter to DevOps Guru. For example,
965
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
966
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
967
+ # application might be `Devops-Guru-production-application/RDS` or
968
+ # `Devops-Guru-production-application/containers`.
969
+ #
970
+ #
971
+ #
972
+ # [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
973
+ # @return [Array<Types::TagHealth>]
974
+ #
861
975
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationResourceCollectionHealthResponse AWS API Documentation
862
976
  #
863
977
  class DescribeOrganizationResourceCollectionHealthResponse < Struct.new(
864
978
  :cloud_formation,
865
979
  :service,
866
980
  :account,
867
- :next_token)
981
+ :next_token,
982
+ :tags)
868
983
  SENSITIVE = []
869
984
  include Aws::Structure
870
985
  end
@@ -873,18 +988,20 @@ module Aws::DevOpsGuru
873
988
  # data as a hash:
874
989
  #
875
990
  # {
876
- # resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE
991
+ # resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
877
992
  # next_token: "UuidNextToken",
878
993
  # }
879
994
  #
880
995
  # @!attribute [rw] resource_collection_type
881
996
  # An Amazon Web Services resource collection type. This type specifies
882
- # how analyzed Amazon Web Services resources are defined. The one type
883
- # of Amazon Web Services resource collection supported is Amazon Web
884
- # Services CloudFormation stacks. DevOps Guru can be configured to
885
- # analyze only the Amazon Web Services resources that are defined in
886
- # the stacks. You can specify up to 500 Amazon Web Services
887
- # CloudFormation stacks.
997
+ # how analyzed Amazon Web Services resources are defined. The two
998
+ # types of Amazon Web Services resource collections supported are
999
+ # Amazon Web Services CloudFormation stacks and Amazon Web Services
1000
+ # resources that contain the same Amazon Web Services tag. DevOps Guru
1001
+ # can be configured to analyze the Amazon Web Services resources that
1002
+ # are defined in the stacks or that are tagged using the same tag
1003
+ # *key*. You can specify up to 500 Amazon Web Services CloudFormation
1004
+ # stacks.
888
1005
  # @return [String]
889
1006
  #
890
1007
  # @!attribute [rw] next_token
@@ -918,12 +1035,52 @@ module Aws::DevOpsGuru
918
1035
  # this operation. If there are no more pages, this value is null.
919
1036
  # @return [String]
920
1037
  #
1038
+ # @!attribute [rw] tags
1039
+ # The Amazon Web Services tags that are used by resources in the
1040
+ # resource collection.
1041
+ #
1042
+ # Tags help you identify and organize your Amazon Web Services
1043
+ # resources. Many Amazon Web Services services support tagging, so you
1044
+ # can assign the same tag to resources from different services to
1045
+ # indicate that the resources are related. For example, you can assign
1046
+ # the same tag to an Amazon DynamoDB table resource that you assign to
1047
+ # an Lambda function. For more information about using tags, see the
1048
+ # [Tagging best practices][1] whitepaper.
1049
+ #
1050
+ # Each Amazon Web Services tag has two parts.
1051
+ #
1052
+ # * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
1053
+ # or `Secret`). Tag *keys* are case-sensitive.
1054
+ #
1055
+ # * An optional field known as a tag *value* (for example,
1056
+ # `111122223333`, `Production`, or a team name). Omitting the tag
1057
+ # *value* is the same as using an empty string. Like tag *keys*, tag
1058
+ # *values* are case-sensitive.
1059
+ #
1060
+ # Together these are known as *key*-*value* pairs.
1061
+ #
1062
+ # The string used for a *key* in a tag that you use to define your
1063
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
1064
+ # *key* might be `Devops-guru-deployment-application` or
1065
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
1066
+ # case of *key* characters don't matter to DevOps Guru. For example,
1067
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
1068
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
1069
+ # application might be `Devops-Guru-production-application/RDS` or
1070
+ # `Devops-Guru-production-application/containers`.
1071
+ #
1072
+ #
1073
+ #
1074
+ # [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
1075
+ # @return [Array<Types::TagHealth>]
1076
+ #
921
1077
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeResourceCollectionHealthResponse AWS API Documentation
922
1078
  #
923
1079
  class DescribeResourceCollectionHealthResponse < Struct.new(
924
1080
  :cloud_formation,
925
1081
  :service,
926
- :next_token)
1082
+ :next_token,
1083
+ :tags)
927
1084
  SENSITIVE = []
928
1085
  include Aws::Structure
929
1086
  end
@@ -982,10 +1139,12 @@ module Aws::DevOpsGuru
982
1139
  #
983
1140
  # @!attribute [rw] resource_collection
984
1141
  # A collection of Amazon Web Services resources supported by DevOps
985
- # Guru. The one type of Amazon Web Services resource collection
986
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
987
- # can be configured to analyze only the Amazon Web Services resources
988
- # that are defined in the stacks. You can specify up to 500 Amazon Web
1142
+ # Guru. The two types of Amazon Web Services resource collections
1143
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
1144
+ # Web Services resources that contain the same Amazon Web Services
1145
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
1146
+ # Services resources that are defined in the stacks or that are tagged
1147
+ # using the same tag *key*. You can specify up to 500 Amazon Web
989
1148
  # Services CloudFormation stacks.
990
1149
  # @return [Types::ResourceCollection]
991
1150
  #
@@ -1163,7 +1322,7 @@ module Aws::DevOpsGuru
1163
1322
  # data as a hash:
1164
1323
  #
1165
1324
  # {
1166
- # resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE
1325
+ # resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
1167
1326
  # next_token: "UuidNextToken",
1168
1327
  # }
1169
1328
  #
@@ -1189,11 +1348,13 @@ module Aws::DevOpsGuru
1189
1348
 
1190
1349
  # @!attribute [rw] resource_collection
1191
1350
  # The requested list of Amazon Web Services resource collections. The
1192
- # one type of Amazon Web Services resource collection supported is
1193
- # Amazon Web Services CloudFormation stacks. DevOps Guru can be
1194
- # configured to analyze only the Amazon Web Services resources that
1195
- # are defined in the stacks. You can specify up to 500 Amazon Web
1196
- # Services CloudFormation stacks.
1351
+ # two types of Amazon Web Services resource collections supported are
1352
+ # Amazon Web Services CloudFormation stacks and Amazon Web Services
1353
+ # resources that contain the same Amazon Web Services tag. DevOps Guru
1354
+ # can be configured to analyze the Amazon Web Services resources that
1355
+ # are defined in the stacks or that are tagged using the same tag
1356
+ # *key*. You can specify up to 500 Amazon Web Services CloudFormation
1357
+ # stacks.
1197
1358
  # @return [Types::ResourceCollectionFilter]
1198
1359
  #
1199
1360
  # @!attribute [rw] next_token
@@ -1396,6 +1557,12 @@ module Aws::DevOpsGuru
1396
1557
  # cloud_formation: {
1397
1558
  # stack_names: ["StackName"],
1398
1559
  # },
1560
+ # tags: [
1561
+ # {
1562
+ # app_boundary_key: "AppBoundaryKey", # required
1563
+ # tag_values: ["TagValue"], # required
1564
+ # },
1565
+ # ],
1399
1566
  # },
1400
1567
  # }
1401
1568
  #
@@ -1426,10 +1593,12 @@ module Aws::DevOpsGuru
1426
1593
  #
1427
1594
  # @!attribute [rw] resource_collection
1428
1595
  # A collection of Amazon Web Services resources supported by DevOps
1429
- # Guru. The one type of Amazon Web Services resource collection
1430
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
1431
- # can be configured to analyze only the Amazon Web Services resources
1432
- # that are defined in the stacks. You can specify up to 500 Amazon Web
1596
+ # Guru. The two types of Amazon Web Services resource collections
1597
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
1598
+ # Web Services resources that contain the same Amazon Web Services
1599
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
1600
+ # Services resources that are defined in the stacks or that are tagged
1601
+ # using the same tag *key*. You can specify up to 500 Amazon Web
1433
1602
  # Services CloudFormation stacks.
1434
1603
  # @return [Types::ResourceCollection]
1435
1604
  #
@@ -1463,6 +1632,12 @@ module Aws::DevOpsGuru
1463
1632
  # cloud_formation: {
1464
1633
  # stack_names: ["StackName"],
1465
1634
  # },
1635
+ # tags: [
1636
+ # {
1637
+ # app_boundary_key: "AppBoundaryKey", # required
1638
+ # tag_values: ["TagValue"], # required
1639
+ # },
1640
+ # ],
1466
1641
  # },
1467
1642
  # },
1468
1643
  # max_results: 1,
@@ -2035,6 +2210,378 @@ module Aws::DevOpsGuru
2035
2210
  include Aws::Structure
2036
2211
  end
2037
2212
 
2213
+ # A logical grouping of Performance Insights metrics for a related
2214
+ # subject area. For example, the `db.sql` dimension group consists of
2215
+ # the following dimensions: `db.sql.id`, `db.sql.db_id`,
2216
+ # `db.sql.statement`, and `db.sql.tokenized_id`.
2217
+ #
2218
+ # <note markdown="1"> Each response element returns a maximum of 500 bytes. For larger
2219
+ # elements, such as SQL statements, only the first 500 bytes are
2220
+ # returned.
2221
+ #
2222
+ # </note>
2223
+ #
2224
+ # Amazon RDS Performance Insights enables you to monitor and explore
2225
+ # different dimensions of database load based on data captured from a
2226
+ # running DB instance. DB load is measured as average active sessions.
2227
+ # Performance Insights provides the data to API consumers as a
2228
+ # two-dimensional time-series dataset. The time dimension provides DB
2229
+ # load data for each time point in the queried time range. Each time
2230
+ # point decomposes overall load in relation to the requested dimensions,
2231
+ # measured at that time point. Examples include SQL, Wait event, User,
2232
+ # and Host.
2233
+ #
2234
+ # * To learn more about Performance Insights and Amazon Aurora DB
2235
+ # instances, go to the [ Amazon Aurora User Guide][1].
2236
+ #
2237
+ # * To learn more about Performance Insights and Amazon RDS DB
2238
+ # instances, go to the [ Amazon RDS User Guide][2].
2239
+ #
2240
+ #
2241
+ #
2242
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html
2243
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
2244
+ #
2245
+ # @!attribute [rw] group
2246
+ # The name of the dimension group. Its valid values are:
2247
+ #
2248
+ # * `db` - The name of the database to which the client is connected
2249
+ # (only Aurora PostgreSQL, Amazon RDS PostgreSQL, Aurora MySQL,
2250
+ # Amazon RDS MySQL, and MariaDB)
2251
+ #
2252
+ # * `db.application` - The name of the application that is connected
2253
+ # to the database (only Aurora PostgreSQL and RDS PostgreSQL)
2254
+ #
2255
+ # * `db.host` - The host name of the connected client (all engines)
2256
+ #
2257
+ # * `db.session_type` - The type of the current session (only Aurora
2258
+ # PostgreSQL and RDS PostgreSQL)
2259
+ #
2260
+ # * `db.sql` - The SQL that is currently executing (all engines)
2261
+ #
2262
+ # * `db.sql_tokenized` - The SQL digest (all engines)
2263
+ #
2264
+ # * `db.wait_event` - The event for which the database backend is
2265
+ # waiting (all engines)
2266
+ #
2267
+ # * `db.wait_event_type` - The type of event for which the database
2268
+ # backend is waiting (all engines)
2269
+ #
2270
+ # * `db.user` - The user logged in to the database (all engines)
2271
+ # @return [String]
2272
+ #
2273
+ # @!attribute [rw] dimensions
2274
+ # A list of specific dimensions from a dimension group. If this
2275
+ # parameter is not present, then it signifies that all of the
2276
+ # dimensions in the group were requested or are present in the
2277
+ # response.
2278
+ #
2279
+ # Valid values for elements in the `Dimensions` array are:
2280
+ #
2281
+ # * `db.application.name` - The name of the application that is
2282
+ # connected to the database (only Aurora PostgreSQL and RDS
2283
+ # PostgreSQL)
2284
+ #
2285
+ # * `db.host.id` - The host ID of the connected client (all engines)
2286
+ #
2287
+ # * `db.host.name` - The host name of the connected client (all
2288
+ # engines)
2289
+ #
2290
+ # * `db.name` - The name of the database to which the client is
2291
+ # connected (only Aurora PostgreSQL, Amazon RDS PostgreSQL, Aurora
2292
+ # MySQL, Amazon RDS MySQL, and MariaDB)
2293
+ #
2294
+ # * `db.session_type.name` - The type of the current session (only
2295
+ # Aurora PostgreSQL and RDS PostgreSQL)
2296
+ #
2297
+ # * `db.sql.id` - The SQL ID generated by Performance Insights (all
2298
+ # engines)
2299
+ #
2300
+ # * `db.sql.db_id` - The SQL ID generated by the database (all
2301
+ # engines)
2302
+ #
2303
+ # * `db.sql.statement` - The SQL text that is being executed (all
2304
+ # engines)
2305
+ #
2306
+ # * `db.sql.tokenized_id`
2307
+ #
2308
+ # * `db.sql_tokenized.id` - The SQL digest ID generated by Performance
2309
+ # Insights (all engines)
2310
+ #
2311
+ # * `db.sql_tokenized.db_id` - SQL digest ID generated by the database
2312
+ # (all engines)
2313
+ #
2314
+ # * `db.sql_tokenized.statement` - The SQL digest text (all engines)
2315
+ #
2316
+ # * `db.user.id` - The ID of the user logged in to the database (all
2317
+ # engines)
2318
+ #
2319
+ # * `db.user.name` - The name of the user logged in to the database
2320
+ # (all engines)
2321
+ #
2322
+ # * `db.wait_event.name` - The event for which the backend is waiting
2323
+ # (all engines)
2324
+ #
2325
+ # * `db.wait_event.type` - The type of event for which the backend is
2326
+ # waiting (all engines)
2327
+ #
2328
+ # * `db.wait_event_type.name` - The name of the event type for which
2329
+ # the backend is waiting (all engines)
2330
+ # @return [Array<String>]
2331
+ #
2332
+ # @!attribute [rw] limit
2333
+ # The maximum number of items to fetch for this dimension group.
2334
+ # @return [Integer]
2335
+ #
2336
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsMetricDimensionGroup AWS API Documentation
2337
+ #
2338
+ class PerformanceInsightsMetricDimensionGroup < Struct.new(
2339
+ :group,
2340
+ :dimensions,
2341
+ :limit)
2342
+ SENSITIVE = []
2343
+ include Aws::Structure
2344
+ end
2345
+
2346
+ # A single query to be processed. Use these parameters to query the
2347
+ # Performance Insights `GetResourceMetrics` API to retrieve the metrics
2348
+ # for an anomaly. For more information, see ` GetResourceMetrics ` in
2349
+ # the *Amazon RDS Performance Insights API Reference*.
2350
+ #
2351
+ # Amazon RDS Performance Insights enables you to monitor and explore
2352
+ # different dimensions of database load based on data captured from a
2353
+ # running DB instance. DB load is measured as average active sessions.
2354
+ # Performance Insights provides the data to API consumers as a
2355
+ # two-dimensional time-series dataset. The time dimension provides DB
2356
+ # load data for each time point in the queried time range. Each time
2357
+ # point decomposes overall load in relation to the requested dimensions,
2358
+ # measured at that time point. Examples include SQL, Wait event, User,
2359
+ # and Host.
2360
+ #
2361
+ # * To learn more about Performance Insights and Amazon Aurora DB
2362
+ # instances, go to the [ Amazon Aurora User Guide][1].
2363
+ #
2364
+ # * To learn more about Performance Insights and Amazon RDS DB
2365
+ # instances, go to the [ Amazon RDS User Guide][2].
2366
+ #
2367
+ #
2368
+ #
2369
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html
2370
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
2371
+ #
2372
+ # @!attribute [rw] metric
2373
+ # The name of the meteric used used when querying an Performance
2374
+ # Insights `GetResourceMetrics` API for anomaly metrics.
2375
+ #
2376
+ # Valid values for `Metric` are:
2377
+ #
2378
+ # * `db.load.avg` - a scaled representation of the number of active
2379
+ # sessions for the database engine.
2380
+ #
2381
+ # * `db.sampledload.avg` - the raw number of active sessions for the
2382
+ # database engine.
2383
+ #
2384
+ # If the number of active sessions is less than an internal
2385
+ # Performance Insights threshold, `db.load.avg` and
2386
+ # `db.sampledload.avg` are the same value. If the number of active
2387
+ # sessions is greater than the internal threshold, Performance
2388
+ # Insights samples the active sessions, with `db.load.avg` showing the
2389
+ # scaled values, `db.sampledload.avg` showing the raw values, and
2390
+ # `db.sampledload.avg` less than `db.load.avg`. For most use cases,
2391
+ # you can query `db.load.avg` only.
2392
+ # @return [String]
2393
+ #
2394
+ # @!attribute [rw] group_by
2395
+ # The specification for how to aggregate the data points from a
2396
+ # Performance Insights `GetResourceMetrics` API query. The Performance
2397
+ # Insights query returns all of the dimensions within that group,
2398
+ # unless you provide the names of specific dimensions within that
2399
+ # group. You can also request that Performance Insights return a
2400
+ # limited number of values for a dimension.
2401
+ # @return [Types::PerformanceInsightsMetricDimensionGroup]
2402
+ #
2403
+ # @!attribute [rw] filter
2404
+ # One or more filters to apply to a Performance Insights
2405
+ # `GetResourceMetrics` API query. Restrictions:
2406
+ #
2407
+ # * Any number of filters by the same dimension, as specified in the
2408
+ # `GroupBy` parameter.
2409
+ #
2410
+ # * A single filter for any other dimension in this dimension group.
2411
+ # @return [Hash<String,String>]
2412
+ #
2413
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsMetricQuery AWS API Documentation
2414
+ #
2415
+ class PerformanceInsightsMetricQuery < Struct.new(
2416
+ :metric,
2417
+ :group_by,
2418
+ :filter)
2419
+ SENSITIVE = []
2420
+ include Aws::Structure
2421
+ end
2422
+
2423
+ # Details about Performance Insights metrics.
2424
+ #
2425
+ # Amazon RDS Performance Insights enables you to monitor and explore
2426
+ # different dimensions of database load based on data captured from a
2427
+ # running DB instance. DB load is measured as average active sessions.
2428
+ # Performance Insights provides the data to API consumers as a
2429
+ # two-dimensional time-series dataset. The time dimension provides DB
2430
+ # load data for each time point in the queried time range. Each time
2431
+ # point decomposes overall load in relation to the requested dimensions,
2432
+ # measured at that time point. Examples include SQL, Wait event, User,
2433
+ # and Host.
2434
+ #
2435
+ # * To learn more about Performance Insights and Amazon Aurora DB
2436
+ # instances, go to the [ Amazon Aurora User Guide][1].
2437
+ #
2438
+ # * To learn more about Performance Insights and Amazon RDS DB
2439
+ # instances, go to the [ Amazon RDS User Guide][2].
2440
+ #
2441
+ #
2442
+ #
2443
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html
2444
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
2445
+ #
2446
+ # @!attribute [rw] metric_display_name
2447
+ # The name used for a specific Performance Insights metric.
2448
+ # @return [String]
2449
+ #
2450
+ # @!attribute [rw] unit
2451
+ # The unit of measure for a metric. For example, a session or a
2452
+ # process.
2453
+ # @return [String]
2454
+ #
2455
+ # @!attribute [rw] metric_query
2456
+ # A single query to be processed for the metric. For more information,
2457
+ # see ` PerformanceInsightsMetricQuery `.
2458
+ # @return [Types::PerformanceInsightsMetricQuery]
2459
+ #
2460
+ # @!attribute [rw] reference_data
2461
+ # For more information, see ` PerformanceInsightsReferenceData `.
2462
+ # @return [Array<Types::PerformanceInsightsReferenceData>]
2463
+ #
2464
+ # @!attribute [rw] stats_at_anomaly
2465
+ # The metric statistics during the anomalous period detected by DevOps
2466
+ # Guru;
2467
+ # @return [Array<Types::PerformanceInsightsStat>]
2468
+ #
2469
+ # @!attribute [rw] stats_at_baseline
2470
+ # Typical metric statistics that are not considered anomalous. When
2471
+ # DevOps Guru analyzes metrics, it compares them to `StatsAtBaseline`
2472
+ # to help determine if they are anomalous.
2473
+ # @return [Array<Types::PerformanceInsightsStat>]
2474
+ #
2475
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsMetricsDetail AWS API Documentation
2476
+ #
2477
+ class PerformanceInsightsMetricsDetail < Struct.new(
2478
+ :metric_display_name,
2479
+ :unit,
2480
+ :metric_query,
2481
+ :reference_data,
2482
+ :stats_at_anomaly,
2483
+ :stats_at_baseline)
2484
+ SENSITIVE = []
2485
+ include Aws::Structure
2486
+ end
2487
+
2488
+ # Reference scalar values and other metrics that DevOps Guru displays on
2489
+ # a graph in its console along with the actual metrics it analyzed.
2490
+ # Compare these reference values to your actual metrics to help you
2491
+ # understand anomalous behavior that DevOps Guru detected.
2492
+ #
2493
+ # @!attribute [rw] reference_scalar
2494
+ # A scalar value DevOps Guru for a metric that DevOps Guru compares to
2495
+ # actual metric values. This reference value is used to determine if
2496
+ # an actual metric value should be considered anomalous.
2497
+ # @return [Types::PerformanceInsightsReferenceScalar]
2498
+ #
2499
+ # @!attribute [rw] reference_metric
2500
+ # A metric that DevOps Guru compares to actual metric values. This
2501
+ # reference metric is used to determine if an actual metric should be
2502
+ # considered anomalous.
2503
+ # @return [Types::PerformanceInsightsReferenceMetric]
2504
+ #
2505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsReferenceComparisonValues AWS API Documentation
2506
+ #
2507
+ class PerformanceInsightsReferenceComparisonValues < Struct.new(
2508
+ :reference_scalar,
2509
+ :reference_metric)
2510
+ SENSITIVE = []
2511
+ include Aws::Structure
2512
+ end
2513
+
2514
+ # Reference data used to evaluate Performance Insights to determine if
2515
+ # its performance is anomalous or not.
2516
+ #
2517
+ # @!attribute [rw] name
2518
+ # The name of the reference data.
2519
+ # @return [String]
2520
+ #
2521
+ # @!attribute [rw] comparison_values
2522
+ # The specific reference values used to evaluate the Performance
2523
+ # Insights. For more information, see `
2524
+ # PerformanceInsightsReferenceComparisonValues `.
2525
+ # @return [Types::PerformanceInsightsReferenceComparisonValues]
2526
+ #
2527
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsReferenceData AWS API Documentation
2528
+ #
2529
+ class PerformanceInsightsReferenceData < Struct.new(
2530
+ :name,
2531
+ :comparison_values)
2532
+ SENSITIVE = []
2533
+ include Aws::Structure
2534
+ end
2535
+
2536
+ # Information about a reference metric used to evaluate Performance
2537
+ # Insights.
2538
+ #
2539
+ # @!attribute [rw] metric_query
2540
+ # A query to be processed on the metric.
2541
+ # @return [Types::PerformanceInsightsMetricQuery]
2542
+ #
2543
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsReferenceMetric AWS API Documentation
2544
+ #
2545
+ class PerformanceInsightsReferenceMetric < Struct.new(
2546
+ :metric_query)
2547
+ SENSITIVE = []
2548
+ include Aws::Structure
2549
+ end
2550
+
2551
+ # A reference value to compare Performance Insights metrics against to
2552
+ # determine if the metrics demonstrate anomalous behavior.
2553
+ #
2554
+ # @!attribute [rw] value
2555
+ # The reference value.
2556
+ # @return [Float]
2557
+ #
2558
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsReferenceScalar AWS API Documentation
2559
+ #
2560
+ class PerformanceInsightsReferenceScalar < Struct.new(
2561
+ :value)
2562
+ SENSITIVE = []
2563
+ include Aws::Structure
2564
+ end
2565
+
2566
+ # A statistic in a Performance Insights collection.
2567
+ #
2568
+ # @!attribute [rw] type
2569
+ # The statistic type.
2570
+ # @return [String]
2571
+ #
2572
+ # @!attribute [rw] value
2573
+ # The value of the statistic.
2574
+ # @return [Float]
2575
+ #
2576
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsStat AWS API Documentation
2577
+ #
2578
+ class PerformanceInsightsStat < Struct.new(
2579
+ :type,
2580
+ :value)
2581
+ SENSITIVE = []
2582
+ include Aws::Structure
2583
+ end
2584
+
2038
2585
  # The time range during which anomalous behavior in a proactive anomaly
2039
2586
  # or an insight is expected to occur.
2040
2587
  #
@@ -2065,7 +2612,14 @@ module Aws::DevOpsGuru
2065
2612
  # @return [String]
2066
2613
  #
2067
2614
  # @!attribute [rw] severity
2068
- # The severity of a proactive anomaly.
2615
+ # The severity of the anomaly. The severity of anomalies that generate
2616
+ # an insight determine that insight's severity. For more information,
2617
+ # see [Understanding insight severities][1] in the *Amazon DevOps Guru
2618
+ # User Guide*.
2619
+ #
2620
+ #
2621
+ #
2622
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2069
2623
  # @return [String]
2070
2624
  #
2071
2625
  # @!attribute [rw] status
@@ -2084,7 +2638,7 @@ module Aws::DevOpsGuru
2084
2638
  # @return [Types::AnomalyTimeRange]
2085
2639
  #
2086
2640
  # @!attribute [rw] anomaly_reported_time_range
2087
- # A `AnomalyReportedTimeRange` object that specifies the time range
2641
+ # An `AnomalyReportedTimeRange` object that specifies the time range
2088
2642
  # between when the anomaly is opened and the time when it is closed.
2089
2643
  # @return [Types::AnomalyReportedTimeRange]
2090
2644
  #
@@ -2106,10 +2660,12 @@ module Aws::DevOpsGuru
2106
2660
  #
2107
2661
  # @!attribute [rw] resource_collection
2108
2662
  # A collection of Amazon Web Services resources supported by DevOps
2109
- # Guru. The one type of Amazon Web Services resource collection
2110
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2111
- # can be configured to analyze only the Amazon Web Services resources
2112
- # that are defined in the stacks. You can specify up to 500 Amazon Web
2663
+ # Guru. The two types of Amazon Web Services resource collections
2664
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
2665
+ # Web Services resources that contain the same Amazon Web Services
2666
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
2667
+ # Services resources that are defined in the stacks or that are tagged
2668
+ # using the same tag *key*. You can specify up to 500 Amazon Web
2113
2669
  # Services CloudFormation stacks.
2114
2670
  # @return [Types::ResourceCollection]
2115
2671
  #
@@ -2145,7 +2701,14 @@ module Aws::DevOpsGuru
2145
2701
  # @return [String]
2146
2702
  #
2147
2703
  # @!attribute [rw] severity
2148
- # The severity of the anomaly.
2704
+ # The severity of the anomaly. The severity of anomalies that generate
2705
+ # an insight determine that insight's severity. For more information,
2706
+ # see [Understanding insight severities][1] in the *Amazon DevOps Guru
2707
+ # User Guide*.
2708
+ #
2709
+ #
2710
+ #
2711
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2149
2712
  # @return [String]
2150
2713
  #
2151
2714
  # @!attribute [rw] status
@@ -2164,7 +2727,7 @@ module Aws::DevOpsGuru
2164
2727
  # @return [Types::AnomalyTimeRange]
2165
2728
  #
2166
2729
  # @!attribute [rw] anomaly_reported_time_range
2167
- # A `AnomalyReportedTimeRange` object that specifies the time range
2730
+ # An `AnomalyReportedTimeRange` object that specifies the time range
2168
2731
  # between when the anomaly is opened and the time when it is closed.
2169
2732
  # @return [Types::AnomalyReportedTimeRange]
2170
2733
  #
@@ -2186,10 +2749,12 @@ module Aws::DevOpsGuru
2186
2749
  #
2187
2750
  # @!attribute [rw] resource_collection
2188
2751
  # A collection of Amazon Web Services resources supported by DevOps
2189
- # Guru. The one type of Amazon Web Services resource collection
2190
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2191
- # can be configured to analyze only the Amazon Web Services resources
2192
- # that are defined in the stacks. You can specify up to 500 Amazon Web
2752
+ # Guru. The two types of Amazon Web Services resource collections
2753
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
2754
+ # Web Services resources that contain the same Amazon Web Services
2755
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
2756
+ # Services resources that are defined in the stacks or that are tagged
2757
+ # using the same tag *key*. You can specify up to 500 Amazon Web
2193
2758
  # Services CloudFormation stacks.
2194
2759
  # @return [Types::ResourceCollection]
2195
2760
  #
@@ -2229,7 +2794,13 @@ module Aws::DevOpsGuru
2229
2794
  # @return [String]
2230
2795
  #
2231
2796
  # @!attribute [rw] severity
2232
- # The severity of the proactive insight.
2797
+ # The severity of the insight. For more information, see
2798
+ # [Understanding insight severities][1] in the *Amazon DevOps Guru
2799
+ # User Guide*.
2800
+ #
2801
+ #
2802
+ #
2803
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2233
2804
  # @return [String]
2234
2805
  #
2235
2806
  # @!attribute [rw] status
@@ -2248,10 +2819,12 @@ module Aws::DevOpsGuru
2248
2819
  #
2249
2820
  # @!attribute [rw] resource_collection
2250
2821
  # A collection of Amazon Web Services resources supported by DevOps
2251
- # Guru. The one type of Amazon Web Services resource collection
2252
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2253
- # can be configured to analyze only the Amazon Web Services resources
2254
- # that are defined in the stacks. You can specify up to 500 Amazon Web
2822
+ # Guru. The two types of Amazon Web Services resource collections
2823
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
2824
+ # Web Services resources that contain the same Amazon Web Services
2825
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
2826
+ # Services resources that are defined in the stacks or that are tagged
2827
+ # using the same tag *key*. You can specify up to 500 Amazon Web
2255
2828
  # Services CloudFormation stacks.
2256
2829
  # @return [Types::ResourceCollection]
2257
2830
  #
@@ -2288,7 +2861,13 @@ module Aws::DevOpsGuru
2288
2861
  # @return [String]
2289
2862
  #
2290
2863
  # @!attribute [rw] severity
2291
- # The severity of the proactive insight.
2864
+ # The severity of the insight. For more information, see
2865
+ # [Understanding insight severities][1] in the *Amazon DevOps Guru
2866
+ # User Guide*.
2867
+ #
2868
+ #
2869
+ #
2870
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2292
2871
  # @return [String]
2293
2872
  #
2294
2873
  # @!attribute [rw] status
@@ -2307,10 +2886,12 @@ module Aws::DevOpsGuru
2307
2886
  #
2308
2887
  # @!attribute [rw] resource_collection
2309
2888
  # A collection of Amazon Web Services resources supported by DevOps
2310
- # Guru. The one type of Amazon Web Services resource collection
2311
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2312
- # can be configured to analyze only the Amazon Web Services resources
2313
- # that are defined in the stacks. You can specify up to 500 Amazon Web
2889
+ # Guru. The two types of Amazon Web Services resource collections
2890
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
2891
+ # Web Services resources that contain the same Amazon Web Services
2892
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
2893
+ # Services resources that are defined in the stacks or that are tagged
2894
+ # using the same tag *key*. You can specify up to 500 Amazon Web
2314
2895
  # Services CloudFormation stacks.
2315
2896
  # @return [Types::ResourceCollection]
2316
2897
  #
@@ -2318,6 +2899,11 @@ module Aws::DevOpsGuru
2318
2899
  # A collection of the names of Amazon Web Services services.
2319
2900
  # @return [Types::ServiceCollection]
2320
2901
  #
2902
+ # @!attribute [rw] associated_resource_arns
2903
+ # The Amazon Resource Names (ARNs) of the Amazon Web Services
2904
+ # resources that generated this insight.
2905
+ # @return [Array<String>]
2906
+ #
2321
2907
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ProactiveInsightSummary AWS API Documentation
2322
2908
  #
2323
2909
  class ProactiveInsightSummary < Struct.new(
@@ -2328,7 +2914,8 @@ module Aws::DevOpsGuru
2328
2914
  :insight_time_range,
2329
2915
  :prediction_time_range,
2330
2916
  :resource_collection,
2331
- :service_collection)
2917
+ :service_collection,
2918
+ :associated_resource_arns)
2332
2919
  SENSITIVE = []
2333
2920
  include Aws::Structure
2334
2921
  end
@@ -2353,7 +2940,13 @@ module Aws::DevOpsGuru
2353
2940
  # @return [String]
2354
2941
  #
2355
2942
  # @!attribute [rw] severity
2356
- # An array of severity values used to search for insights.
2943
+ # An array of severity values used to search for insights. For more
2944
+ # information, see [Understanding insight severities][1] in the
2945
+ # *Amazon DevOps Guru User Guide*.
2946
+ #
2947
+ #
2948
+ #
2949
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2357
2950
  # @return [String]
2358
2951
  #
2359
2952
  # @!attribute [rw] status
@@ -2372,10 +2965,12 @@ module Aws::DevOpsGuru
2372
2965
  #
2373
2966
  # @!attribute [rw] resource_collection
2374
2967
  # A collection of Amazon Web Services resources supported by DevOps
2375
- # Guru. The one type of Amazon Web Services resource collection
2376
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2377
- # can be configured to analyze only the Amazon Web Services resources
2378
- # that are defined in the stacks. You can specify up to 500 Amazon Web
2968
+ # Guru. The two types of Amazon Web Services resource collections
2969
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
2970
+ # Web Services resources that contain the same Amazon Web Services
2971
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
2972
+ # Services resources that are defined in the stacks or that are tagged
2973
+ # using the same tag *key*. You can specify up to 500 Amazon Web
2379
2974
  # Services CloudFormation stacks.
2380
2975
  # @return [Types::ResourceCollection]
2381
2976
  #
@@ -2435,7 +3030,14 @@ module Aws::DevOpsGuru
2435
3030
  # @return [String]
2436
3031
  #
2437
3032
  # @!attribute [rw] severity
2438
- # The severity of the anomaly.
3033
+ # The severity of the anomaly. The severity of anomalies that generate
3034
+ # an insight determine that insight's severity. For more information,
3035
+ # see [Understanding insight severities][1] in the *Amazon DevOps Guru
3036
+ # User Guide*.
3037
+ #
3038
+ #
3039
+ #
3040
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2439
3041
  # @return [String]
2440
3042
  #
2441
3043
  # @!attribute [rw] status
@@ -2450,7 +3052,7 @@ module Aws::DevOpsGuru
2450
3052
  # @return [Types::AnomalyTimeRange]
2451
3053
  #
2452
3054
  # @!attribute [rw] anomaly_reported_time_range
2453
- # A `AnomalyReportedTimeRange` object that specifies the time range
3055
+ # An `AnomalyReportedTimeRange` object that specifies the time range
2454
3056
  # between when the anomaly is opened and the time when it is closed.
2455
3057
  # @return [Types::AnomalyReportedTimeRange]
2456
3058
  #
@@ -2467,13 +3069,43 @@ module Aws::DevOpsGuru
2467
3069
  #
2468
3070
  # @!attribute [rw] resource_collection
2469
3071
  # A collection of Amazon Web Services resources supported by DevOps
2470
- # Guru. The one type of Amazon Web Services resource collection
2471
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2472
- # can be configured to analyze only the Amazon Web Services resources
2473
- # that are defined in the stacks. You can specify up to 500 Amazon Web
3072
+ # Guru. The two types of Amazon Web Services resource collections
3073
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
3074
+ # Web Services resources that contain the same Amazon Web Services
3075
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
3076
+ # Services resources that are defined in the stacks or that are tagged
3077
+ # using the same tag *key*. You can specify up to 500 Amazon Web
2474
3078
  # Services CloudFormation stacks.
2475
3079
  # @return [Types::ResourceCollection]
2476
3080
  #
3081
+ # @!attribute [rw] type
3082
+ # The type of the reactive anomaly. It can be one of the following
3083
+ # types.
3084
+ #
3085
+ # * `CAUSAL` - the anomaly can cause a new insight.
3086
+ #
3087
+ # * `CONTEXTUAL` - the anomaly contains additional information about
3088
+ # an insight or its causal anomaly.
3089
+ # @return [String]
3090
+ #
3091
+ # @!attribute [rw] name
3092
+ # The name of the reactive anomaly.
3093
+ # @return [String]
3094
+ #
3095
+ # @!attribute [rw] description
3096
+ # A description of the reactive anomaly.
3097
+ # @return [String]
3098
+ #
3099
+ # @!attribute [rw] causal_anomaly_id
3100
+ # The ID of the causal anomaly that is associated with this reactive
3101
+ # anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.
3102
+ # @return [String]
3103
+ #
3104
+ # @!attribute [rw] anomaly_resources
3105
+ # The Amazon Web Services resources in which anomalous behavior was
3106
+ # detected by DevOps Guru.
3107
+ # @return [Array<Types::AnomalyResource>]
3108
+ #
2477
3109
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveAnomaly AWS API Documentation
2478
3110
  #
2479
3111
  class ReactiveAnomaly < Struct.new(
@@ -2484,7 +3116,12 @@ module Aws::DevOpsGuru
2484
3116
  :anomaly_reported_time_range,
2485
3117
  :source_details,
2486
3118
  :associated_insight_id,
2487
- :resource_collection)
3119
+ :resource_collection,
3120
+ :type,
3121
+ :name,
3122
+ :description,
3123
+ :causal_anomaly_id,
3124
+ :anomaly_resources)
2488
3125
  SENSITIVE = []
2489
3126
  include Aws::Structure
2490
3127
  end
@@ -2497,7 +3134,14 @@ module Aws::DevOpsGuru
2497
3134
  # @return [String]
2498
3135
  #
2499
3136
  # @!attribute [rw] severity
2500
- # The severity of the reactive anomaly.
3137
+ # The severity of the anomaly. The severity of anomalies that generate
3138
+ # an insight determine that insight's severity. For more information,
3139
+ # see [Understanding insight severities][1] in the *Amazon DevOps Guru
3140
+ # User Guide*.
3141
+ #
3142
+ #
3143
+ #
3144
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2501
3145
  # @return [String]
2502
3146
  #
2503
3147
  # @!attribute [rw] status
@@ -2512,7 +3156,7 @@ module Aws::DevOpsGuru
2512
3156
  # @return [Types::AnomalyTimeRange]
2513
3157
  #
2514
3158
  # @!attribute [rw] anomaly_reported_time_range
2515
- # A `AnomalyReportedTimeRange` object that specifies the time range
3159
+ # An `AnomalyReportedTimeRange` object that specifies the time range
2516
3160
  # between when the anomaly is opened and the time when it is closed.
2517
3161
  # @return [Types::AnomalyReportedTimeRange]
2518
3162
  #
@@ -2529,13 +3173,43 @@ module Aws::DevOpsGuru
2529
3173
  #
2530
3174
  # @!attribute [rw] resource_collection
2531
3175
  # A collection of Amazon Web Services resources supported by DevOps
2532
- # Guru. The one type of Amazon Web Services resource collection
2533
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2534
- # can be configured to analyze only the Amazon Web Services resources
2535
- # that are defined in the stacks. You can specify up to 500 Amazon Web
3176
+ # Guru. The two types of Amazon Web Services resource collections
3177
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
3178
+ # Web Services resources that contain the same Amazon Web Services
3179
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
3180
+ # Services resources that are defined in the stacks or that are tagged
3181
+ # using the same tag *key*. You can specify up to 500 Amazon Web
2536
3182
  # Services CloudFormation stacks.
2537
3183
  # @return [Types::ResourceCollection]
2538
3184
  #
3185
+ # @!attribute [rw] type
3186
+ # The type of the reactive anomaly. It can be one of the following
3187
+ # types.
3188
+ #
3189
+ # * `CAUSAL` - the anomaly can cause a new insight.
3190
+ #
3191
+ # * `CONTEXTUAL` - the anomaly contains additional information about
3192
+ # an insight or its causal anomaly.
3193
+ # @return [String]
3194
+ #
3195
+ # @!attribute [rw] name
3196
+ # The name of the reactive anomaly.
3197
+ # @return [String]
3198
+ #
3199
+ # @!attribute [rw] description
3200
+ # A description of the reactive anomaly.
3201
+ # @return [String]
3202
+ #
3203
+ # @!attribute [rw] causal_anomaly_id
3204
+ # The ID of the causal anomaly that is associated with this reactive
3205
+ # anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.
3206
+ # @return [String]
3207
+ #
3208
+ # @!attribute [rw] anomaly_resources
3209
+ # The Amazon Web Services resources in which anomalous behavior was
3210
+ # detected by DevOps Guru.
3211
+ # @return [Array<Types::AnomalyResource>]
3212
+ #
2539
3213
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveAnomalySummary AWS API Documentation
2540
3214
  #
2541
3215
  class ReactiveAnomalySummary < Struct.new(
@@ -2546,7 +3220,12 @@ module Aws::DevOpsGuru
2546
3220
  :anomaly_reported_time_range,
2547
3221
  :source_details,
2548
3222
  :associated_insight_id,
2549
- :resource_collection)
3223
+ :resource_collection,
3224
+ :type,
3225
+ :name,
3226
+ :description,
3227
+ :causal_anomaly_id,
3228
+ :anomaly_resources)
2550
3229
  SENSITIVE = []
2551
3230
  include Aws::Structure
2552
3231
  end
@@ -2563,7 +3242,13 @@ module Aws::DevOpsGuru
2563
3242
  # @return [String]
2564
3243
  #
2565
3244
  # @!attribute [rw] severity
2566
- # The severity of a reactive insight.
3245
+ # The severity of the insight. For more information, see
3246
+ # [Understanding insight severities][1] in the *Amazon DevOps Guru
3247
+ # User Guide*.
3248
+ #
3249
+ #
3250
+ #
3251
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2567
3252
  # @return [String]
2568
3253
  #
2569
3254
  # @!attribute [rw] status
@@ -2577,10 +3262,12 @@ module Aws::DevOpsGuru
2577
3262
  #
2578
3263
  # @!attribute [rw] resource_collection
2579
3264
  # A collection of Amazon Web Services resources supported by DevOps
2580
- # Guru. The one type of Amazon Web Services resource collection
2581
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2582
- # can be configured to analyze only the Amazon Web Services resources
2583
- # that are defined in the stacks. You can specify up to 500 Amazon Web
3265
+ # Guru. The two types of Amazon Web Services resource collections
3266
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
3267
+ # Web Services resources that contain the same Amazon Web Services
3268
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
3269
+ # Services resources that are defined in the stacks or that are tagged
3270
+ # using the same tag *key*. You can specify up to 500 Amazon Web
2584
3271
  # Services CloudFormation stacks.
2585
3272
  # @return [Types::ResourceCollection]
2586
3273
  #
@@ -2616,7 +3303,13 @@ module Aws::DevOpsGuru
2616
3303
  # @return [String]
2617
3304
  #
2618
3305
  # @!attribute [rw] severity
2619
- # The severity of a reactive insight.
3306
+ # The severity of the insight. For more information, see
3307
+ # [Understanding insight severities][1] in the *Amazon DevOps Guru
3308
+ # User Guide*.
3309
+ #
3310
+ #
3311
+ #
3312
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2620
3313
  # @return [String]
2621
3314
  #
2622
3315
  # @!attribute [rw] status
@@ -2630,10 +3323,12 @@ module Aws::DevOpsGuru
2630
3323
  #
2631
3324
  # @!attribute [rw] resource_collection
2632
3325
  # A collection of Amazon Web Services resources supported by DevOps
2633
- # Guru. The one type of Amazon Web Services resource collection
2634
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2635
- # can be configured to analyze only the Amazon Web Services resources
2636
- # that are defined in the stacks. You can specify up to 500 Amazon Web
3326
+ # Guru. The two types of Amazon Web Services resource collections
3327
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
3328
+ # Web Services resources that contain the same Amazon Web Services
3329
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
3330
+ # Services resources that are defined in the stacks or that are tagged
3331
+ # using the same tag *key*. You can specify up to 500 Amazon Web
2637
3332
  # Services CloudFormation stacks.
2638
3333
  # @return [Types::ResourceCollection]
2639
3334
  #
@@ -2641,6 +3336,11 @@ module Aws::DevOpsGuru
2641
3336
  # A collection of the names of Amazon Web Services services.
2642
3337
  # @return [Types::ServiceCollection]
2643
3338
  #
3339
+ # @!attribute [rw] associated_resource_arns
3340
+ # The Amazon Resource Names (ARNs) of the Amazon Web Services
3341
+ # resources that generated this insight.
3342
+ # @return [Array<String>]
3343
+ #
2644
3344
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveInsightSummary AWS API Documentation
2645
3345
  #
2646
3346
  class ReactiveInsightSummary < Struct.new(
@@ -2650,7 +3350,8 @@ module Aws::DevOpsGuru
2650
3350
  :status,
2651
3351
  :insight_time_range,
2652
3352
  :resource_collection,
2653
- :service_collection)
3353
+ :service_collection,
3354
+ :associated_resource_arns)
2654
3355
  SENSITIVE = []
2655
3356
  include Aws::Structure
2656
3357
  end
@@ -2675,7 +3376,13 @@ module Aws::DevOpsGuru
2675
3376
  # @return [String]
2676
3377
  #
2677
3378
  # @!attribute [rw] severity
2678
- # An array of severity values used to search for insights.
3379
+ # An array of severity values used to search for insights. For more
3380
+ # information, see [Understanding insight severities][1] in the
3381
+ # *Amazon DevOps Guru User Guide*.
3382
+ #
3383
+ #
3384
+ #
3385
+ # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
2679
3386
  # @return [String]
2680
3387
  #
2681
3388
  # @!attribute [rw] status
@@ -2689,10 +3396,12 @@ module Aws::DevOpsGuru
2689
3396
  #
2690
3397
  # @!attribute [rw] resource_collection
2691
3398
  # A collection of Amazon Web Services resources supported by DevOps
2692
- # Guru. The one type of Amazon Web Services resource collection
2693
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2694
- # can be configured to analyze only the Amazon Web Services resources
2695
- # that are defined in the stacks. You can specify up to 500 Amazon Web
3399
+ # Guru. The two types of Amazon Web Services resource collections
3400
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
3401
+ # Web Services resources that contain the same Amazon Web Services
3402
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
3403
+ # Services resources that are defined in the stacks or that are tagged
3404
+ # using the same tag *key*. You can specify up to 500 Amazon Web
2696
3405
  # Services CloudFormation stacks.
2697
3406
  # @return [Types::ResourceCollection]
2698
3407
  #
@@ -2772,11 +3481,17 @@ module Aws::DevOpsGuru
2772
3481
  # metrics.
2773
3482
  # @return [Array<Types::RecommendationRelatedAnomalySourceDetail>]
2774
3483
  #
3484
+ # @!attribute [rw] anomaly_id
3485
+ # The ID of an anomaly that generated the insight with this
3486
+ # recommendation.
3487
+ # @return [String]
3488
+ #
2775
3489
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedAnomaly AWS API Documentation
2776
3490
  #
2777
3491
  class RecommendationRelatedAnomaly < Struct.new(
2778
3492
  :resources,
2779
- :source_details)
3493
+ :source_details,
3494
+ :anomaly_id)
2780
3495
  SENSITIVE = []
2781
3496
  include Aws::Structure
2782
3497
  end
@@ -2789,7 +3504,16 @@ module Aws::DevOpsGuru
2789
3504
  # @return [String]
2790
3505
  #
2791
3506
  # @!attribute [rw] type
2792
- # The type of the resource.
3507
+ # The type of the resource. Resource types take the same form that is
3508
+ # used by Amazon Web Services CloudFormation resource type
3509
+ # identifiers, `service-provider::service-name::data-type-name`. For
3510
+ # example, `AWS::RDS::DBCluster`. For more information, see [Amazon
3511
+ # Web Services resource and property types reference][1] in the
3512
+ # *Amazon Web Services CloudFormation User Guide*.
3513
+ #
3514
+ #
3515
+ #
3516
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
2793
3517
  # @return [String]
2794
3518
  #
2795
3519
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedAnomalyResource AWS API Documentation
@@ -2909,11 +3633,13 @@ module Aws::DevOpsGuru
2909
3633
  class RemoveNotificationChannelResponse < Aws::EmptyStructure; end
2910
3634
 
2911
3635
  # A collection of Amazon Web Services resources supported by DevOps
2912
- # Guru. The one type of Amazon Web Services resource collection
2913
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
2914
- # can be configured to analyze only the Amazon Web Services resources
2915
- # that are defined in the stacks. You can specify up to 500 Amazon Web
2916
- # Services CloudFormation stacks.
3636
+ # Guru. The two types of Amazon Web Services resource collections
3637
+ # supported are Amazon Web Services CloudFormation stacks and Amazon Web
3638
+ # Services resources that contain the same Amazon Web Services tag.
3639
+ # DevOps Guru can be configured to analyze the Amazon Web Services
3640
+ # resources that are defined in the stacks or that are tagged using the
3641
+ # same tag *key*. You can specify up to 500 Amazon Web Services
3642
+ # CloudFormation stacks.
2917
3643
  #
2918
3644
  # @note When making an API call, you may pass ResourceCollection
2919
3645
  # data as a hash:
@@ -2922,6 +3648,12 @@ module Aws::DevOpsGuru
2922
3648
  # cloud_formation: {
2923
3649
  # stack_names: ["StackName"],
2924
3650
  # },
3651
+ # tags: [
3652
+ # {
3653
+ # app_boundary_key: "AppBoundaryKey", # required
3654
+ # tag_values: ["TagValue"], # required
3655
+ # },
3656
+ # ],
2925
3657
  # }
2926
3658
  #
2927
3659
  # @!attribute [rw] cloud_formation
@@ -2931,10 +3663,50 @@ module Aws::DevOpsGuru
2931
3663
  # CloudFormation stacks.
2932
3664
  # @return [Types::CloudFormationCollection]
2933
3665
  #
3666
+ # @!attribute [rw] tags
3667
+ # The Amazon Web Services tags that are used by resources in the
3668
+ # resource collection.
3669
+ #
3670
+ # Tags help you identify and organize your Amazon Web Services
3671
+ # resources. Many Amazon Web Services services support tagging, so you
3672
+ # can assign the same tag to resources from different services to
3673
+ # indicate that the resources are related. For example, you can assign
3674
+ # the same tag to an Amazon DynamoDB table resource that you assign to
3675
+ # an Lambda function. For more information about using tags, see the
3676
+ # [Tagging best practices][1] whitepaper.
3677
+ #
3678
+ # Each Amazon Web Services tag has two parts.
3679
+ #
3680
+ # * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
3681
+ # or `Secret`). Tag *keys* are case-sensitive.
3682
+ #
3683
+ # * An optional field known as a tag *value* (for example,
3684
+ # `111122223333`, `Production`, or a team name). Omitting the tag
3685
+ # *value* is the same as using an empty string. Like tag *keys*, tag
3686
+ # *values* are case-sensitive.
3687
+ #
3688
+ # Together these are known as *key*-*value* pairs.
3689
+ #
3690
+ # The string used for a *key* in a tag that you use to define your
3691
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
3692
+ # *key* might be `Devops-guru-deployment-application` or
3693
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
3694
+ # case of *key* characters don't matter to DevOps Guru. For example,
3695
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
3696
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
3697
+ # application might be `Devops-Guru-production-application/RDS` or
3698
+ # `Devops-Guru-production-application/containers`.
3699
+ #
3700
+ #
3701
+ #
3702
+ # [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
3703
+ # @return [Array<Types::TagCollection>]
3704
+ #
2934
3705
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ResourceCollection AWS API Documentation
2935
3706
  #
2936
3707
  class ResourceCollection < Struct.new(
2937
- :cloud_formation)
3708
+ :cloud_formation,
3709
+ :tags)
2938
3710
  SENSITIVE = []
2939
3711
  include Aws::Structure
2940
3712
  end
@@ -2953,10 +3725,50 @@ module Aws::DevOpsGuru
2953
3725
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html
2954
3726
  # @return [Types::CloudFormationCollectionFilter]
2955
3727
  #
3728
+ # @!attribute [rw] tags
3729
+ # The Amazon Web Services tags used to filter the resources in the
3730
+ # resource collection.
3731
+ #
3732
+ # Tags help you identify and organize your Amazon Web Services
3733
+ # resources. Many Amazon Web Services services support tagging, so you
3734
+ # can assign the same tag to resources from different services to
3735
+ # indicate that the resources are related. For example, you can assign
3736
+ # the same tag to an Amazon DynamoDB table resource that you assign to
3737
+ # an Lambda function. For more information about using tags, see the
3738
+ # [Tagging best practices][1] whitepaper.
3739
+ #
3740
+ # Each Amazon Web Services tag has two parts.
3741
+ #
3742
+ # * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
3743
+ # or `Secret`). Tag *keys* are case-sensitive.
3744
+ #
3745
+ # * An optional field known as a tag *value* (for example,
3746
+ # `111122223333`, `Production`, or a team name). Omitting the tag
3747
+ # *value* is the same as using an empty string. Like tag *keys*, tag
3748
+ # *values* are case-sensitive.
3749
+ #
3750
+ # Together these are known as *key*-*value* pairs.
3751
+ #
3752
+ # The string used for a *key* in a tag that you use to define your
3753
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
3754
+ # *key* might be `Devops-guru-deployment-application` or
3755
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
3756
+ # case of *key* characters don't matter to DevOps Guru. For example,
3757
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
3758
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
3759
+ # application might be `Devops-Guru-production-application/RDS` or
3760
+ # `Devops-Guru-production-application/containers`.
3761
+ #
3762
+ #
3763
+ #
3764
+ # [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
3765
+ # @return [Array<Types::TagCollectionFilter>]
3766
+ #
2956
3767
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ResourceCollectionFilter AWS API Documentation
2957
3768
  #
2958
3769
  class ResourceCollectionFilter < Struct.new(
2959
- :cloud_formation)
3770
+ :cloud_formation,
3771
+ :tags)
2960
3772
  SENSITIVE = []
2961
3773
  include Aws::Structure
2962
3774
  end
@@ -2998,6 +3810,12 @@ module Aws::DevOpsGuru
2998
3810
  # cloud_formation: {
2999
3811
  # stack_names: ["StackName"],
3000
3812
  # },
3813
+ # tags: [
3814
+ # {
3815
+ # app_boundary_key: "AppBoundaryKey", # required
3816
+ # tag_values: ["TagValue"], # required
3817
+ # },
3818
+ # ],
3001
3819
  # },
3002
3820
  # service_collection: {
3003
3821
  # service_names: ["API_GATEWAY"], # accepts API_GATEWAY, APPLICATION_ELB, AUTO_SCALING_GROUP, CLOUD_FRONT, DYNAMO_DB, EC2, ECS, EKS, ELASTIC_BEANSTALK, ELASTI_CACHE, ELB, ES, KINESIS, LAMBDA, NAT_GATEWAY, NETWORK_ELB, RDS, REDSHIFT, ROUTE_53, S3, SAGE_MAKER, SNS, SQS, STEP_FUNCTIONS, SWF
@@ -3014,10 +3832,12 @@ module Aws::DevOpsGuru
3014
3832
  #
3015
3833
  # @!attribute [rw] resource_collection
3016
3834
  # A collection of Amazon Web Services resources supported by DevOps
3017
- # Guru. The one type of Amazon Web Services resource collection
3018
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
3019
- # can be configured to analyze only the Amazon Web Services resources
3020
- # that are defined in the stacks. You can specify up to 500 Amazon Web
3835
+ # Guru. The two types of Amazon Web Services resource collections
3836
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
3837
+ # Web Services resources that contain the same Amazon Web Services
3838
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
3839
+ # Services resources that are defined in the stacks or that are tagged
3840
+ # using the same tag *key*. You can specify up to 500 Amazon Web
3021
3841
  # Services CloudFormation stacks.
3022
3842
  # @return [Types::ResourceCollection]
3023
3843
  #
@@ -3051,6 +3871,12 @@ module Aws::DevOpsGuru
3051
3871
  # cloud_formation: {
3052
3872
  # stack_names: ["StackName"],
3053
3873
  # },
3874
+ # tags: [
3875
+ # {
3876
+ # app_boundary_key: "AppBoundaryKey", # required
3877
+ # tag_values: ["TagValue"], # required
3878
+ # },
3879
+ # ],
3054
3880
  # },
3055
3881
  # service_collection: {
3056
3882
  # service_names: ["API_GATEWAY"], # accepts API_GATEWAY, APPLICATION_ELB, AUTO_SCALING_GROUP, CLOUD_FRONT, DYNAMO_DB, EC2, ECS, EKS, ELASTIC_BEANSTALK, ELASTI_CACHE, ELB, ES, KINESIS, LAMBDA, NAT_GATEWAY, NETWORK_ELB, RDS, REDSHIFT, ROUTE_53, S3, SAGE_MAKER, SNS, SQS, STEP_FUNCTIONS, SWF
@@ -3135,6 +3961,12 @@ module Aws::DevOpsGuru
3135
3961
  # cloud_formation: {
3136
3962
  # stack_names: ["StackName"],
3137
3963
  # },
3964
+ # tags: [
3965
+ # {
3966
+ # app_boundary_key: "AppBoundaryKey", # required
3967
+ # tag_values: ["TagValue"], # required
3968
+ # },
3969
+ # ],
3138
3970
  # },
3139
3971
  # service_collection: {
3140
3972
  # service_names: ["API_GATEWAY"], # accepts API_GATEWAY, APPLICATION_ELB, AUTO_SCALING_GROUP, CLOUD_FRONT, DYNAMO_DB, EC2, ECS, EKS, ELASTIC_BEANSTALK, ELASTI_CACHE, ELB, ES, KINESIS, LAMBDA, NAT_GATEWAY, NETWORK_ELB, RDS, REDSHIFT, ROUTE_53, S3, SAGE_MAKER, SNS, SQS, STEP_FUNCTIONS, SWF
@@ -3151,10 +3983,12 @@ module Aws::DevOpsGuru
3151
3983
  #
3152
3984
  # @!attribute [rw] resource_collection
3153
3985
  # A collection of Amazon Web Services resources supported by DevOps
3154
- # Guru. The one type of Amazon Web Services resource collection
3155
- # supported is Amazon Web Services CloudFormation stacks. DevOps Guru
3156
- # can be configured to analyze only the Amazon Web Services resources
3157
- # that are defined in the stacks. You can specify up to 500 Amazon Web
3986
+ # Guru. The two types of Amazon Web Services resource collections
3987
+ # supported are Amazon Web Services CloudFormation stacks and Amazon
3988
+ # Web Services resources that contain the same Amazon Web Services
3989
+ # tag. DevOps Guru can be configured to analyze the Amazon Web
3990
+ # Services resources that are defined in the stacks or that are tagged
3991
+ # using the same tag *key*. You can specify up to 500 Amazon Web
3158
3992
  # Services CloudFormation stacks.
3159
3993
  # @return [Types::ResourceCollection]
3160
3994
  #
@@ -3189,6 +4023,12 @@ module Aws::DevOpsGuru
3189
4023
  # cloud_formation: {
3190
4024
  # stack_names: ["StackName"],
3191
4025
  # },
4026
+ # tags: [
4027
+ # {
4028
+ # app_boundary_key: "AppBoundaryKey", # required
4029
+ # tag_values: ["TagValue"], # required
4030
+ # },
4031
+ # ],
3192
4032
  # },
3193
4033
  # service_collection: {
3194
4034
  # service_names: ["API_GATEWAY"], # accepts API_GATEWAY, APPLICATION_ELB, AUTO_SCALING_GROUP, CLOUD_FRONT, DYNAMO_DB, EC2, ECS, EKS, ELASTIC_BEANSTALK, ELASTI_CACHE, ELB, ES, KINESIS, LAMBDA, NAT_GATEWAY, NETWORK_ELB, RDS, REDSHIFT, ROUTE_53, S3, SAGE_MAKER, SNS, SQS, STEP_FUNCTIONS, SWF
@@ -3464,6 +4304,12 @@ module Aws::DevOpsGuru
3464
4304
  # cloud_formation: {
3465
4305
  # stack_names: ["StackName"],
3466
4306
  # },
4307
+ # tags: [
4308
+ # {
4309
+ # app_boundary_key: "AppBoundaryKey", # required
4310
+ # tag_values: ["TagValue"], # required
4311
+ # },
4312
+ # ],
3467
4313
  # },
3468
4314
  # client_token: "ClientToken",
3469
4315
  # }
@@ -3521,6 +4367,234 @@ module Aws::DevOpsGuru
3521
4367
  include Aws::Structure
3522
4368
  end
3523
4369
 
4370
+ # A collection of Amazon Web Services stags.
4371
+ #
4372
+ # Tags help you identify and organize your Amazon Web Services
4373
+ # resources. Many Amazon Web Services services support tagging, so you
4374
+ # can assign the same tag to resources from different services to
4375
+ # indicate that the resources are related. For example, you can assign
4376
+ # the same tag to an Amazon DynamoDB table resource that you assign to
4377
+ # an Lambda function. For more information about using tags, see the
4378
+ # [Tagging best practices][1] whitepaper.
4379
+ #
4380
+ # Each Amazon Web Services tag has two parts.
4381
+ #
4382
+ # * A tag *key* (for example, `CostCenter`, `Environment`, `Project`, or
4383
+ # `Secret`). Tag *keys* are case-sensitive.
4384
+ #
4385
+ # * An optional field known as a tag *value* (for example,
4386
+ # `111122223333`, `Production`, or a team name). Omitting the tag
4387
+ # *value* is the same as using an empty string. Like tag *keys*, tag
4388
+ # *values* are case-sensitive.
4389
+ #
4390
+ # Together these are known as *key*-*value* pairs.
4391
+ #
4392
+ # The string used for a *key* in a tag that you use to define your
4393
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
4394
+ # *key* might be `Devops-guru-deployment-application` or
4395
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4396
+ # case of *key* characters don't matter to DevOps Guru. For example,
4397
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4398
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4399
+ # application might be `Devops-Guru-production-application/RDS` or
4400
+ # `Devops-Guru-production-application/containers`.
4401
+ #
4402
+ #
4403
+ #
4404
+ # [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
4405
+ #
4406
+ # @note When making an API call, you may pass TagCollection
4407
+ # data as a hash:
4408
+ #
4409
+ # {
4410
+ # app_boundary_key: "AppBoundaryKey", # required
4411
+ # tag_values: ["TagValue"], # required
4412
+ # }
4413
+ #
4414
+ # @!attribute [rw] app_boundary_key
4415
+ # An Amazon Web Services tag *key* that is used to identify the Amazon
4416
+ # Web Services resources that DevOps Guru analyzes. All Amazon Web
4417
+ # Services resources in your account and Region tagged with this *key*
4418
+ # make up your DevOps Guru application and analysis boundary.
4419
+ #
4420
+ # The string used for a *key* in a tag that you use to define your
4421
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
4422
+ # *key* might be `Devops-guru-deployment-application` or
4423
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4424
+ # case of *key* characters don't matter to DevOps Guru. For example,
4425
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4426
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4427
+ # application might be `Devops-Guru-production-application/RDS` or
4428
+ # `Devops-Guru-production-application/containers`.
4429
+ # @return [String]
4430
+ #
4431
+ # @!attribute [rw] tag_values
4432
+ # The values in an Amazon Web Services tag collection.
4433
+ #
4434
+ # The tag's *value* is an optional field used to associate a string
4435
+ # with the tag *key* (for example, `111122223333`, `Production`, or a
4436
+ # team name). The *key* and *value* are the tag's *key* pair.
4437
+ # Omitting the tag *value* is the same as using an empty string. Like
4438
+ # tag *keys*, tag *values* are case-sensitive. You can specify a
4439
+ # maximum of 256 characters for a tag value.
4440
+ # @return [Array<String>]
4441
+ #
4442
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/TagCollection AWS API Documentation
4443
+ #
4444
+ class TagCollection < Struct.new(
4445
+ :app_boundary_key,
4446
+ :tag_values)
4447
+ SENSITIVE = []
4448
+ include Aws::Structure
4449
+ end
4450
+
4451
+ # A collection of Amazon Web Services tags used to filter insights. This
4452
+ # is used to return insights generated from only resources that contain
4453
+ # the tags in the tag collection.
4454
+ #
4455
+ # @!attribute [rw] app_boundary_key
4456
+ # An Amazon Web Services tag *key* that is used to identify the Amazon
4457
+ # Web Services resources that DevOps Guru analyzes. All Amazon Web
4458
+ # Services resources in your account and Region tagged with this *key*
4459
+ # make up your DevOps Guru application and analysis boundary.
4460
+ #
4461
+ # The string used for a *key* in a tag that you use to define your
4462
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
4463
+ # *key* might be `Devops-guru-deployment-application` or
4464
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4465
+ # case of *key* characters don't matter to DevOps Guru. For example,
4466
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4467
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4468
+ # application might be `Devops-Guru-production-application/RDS` or
4469
+ # `Devops-Guru-production-application/containers`.
4470
+ # @return [String]
4471
+ #
4472
+ # @!attribute [rw] tag_values
4473
+ # The values in an Amazon Web Services tag collection.
4474
+ #
4475
+ # The tag's *value* is an optional field used to associate a string
4476
+ # with the tag *key* (for example, `111122223333`, `Production`, or a
4477
+ # team name). The *key* and *value* are the tag's *key* pair.
4478
+ # Omitting the tag *value* is the same as using an empty string. Like
4479
+ # tag *keys*, tag *values* are case-sensitive. You can specify a
4480
+ # maximum of 256 characters for a tag value.
4481
+ # @return [Array<String>]
4482
+ #
4483
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/TagCollectionFilter AWS API Documentation
4484
+ #
4485
+ class TagCollectionFilter < Struct.new(
4486
+ :app_boundary_key,
4487
+ :tag_values)
4488
+ SENSITIVE = []
4489
+ include Aws::Structure
4490
+ end
4491
+
4492
+ # Information about a collection of Amazon Web Services resources that
4493
+ # are identified by an Amazon Web Services tag. This collection of
4494
+ # resources is used to create a monthly cost estimate for DevOps Guru to
4495
+ # analyze Amazon Web Services resources. The maximum number of tags you
4496
+ # can specify for a cost estimate is one. The estimate created is for
4497
+ # the cost to analyze the Amazon Web Services resources defined by the
4498
+ # tag. For more information, see [Stacks][1] in the *Amazon Web Services
4499
+ # CloudFormation User Guide*.
4500
+ #
4501
+ #
4502
+ #
4503
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html
4504
+ #
4505
+ # @note When making an API call, you may pass TagCostEstimationResourceCollectionFilter
4506
+ # data as a hash:
4507
+ #
4508
+ # {
4509
+ # app_boundary_key: "AppBoundaryKey", # required
4510
+ # tag_values: ["TagValue"], # required
4511
+ # }
4512
+ #
4513
+ # @!attribute [rw] app_boundary_key
4514
+ # An Amazon Web Services tag *key* that is used to identify the Amazon
4515
+ # Web Services resources that DevOps Guru analyzes. All Amazon Web
4516
+ # Services resources in your account and Region tagged with this *key*
4517
+ # make up your DevOps Guru application and analysis boundary.
4518
+ #
4519
+ # The string used for a *key* in a tag that you use to define your
4520
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
4521
+ # *key* might be `Devops-guru-deployment-application` or
4522
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4523
+ # case of *key* characters don't matter to DevOps Guru. For example,
4524
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4525
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4526
+ # application might be `Devops-Guru-production-application/RDS` or
4527
+ # `Devops-Guru-production-application/containers`.
4528
+ # @return [String]
4529
+ #
4530
+ # @!attribute [rw] tag_values
4531
+ # The values in an Amazon Web Services tag collection.
4532
+ #
4533
+ # The tag's *value* is an optional field used to associate a string
4534
+ # with the tag *key* (for example, `111122223333`, `Production`, or a
4535
+ # team name). The *key* and *value* are the tag's *key* pair.
4536
+ # Omitting the tag *value* is the same as using an empty string. Like
4537
+ # tag *keys*, tag *values* are case-sensitive. You can specify a
4538
+ # maximum of 256 characters for a tag value.
4539
+ # @return [Array<String>]
4540
+ #
4541
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/TagCostEstimationResourceCollectionFilter AWS API Documentation
4542
+ #
4543
+ class TagCostEstimationResourceCollectionFilter < Struct.new(
4544
+ :app_boundary_key,
4545
+ :tag_values)
4546
+ SENSITIVE = []
4547
+ include Aws::Structure
4548
+ end
4549
+
4550
+ # Information about the health of Amazon Web Services resources in your
4551
+ # account that are specified by an Amazon Web Services tag *key*.
4552
+ #
4553
+ # @!attribute [rw] app_boundary_key
4554
+ # An Amazon Web Services tag *key* that is used to identify the Amazon
4555
+ # Web Services resources that DevOps Guru analyzes. All Amazon Web
4556
+ # Services resources in your account and Region tagged with this *key*
4557
+ # make up your DevOps Guru application and analysis boundary.
4558
+ #
4559
+ # The string used for a *key* in a tag that you use to define your
4560
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
4561
+ # *key* might be `Devops-guru-deployment-application` or
4562
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4563
+ # case of *key* characters don't matter to DevOps Guru. For example,
4564
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4565
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4566
+ # application might be `Devops-Guru-production-application/RDS` or
4567
+ # `Devops-Guru-production-application/containers`.
4568
+ # @return [String]
4569
+ #
4570
+ # @!attribute [rw] tag_value
4571
+ # The value in an Amazon Web Services tag.
4572
+ #
4573
+ # The tag's *value* is an optional field used to associate a string
4574
+ # with the tag *key* (for example, `111122223333`, `Production`, or a
4575
+ # team name). The *key* and *value* are the tag's *key* pair.
4576
+ # Omitting the tag *value* is the same as using an empty string. Like
4577
+ # tag *keys*, tag *values* are case-sensitive. You can specify a
4578
+ # maximum of 256 characters for a tag value.
4579
+ # @return [String]
4580
+ #
4581
+ # @!attribute [rw] insight
4582
+ # Information about the health of the Amazon Web Services resources in
4583
+ # your account that are specified by an Amazon Web Services tag,
4584
+ # including the number of open proactive, open reactive insights, and
4585
+ # the Mean Time to Recover (MTTR) of closed insights.
4586
+ # @return [Types::InsightHealth]
4587
+ #
4588
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/TagHealth AWS API Documentation
4589
+ #
4590
+ class TagHealth < Struct.new(
4591
+ :app_boundary_key,
4592
+ :tag_value,
4593
+ :insight)
4594
+ SENSITIVE = []
4595
+ include Aws::Structure
4596
+ end
4597
+
3524
4598
  # The request was denied due to a request throttling.
3525
4599
  #
3526
4600
  # @!attribute [rw] message
@@ -3605,17 +4679,63 @@ module Aws::DevOpsGuru
3605
4679
  # cloud_formation: {
3606
4680
  # stack_names: ["StackName"],
3607
4681
  # },
4682
+ # tags: [
4683
+ # {
4684
+ # app_boundary_key: "AppBoundaryKey", # required
4685
+ # tag_values: ["TagValue"], # required
4686
+ # },
4687
+ # ],
3608
4688
  # }
3609
4689
  #
3610
4690
  # @!attribute [rw] cloud_formation
3611
- # An collection of Amazon Web Services CloudFormation stacks. You can
4691
+ # A collection of Amazon Web Services CloudFormation stacks. You can
3612
4692
  # specify up to 500 Amazon Web Services CloudFormation stacks.
3613
4693
  # @return [Types::UpdateCloudFormationCollectionFilter]
3614
4694
  #
4695
+ # @!attribute [rw] tags
4696
+ # The updated Amazon Web Services tags used to filter the resources in
4697
+ # the resource collection.
4698
+ #
4699
+ # Tags help you identify and organize your Amazon Web Services
4700
+ # resources. Many Amazon Web Services services support tagging, so you
4701
+ # can assign the same tag to resources from different services to
4702
+ # indicate that the resources are related. For example, you can assign
4703
+ # the same tag to an Amazon DynamoDB table resource that you assign to
4704
+ # an Lambda function. For more information about using tags, see the
4705
+ # [Tagging best practices][1] whitepaper.
4706
+ #
4707
+ # Each Amazon Web Services tag has two parts.
4708
+ #
4709
+ # * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
4710
+ # or `Secret`). Tag *keys* are case-sensitive.
4711
+ #
4712
+ # * An optional field known as a tag *value* (for example,
4713
+ # `111122223333`, `Production`, or a team name). Omitting the tag
4714
+ # *value* is the same as using an empty string. Like tag *keys*, tag
4715
+ # *values* are case-sensitive.
4716
+ #
4717
+ # Together these are known as *key*-*value* pairs.
4718
+ #
4719
+ # The string used for a *key* in a tag that you use to define your
4720
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
4721
+ # *key* might be `Devops-guru-deployment-application` or
4722
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4723
+ # case of *key* characters don't matter to DevOps Guru. For example,
4724
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4725
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4726
+ # application might be `Devops-Guru-production-application/RDS` or
4727
+ # `Devops-Guru-production-application/containers`.
4728
+ #
4729
+ #
4730
+ #
4731
+ # [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
4732
+ # @return [Array<Types::UpdateTagCollectionFilter>]
4733
+ #
3615
4734
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateResourceCollectionFilter AWS API Documentation
3616
4735
  #
3617
4736
  class UpdateResourceCollectionFilter < Struct.new(
3618
- :cloud_formation)
4737
+ :cloud_formation,
4738
+ :tags)
3619
4739
  SENSITIVE = []
3620
4740
  include Aws::Structure
3621
4741
  end
@@ -3629,6 +4749,12 @@ module Aws::DevOpsGuru
3629
4749
  # cloud_formation: {
3630
4750
  # stack_names: ["StackName"],
3631
4751
  # },
4752
+ # tags: [
4753
+ # {
4754
+ # app_boundary_key: "AppBoundaryKey", # required
4755
+ # tag_values: ["TagValue"], # required
4756
+ # },
4757
+ # ],
3632
4758
  # },
3633
4759
  # }
3634
4760
  #
@@ -3711,6 +4837,54 @@ module Aws::DevOpsGuru
3711
4837
  #
3712
4838
  class UpdateServiceIntegrationResponse < Aws::EmptyStructure; end
3713
4839
 
4840
+ # A new collection of Amazon Web Services resources that are defined by
4841
+ # an Amazon Web Services tag or tag *key*/*value* pair.
4842
+ #
4843
+ # @note When making an API call, you may pass UpdateTagCollectionFilter
4844
+ # data as a hash:
4845
+ #
4846
+ # {
4847
+ # app_boundary_key: "AppBoundaryKey", # required
4848
+ # tag_values: ["TagValue"], # required
4849
+ # }
4850
+ #
4851
+ # @!attribute [rw] app_boundary_key
4852
+ # An Amazon Web Services tag *key* that is used to identify the Amazon
4853
+ # Web Services resources that DevOps Guru analyzes. All Amazon Web
4854
+ # Services resources in your account and Region tagged with this *key*
4855
+ # make up your DevOps Guru application and analysis boundary.
4856
+ #
4857
+ # The string used for a *key* in a tag that you use to define your
4858
+ # resource coverage must begin with the prefix `Devops-guru-`. The tag
4859
+ # *key* might be `Devops-guru-deployment-application` or
4860
+ # `Devops-guru-rds-application`. While *keys* are case-sensitive, the
4861
+ # case of *key* characters don't matter to DevOps Guru. For example,
4862
+ # DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
4863
+ # named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
4864
+ # application might be `Devops-Guru-production-application/RDS` or
4865
+ # `Devops-Guru-production-application/containers`.
4866
+ # @return [String]
4867
+ #
4868
+ # @!attribute [rw] tag_values
4869
+ # The values in an Amazon Web Services tag collection.
4870
+ #
4871
+ # The tag's *value* is an optional field used to associate a string
4872
+ # with the tag *key* (for example, `111122223333`, `Production`, or a
4873
+ # team name). The *key* and *value* are the tag's *key* pair.
4874
+ # Omitting the tag *value* is the same as using an empty string. Like
4875
+ # tag *keys*, tag *values* are case-sensitive. You can specify a
4876
+ # maximum of 256 characters for a tag value.
4877
+ # @return [Array<String>]
4878
+ #
4879
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateTagCollectionFilter AWS API Documentation
4880
+ #
4881
+ class UpdateTagCollectionFilter < Struct.new(
4882
+ :app_boundary_key,
4883
+ :tag_values)
4884
+ SENSITIVE = []
4885
+ include Aws::Structure
4886
+ end
4887
+
3714
4888
  # Contains information about data passed in to a field during a request
3715
4889
  # that is not valid.
3716
4890
  #