aws-sdk-devopsguru 1.16.0 → 1.17.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea7c78dfefffeea873815e67baeccd450032a1022ea8332553082e779e844dc8
4
- data.tar.gz: 7897ace96f3fb912c378447d23d48cca9fd68e80f157a4191a2e9535ede79619
3
+ metadata.gz: bdfa3b9f654818adb10b75632080c286987671dbb9232e9f1e0199724861e1dc
4
+ data.tar.gz: d1b50fde03df6e3cedf8798d41e66f6e20073858799b4612f0a55b08a8b5db83
5
5
  SHA512:
6
- metadata.gz: e05c98d7b8ad96cae5045f42a756c368c9b4f786bff20564e659c2edab47efe5cf8c75af2b23ee33ed9d7f0216bbaecee4cbadf59df47b6943d0994f973af4af
7
- data.tar.gz: '0793f152b8d596812dc7157d60b54ef9c304283f141cf6481b29ce9ab034d7b5e0504d1ba2fa2e1bdc6470e23f257aaeca2326fba84815d59842ec1371bfbca3'
6
+ metadata.gz: 553beef6a69958ab4a411f83a136ac045a4619be084e494ea6fe5f67486925968d6868d5e9473bc572df925ece05370a65409dca13e4cdc0bbb39b1040d91273
7
+ data.tar.gz: 1f039f9e4949265cbe2ecfe448237836aa6eb5a12675020b8d1c35120934c1b025cf5f3717b3555f445929799949bf7e71dd5cfbb240baed362d3a66b4159084
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.17.0 (2021-12-01)
5
+ ------------------
6
+
7
+ * Feature - DevOps Guru now provides detailed, database-specific analyses of performance issues and recommends corrective actions for Amazon Aurora database instances with Performance Insights turned on. You can also use AWS tags to choose which resources to analyze and define your applications.
8
+
4
9
  1.16.0 (2021-11-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.17.0
@@ -508,9 +508,39 @@ module Aws::DevOpsGuru
508
508
  # resp.proactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
509
509
  # resp.proactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
510
510
  # resp.proactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
511
+ # resp.proactive_anomaly.source_details.performance_insights_metrics #=> Array
512
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_display_name #=> String
513
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].unit #=> String
514
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.metric #=> String
515
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
516
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
517
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
518
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
519
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
520
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
521
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data #=> Array
522
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].name #=> String
523
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
524
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
525
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
526
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
527
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
528
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
529
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
530
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
531
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
532
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
533
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
534
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
535
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
536
+ # resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
511
537
  # resp.proactive_anomaly.associated_insight_id #=> String
512
538
  # resp.proactive_anomaly.resource_collection.cloud_formation.stack_names #=> Array
513
539
  # resp.proactive_anomaly.resource_collection.cloud_formation.stack_names[0] #=> String
540
+ # resp.proactive_anomaly.resource_collection.tags #=> Array
541
+ # resp.proactive_anomaly.resource_collection.tags[0].app_boundary_key #=> String
542
+ # resp.proactive_anomaly.resource_collection.tags[0].tag_values #=> Array
543
+ # resp.proactive_anomaly.resource_collection.tags[0].tag_values[0] #=> String
514
544
  # resp.proactive_anomaly.limit #=> Float
515
545
  # resp.reactive_anomaly.id #=> String
516
546
  # resp.reactive_anomaly.severity #=> String, one of "LOW", "MEDIUM", "HIGH"
@@ -532,9 +562,46 @@ module Aws::DevOpsGuru
532
562
  # resp.reactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
533
563
  # resp.reactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
534
564
  # resp.reactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
565
+ # resp.reactive_anomaly.source_details.performance_insights_metrics #=> Array
566
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_display_name #=> String
567
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].unit #=> String
568
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.metric #=> String
569
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
570
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
571
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
572
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
573
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
574
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
575
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data #=> Array
576
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].name #=> String
577
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
578
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
579
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
580
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
581
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
582
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
583
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
584
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
585
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
586
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
587
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
588
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
589
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
590
+ # resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
535
591
  # resp.reactive_anomaly.associated_insight_id #=> String
536
592
  # resp.reactive_anomaly.resource_collection.cloud_formation.stack_names #=> Array
537
593
  # resp.reactive_anomaly.resource_collection.cloud_formation.stack_names[0] #=> String
594
+ # resp.reactive_anomaly.resource_collection.tags #=> Array
595
+ # resp.reactive_anomaly.resource_collection.tags[0].app_boundary_key #=> String
596
+ # resp.reactive_anomaly.resource_collection.tags[0].tag_values #=> Array
597
+ # resp.reactive_anomaly.resource_collection.tags[0].tag_values[0] #=> String
598
+ # resp.reactive_anomaly.type #=> String, one of "CAUSAL", "CONTEXTUAL"
599
+ # resp.reactive_anomaly.name #=> String
600
+ # resp.reactive_anomaly.description #=> String
601
+ # resp.reactive_anomaly.causal_anomaly_id #=> String
602
+ # resp.reactive_anomaly.anomaly_resources #=> Array
603
+ # resp.reactive_anomaly.anomaly_resources[0].name #=> String
604
+ # resp.reactive_anomaly.anomaly_resources[0].type #=> String
538
605
  #
539
606
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAnomaly AWS API Documentation
540
607
  #
@@ -607,6 +674,10 @@ module Aws::DevOpsGuru
607
674
  # resp.proactive_insight.prediction_time_range.end_time #=> Time
608
675
  # resp.proactive_insight.resource_collection.cloud_formation.stack_names #=> Array
609
676
  # resp.proactive_insight.resource_collection.cloud_formation.stack_names[0] #=> String
677
+ # resp.proactive_insight.resource_collection.tags #=> Array
678
+ # resp.proactive_insight.resource_collection.tags[0].app_boundary_key #=> String
679
+ # resp.proactive_insight.resource_collection.tags[0].tag_values #=> Array
680
+ # resp.proactive_insight.resource_collection.tags[0].tag_values[0] #=> String
610
681
  # resp.proactive_insight.ssm_ops_item_id #=> String
611
682
  # resp.reactive_insight.id #=> String
612
683
  # resp.reactive_insight.name #=> String
@@ -616,6 +687,10 @@ module Aws::DevOpsGuru
616
687
  # resp.reactive_insight.insight_time_range.end_time #=> Time
617
688
  # resp.reactive_insight.resource_collection.cloud_formation.stack_names #=> Array
618
689
  # resp.reactive_insight.resource_collection.cloud_formation.stack_names[0] #=> String
690
+ # resp.reactive_insight.resource_collection.tags #=> Array
691
+ # resp.reactive_insight.resource_collection.tags[0].app_boundary_key #=> String
692
+ # resp.reactive_insight.resource_collection.tags[0].tag_values #=> Array
693
+ # resp.reactive_insight.resource_collection.tags[0].tag_values[0] #=> String
619
694
  # resp.reactive_insight.ssm_ops_item_id #=> String
620
695
  #
621
696
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeInsight AWS API Documentation
@@ -721,12 +796,13 @@ module Aws::DevOpsGuru
721
796
  #
722
797
  # @option params [required, String] :organization_resource_collection_type
723
798
  # An Amazon Web Services resource collection type. This type specifies
724
- # how analyzed Amazon Web Services resources are defined. The one type
725
- # of Amazon Web Services resource collection supported is Amazon Web
726
- # Services CloudFormation stacks. DevOps Guru can be configured to
727
- # analyze only the Amazon Web Services resources that are defined in the
728
- # stacks. You can specify up to 500 Amazon Web Services CloudFormation
729
- # stacks.
799
+ # how analyzed Amazon Web Services resources are defined. The two types
800
+ # of Amazon Web Services resource collections supported are Amazon Web
801
+ # Services CloudFormation stacks and Amazon Web Services resources that
802
+ # contain the same Amazon Web Services tag. DevOps Guru can be
803
+ # configured to analyze the Amazon Web Services resources that are
804
+ # defined in the stacks or that are tagged using the same tag *key*. You
805
+ # can specify up to 500 Amazon Web Services CloudFormation stacks.
730
806
  #
731
807
  # @option params [Array<String>] :account_ids
732
808
  # The ID of the Amazon Web Services account.
@@ -791,20 +867,23 @@ module Aws::DevOpsGuru
791
867
  # Returns the number of open proactive insights, open reactive insights,
792
868
  # and the Mean Time to Recover (MTTR) for all closed insights in
793
869
  # resource collections in your account. You specify the type of Amazon
794
- # Web Services resources collection. The one type of Amazon Web Services
795
- # resource collection supported is Amazon Web Services CloudFormation
796
- # stacks. DevOps Guru can be configured to analyze only the Amazon Web
797
- # Services resources that are defined in the stacks. You can specify up
870
+ # Web Services resources collection. The two types of Amazon Web
871
+ # Services resource collections supported are Amazon Web Services
872
+ # CloudFormation stacks and Amazon Web Services resources that contain
873
+ # the same Amazon Web Services tag. DevOps Guru can be configured to
874
+ # analyze the Amazon Web Services resources that are defined in the
875
+ # stacks or that are tagged using the same tag *key*. You can specify up
798
876
  # to 500 Amazon Web Services CloudFormation stacks.
799
877
  #
800
878
  # @option params [required, String] :resource_collection_type
801
879
  # An Amazon Web Services resource collection type. This type specifies
802
- # how analyzed Amazon Web Services resources are defined. The one type
803
- # of Amazon Web Services resource collection supported is Amazon Web
804
- # Services CloudFormation stacks. DevOps Guru can be configured to
805
- # analyze only the Amazon Web Services resources that are defined in the
806
- # stacks. You can specify up to 500 Amazon Web Services CloudFormation
807
- # stacks.
880
+ # how analyzed Amazon Web Services resources are defined. The two types
881
+ # of Amazon Web Services resource collections supported are Amazon Web
882
+ # Services CloudFormation stacks and Amazon Web Services resources that
883
+ # contain the same Amazon Web Services tag. DevOps Guru can be
884
+ # configured to analyze the Amazon Web Services resources that are
885
+ # defined in the stacks or that are tagged using the same tag *key*. You
886
+ # can specify up to 500 Amazon Web Services CloudFormation stacks.
808
887
  #
809
888
  # @option params [String] :next_token
810
889
  # The pagination token to use to retrieve the next page of results for
@@ -815,13 +894,14 @@ module Aws::DevOpsGuru
815
894
  # * {Types::DescribeResourceCollectionHealthResponse#cloud_formation #cloud_formation} => Array&lt;Types::CloudFormationHealth&gt;
816
895
  # * {Types::DescribeResourceCollectionHealthResponse#service #service} => Array&lt;Types::ServiceHealth&gt;
817
896
  # * {Types::DescribeResourceCollectionHealthResponse#next_token #next_token} => String
897
+ # * {Types::DescribeResourceCollectionHealthResponse#tags #tags} => Array&lt;Types::TagHealth&gt;
818
898
  #
819
899
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
820
900
  #
821
901
  # @example Request syntax with placeholder values
822
902
  #
823
903
  # resp = client.describe_resource_collection_health({
824
- # resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE
904
+ # resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
825
905
  # next_token: "UuidNextToken",
826
906
  # })
827
907
  #
@@ -837,6 +917,12 @@ module Aws::DevOpsGuru
837
917
  # resp.service[0].insight.open_proactive_insights #=> Integer
838
918
  # resp.service[0].insight.open_reactive_insights #=> Integer
839
919
  # resp.next_token #=> String
920
+ # resp.tags #=> Array
921
+ # resp.tags[0].app_boundary_key #=> String
922
+ # resp.tags[0].tag_value #=> String
923
+ # resp.tags[0].insight.open_proactive_insights #=> Integer
924
+ # resp.tags[0].insight.open_reactive_insights #=> Integer
925
+ # resp.tags[0].insight.mean_time_to_recover_in_milliseconds #=> Integer
840
926
  #
841
927
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeResourceCollectionHealth AWS API Documentation
842
928
  #
@@ -904,6 +990,10 @@ module Aws::DevOpsGuru
904
990
  #
905
991
  # resp.resource_collection.cloud_formation.stack_names #=> Array
906
992
  # resp.resource_collection.cloud_formation.stack_names[0] #=> String
993
+ # resp.resource_collection.tags #=> Array
994
+ # resp.resource_collection.tags[0].app_boundary_key #=> String
995
+ # resp.resource_collection.tags[0].tag_values #=> Array
996
+ # resp.resource_collection.tags[0].tag_values[0] #=> String
907
997
  # resp.status #=> String, one of "ONGOING", "COMPLETED"
908
998
  # resp.costs #=> Array
909
999
  # resp.costs[0].type #=> String
@@ -926,11 +1016,13 @@ module Aws::DevOpsGuru
926
1016
  end
927
1017
 
928
1018
  # Returns lists Amazon Web Services resources that are of the specified
929
- # resource collection type. The one type of Amazon Web Services resource
930
- # collection supported is Amazon Web Services CloudFormation stacks.
931
- # DevOps Guru can be configured to analyze only the Amazon Web Services
932
- # resources that are defined in the stacks. You can specify up to 500
933
- # Amazon Web Services CloudFormation stacks.
1019
+ # resource collection type. The two types of Amazon Web Services
1020
+ # resource collections supported are Amazon Web Services CloudFormation
1021
+ # stacks and Amazon Web Services resources that contain the same Amazon
1022
+ # Web Services tag. DevOps Guru can be configured to analyze the Amazon
1023
+ # Web Services resources that are defined in the stacks or that are
1024
+ # tagged using the same tag *key*. You can specify up to 500 Amazon Web
1025
+ # Services CloudFormation stacks.
934
1026
  #
935
1027
  # @option params [required, String] :resource_collection_type
936
1028
  # The type of Amazon Web Services resource collections to return. The
@@ -951,7 +1043,7 @@ module Aws::DevOpsGuru
951
1043
  # @example Request syntax with placeholder values
952
1044
  #
953
1045
  # resp = client.get_resource_collection({
954
- # resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE
1046
+ # resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
955
1047
  # next_token: "UuidNextToken",
956
1048
  # })
957
1049
  #
@@ -959,6 +1051,10 @@ module Aws::DevOpsGuru
959
1051
  #
960
1052
  # resp.resource_collection.cloud_formation.stack_names #=> Array
961
1053
  # resp.resource_collection.cloud_formation.stack_names[0] #=> String
1054
+ # resp.resource_collection.tags #=> Array
1055
+ # resp.resource_collection.tags[0].app_boundary_key #=> String
1056
+ # resp.resource_collection.tags[0].tag_values #=> Array
1057
+ # resp.resource_collection.tags[0].tag_values[0] #=> String
962
1058
  # resp.next_token #=> String
963
1059
  #
964
1060
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/GetResourceCollection AWS API Documentation
@@ -1039,9 +1135,39 @@ module Aws::DevOpsGuru
1039
1135
  # resp.proactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
1040
1136
  # resp.proactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
1041
1137
  # resp.proactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
1138
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics #=> Array
1139
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_display_name #=> String
1140
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].unit #=> String
1141
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.metric #=> String
1142
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
1143
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
1144
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
1145
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
1146
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
1147
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
1148
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data #=> Array
1149
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].name #=> String
1150
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
1151
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
1152
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
1153
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
1154
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
1155
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
1156
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
1157
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
1158
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
1159
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
1160
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
1161
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
1162
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
1163
+ # resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
1042
1164
  # resp.proactive_anomalies[0].associated_insight_id #=> String
1043
1165
  # resp.proactive_anomalies[0].resource_collection.cloud_formation.stack_names #=> Array
1044
1166
  # resp.proactive_anomalies[0].resource_collection.cloud_formation.stack_names[0] #=> String
1167
+ # resp.proactive_anomalies[0].resource_collection.tags #=> Array
1168
+ # resp.proactive_anomalies[0].resource_collection.tags[0].app_boundary_key #=> String
1169
+ # resp.proactive_anomalies[0].resource_collection.tags[0].tag_values #=> Array
1170
+ # resp.proactive_anomalies[0].resource_collection.tags[0].tag_values[0] #=> String
1045
1171
  # resp.proactive_anomalies[0].limit #=> Float
1046
1172
  # resp.reactive_anomalies #=> Array
1047
1173
  # resp.reactive_anomalies[0].id #=> String
@@ -1064,9 +1190,46 @@ module Aws::DevOpsGuru
1064
1190
  # resp.reactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
1065
1191
  # resp.reactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
1066
1192
  # resp.reactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
1193
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics #=> Array
1194
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_display_name #=> String
1195
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].unit #=> String
1196
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.metric #=> String
1197
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
1198
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
1199
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
1200
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
1201
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
1202
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
1203
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data #=> Array
1204
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].name #=> String
1205
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
1206
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
1207
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
1208
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
1209
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
1210
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
1211
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
1212
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
1213
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
1214
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
1215
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
1216
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
1217
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
1218
+ # resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
1067
1219
  # resp.reactive_anomalies[0].associated_insight_id #=> String
1068
1220
  # resp.reactive_anomalies[0].resource_collection.cloud_formation.stack_names #=> Array
1069
1221
  # resp.reactive_anomalies[0].resource_collection.cloud_formation.stack_names[0] #=> String
1222
+ # resp.reactive_anomalies[0].resource_collection.tags #=> Array
1223
+ # resp.reactive_anomalies[0].resource_collection.tags[0].app_boundary_key #=> String
1224
+ # resp.reactive_anomalies[0].resource_collection.tags[0].tag_values #=> Array
1225
+ # resp.reactive_anomalies[0].resource_collection.tags[0].tag_values[0] #=> String
1226
+ # resp.reactive_anomalies[0].type #=> String, one of "CAUSAL", "CONTEXTUAL"
1227
+ # resp.reactive_anomalies[0].name #=> String
1228
+ # resp.reactive_anomalies[0].description #=> String
1229
+ # resp.reactive_anomalies[0].causal_anomaly_id #=> String
1230
+ # resp.reactive_anomalies[0].anomaly_resources #=> Array
1231
+ # resp.reactive_anomalies[0].anomaly_resources[0].name #=> String
1232
+ # resp.reactive_anomalies[0].anomaly_resources[0].type #=> String
1070
1233
  # resp.next_token #=> String
1071
1234
  #
1072
1235
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListAnomaliesForInsight AWS API Documentation
@@ -1120,6 +1283,12 @@ module Aws::DevOpsGuru
1120
1283
  # cloud_formation: {
1121
1284
  # stack_names: ["StackName"],
1122
1285
  # },
1286
+ # tags: [
1287
+ # {
1288
+ # app_boundary_key: "AppBoundaryKey", # required
1289
+ # tag_values: ["TagValue"], # required
1290
+ # },
1291
+ # ],
1123
1292
  # },
1124
1293
  # },
1125
1294
  # max_results: 1,
@@ -1132,6 +1301,10 @@ module Aws::DevOpsGuru
1132
1301
  # resp.events #=> Array
1133
1302
  # resp.events[0].resource_collection.cloud_formation.stack_names #=> Array
1134
1303
  # resp.events[0].resource_collection.cloud_formation.stack_names[0] #=> String
1304
+ # resp.events[0].resource_collection.tags #=> Array
1305
+ # resp.events[0].resource_collection.tags[0].app_boundary_key #=> String
1306
+ # resp.events[0].resource_collection.tags[0].tag_values #=> Array
1307
+ # resp.events[0].resource_collection.tags[0].tag_values[0] #=> String
1135
1308
  # resp.events[0].id #=> String
1136
1309
  # resp.events[0].time #=> Time
1137
1310
  # resp.events[0].event_source #=> String
@@ -1217,8 +1390,14 @@ module Aws::DevOpsGuru
1217
1390
  # resp.proactive_insights[0].prediction_time_range.end_time #=> Time
1218
1391
  # resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
1219
1392
  # resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
1393
+ # resp.proactive_insights[0].resource_collection.tags #=> Array
1394
+ # resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
1395
+ # resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
1396
+ # resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
1220
1397
  # resp.proactive_insights[0].service_collection.service_names #=> Array
1221
1398
  # resp.proactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
1399
+ # resp.proactive_insights[0].associated_resource_arns #=> Array
1400
+ # resp.proactive_insights[0].associated_resource_arns[0] #=> String
1222
1401
  # resp.reactive_insights #=> Array
1223
1402
  # resp.reactive_insights[0].id #=> String
1224
1403
  # resp.reactive_insights[0].name #=> String
@@ -1228,8 +1407,14 @@ module Aws::DevOpsGuru
1228
1407
  # resp.reactive_insights[0].insight_time_range.end_time #=> Time
1229
1408
  # resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
1230
1409
  # resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
1410
+ # resp.reactive_insights[0].resource_collection.tags #=> Array
1411
+ # resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
1412
+ # resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
1413
+ # resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
1231
1414
  # resp.reactive_insights[0].service_collection.service_names #=> Array
1232
1415
  # resp.reactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
1416
+ # resp.reactive_insights[0].associated_resource_arns #=> Array
1417
+ # resp.reactive_insights[0].associated_resource_arns[0] #=> String
1233
1418
  # resp.next_token #=> String
1234
1419
  #
1235
1420
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListInsights AWS API Documentation
@@ -1351,6 +1536,10 @@ module Aws::DevOpsGuru
1351
1536
  # resp.proactive_insights[0].prediction_time_range.end_time #=> Time
1352
1537
  # resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
1353
1538
  # resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
1539
+ # resp.proactive_insights[0].resource_collection.tags #=> Array
1540
+ # resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
1541
+ # resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
1542
+ # resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
1354
1543
  # resp.proactive_insights[0].service_collection.service_names #=> Array
1355
1544
  # resp.proactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
1356
1545
  # resp.reactive_insights #=> Array
@@ -1364,6 +1553,10 @@ module Aws::DevOpsGuru
1364
1553
  # resp.reactive_insights[0].insight_time_range.end_time #=> Time
1365
1554
  # resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
1366
1555
  # resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
1556
+ # resp.reactive_insights[0].resource_collection.tags #=> Array
1557
+ # resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
1558
+ # resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
1559
+ # resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
1367
1560
  # resp.reactive_insights[0].service_collection.service_names #=> Array
1368
1561
  # resp.reactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
1369
1562
  # resp.next_token #=> String
@@ -1430,6 +1623,7 @@ module Aws::DevOpsGuru
1430
1623
  # resp.recommendations[0].related_anomalies[0].source_details[0].cloud_watch_metrics #=> Array
1431
1624
  # resp.recommendations[0].related_anomalies[0].source_details[0].cloud_watch_metrics[0].metric_name #=> String
1432
1625
  # resp.recommendations[0].related_anomalies[0].source_details[0].cloud_watch_metrics[0].namespace #=> String
1626
+ # resp.recommendations[0].related_anomalies[0].anomaly_id #=> String
1433
1627
  # resp.next_token #=> String
1434
1628
  #
1435
1629
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListRecommendations AWS API Documentation
@@ -1544,6 +1738,12 @@ module Aws::DevOpsGuru
1544
1738
  # cloud_formation: {
1545
1739
  # stack_names: ["StackName"],
1546
1740
  # },
1741
+ # tags: [
1742
+ # {
1743
+ # app_boundary_key: "AppBoundaryKey", # required
1744
+ # tag_values: ["TagValue"], # required
1745
+ # },
1746
+ # ],
1547
1747
  # },
1548
1748
  # service_collection: {
1549
1749
  # 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
@@ -1567,8 +1767,14 @@ module Aws::DevOpsGuru
1567
1767
  # resp.proactive_insights[0].prediction_time_range.end_time #=> Time
1568
1768
  # resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
1569
1769
  # resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
1770
+ # resp.proactive_insights[0].resource_collection.tags #=> Array
1771
+ # resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
1772
+ # resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
1773
+ # resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
1570
1774
  # resp.proactive_insights[0].service_collection.service_names #=> Array
1571
1775
  # resp.proactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
1776
+ # resp.proactive_insights[0].associated_resource_arns #=> Array
1777
+ # resp.proactive_insights[0].associated_resource_arns[0] #=> String
1572
1778
  # resp.reactive_insights #=> Array
1573
1779
  # resp.reactive_insights[0].id #=> String
1574
1780
  # resp.reactive_insights[0].name #=> String
@@ -1578,8 +1784,14 @@ module Aws::DevOpsGuru
1578
1784
  # resp.reactive_insights[0].insight_time_range.end_time #=> Time
1579
1785
  # resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
1580
1786
  # resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
1787
+ # resp.reactive_insights[0].resource_collection.tags #=> Array
1788
+ # resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
1789
+ # resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
1790
+ # resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
1581
1791
  # resp.reactive_insights[0].service_collection.service_names #=> Array
1582
1792
  # resp.reactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
1793
+ # resp.reactive_insights[0].associated_resource_arns #=> Array
1794
+ # resp.reactive_insights[0].associated_resource_arns[0] #=> String
1583
1795
  # resp.next_token #=> String
1584
1796
  #
1585
1797
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchInsights AWS API Documentation
@@ -1647,6 +1859,12 @@ module Aws::DevOpsGuru
1647
1859
  # cloud_formation: {
1648
1860
  # stack_names: ["StackName"],
1649
1861
  # },
1862
+ # tags: [
1863
+ # {
1864
+ # app_boundary_key: "AppBoundaryKey", # required
1865
+ # tag_values: ["TagValue"], # required
1866
+ # },
1867
+ # ],
1650
1868
  # },
1651
1869
  # service_collection: {
1652
1870
  # 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
@@ -1670,8 +1888,14 @@ module Aws::DevOpsGuru
1670
1888
  # resp.proactive_insights[0].prediction_time_range.end_time #=> Time
1671
1889
  # resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
1672
1890
  # resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
1891
+ # resp.proactive_insights[0].resource_collection.tags #=> Array
1892
+ # resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
1893
+ # resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
1894
+ # resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
1673
1895
  # resp.proactive_insights[0].service_collection.service_names #=> Array
1674
1896
  # resp.proactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
1897
+ # resp.proactive_insights[0].associated_resource_arns #=> Array
1898
+ # resp.proactive_insights[0].associated_resource_arns[0] #=> String
1675
1899
  # resp.reactive_insights #=> Array
1676
1900
  # resp.reactive_insights[0].id #=> String
1677
1901
  # resp.reactive_insights[0].name #=> String
@@ -1681,8 +1905,14 @@ module Aws::DevOpsGuru
1681
1905
  # resp.reactive_insights[0].insight_time_range.end_time #=> Time
1682
1906
  # resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
1683
1907
  # resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
1908
+ # resp.reactive_insights[0].resource_collection.tags #=> Array
1909
+ # resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
1910
+ # resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
1911
+ # resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
1684
1912
  # resp.reactive_insights[0].service_collection.service_names #=> Array
1685
1913
  # resp.reactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
1914
+ # resp.reactive_insights[0].associated_resource_arns #=> Array
1915
+ # resp.reactive_insights[0].associated_resource_arns[0] #=> String
1686
1916
  # resp.next_token #=> String
1687
1917
  #
1688
1918
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchOrganizationInsights AWS API Documentation
@@ -1716,6 +1946,12 @@ module Aws::DevOpsGuru
1716
1946
  # cloud_formation: {
1717
1947
  # stack_names: ["StackName"],
1718
1948
  # },
1949
+ # tags: [
1950
+ # {
1951
+ # app_boundary_key: "AppBoundaryKey", # required
1952
+ # tag_values: ["TagValue"], # required
1953
+ # },
1954
+ # ],
1719
1955
  # },
1720
1956
  # client_token: "ClientToken",
1721
1957
  # })
@@ -1729,13 +1965,14 @@ module Aws::DevOpsGuru
1729
1965
  req.send_request(options)
1730
1966
  end
1731
1967
 
1732
- # Updates the collection of resources that DevOps Guru analyzes. The one
1733
- # type of Amazon Web Services resource collection supported is Amazon
1734
- # Web Services CloudFormation stacks. DevOps Guru can be configured to
1735
- # analyze only the Amazon Web Services resources that are defined in the
1736
- # stacks. You can specify up to 500 Amazon Web Services CloudFormation
1737
- # stacks. This method also creates the IAM role required for you to use
1738
- # DevOps Guru.
1968
+ # Updates the collection of resources that DevOps Guru analyzes. The two
1969
+ # types of Amazon Web Services resource collections supported are Amazon
1970
+ # Web Services CloudFormation stacks and Amazon Web Services resources
1971
+ # that contain the same Amazon Web Services tag. DevOps Guru can be
1972
+ # configured to analyze the Amazon Web Services resources that are
1973
+ # defined in the stacks or that are tagged using the same tag *key*. You
1974
+ # can specify up to 500 Amazon Web Services CloudFormation stacks. This
1975
+ # method also creates the IAM role required for you to use DevOps Guru.
1739
1976
  #
1740
1977
  # @option params [required, String] :action
1741
1978
  # Specifies if the resource collection in the request is added or
@@ -1755,6 +1992,12 @@ module Aws::DevOpsGuru
1755
1992
  # cloud_formation: {
1756
1993
  # stack_names: ["StackName"],
1757
1994
  # },
1995
+ # tags: [
1996
+ # {
1997
+ # app_boundary_key: "AppBoundaryKey", # required
1998
+ # tag_values: ["TagValue"], # required
1999
+ # },
2000
+ # ],
1758
2001
  # },
1759
2002
  # })
1760
2003
  #
@@ -1811,7 +2054,7 @@ module Aws::DevOpsGuru
1811
2054
  params: params,
1812
2055
  config: config)
1813
2056
  context[:gem_name] = 'aws-sdk-devopsguru'
1814
- context[:gem_version] = '1.16.0'
2057
+ context[:gem_version] = '1.17.0'
1815
2058
  Seahorse::Client::Request.new(handlers, context)
1816
2059
  end
1817
2060