aws-sdk-applicationsignals 1.38.0 → 1.40.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e911aaebe3776b772992a692722451939b157183bf17e8701d4b2edbd420a7b2
4
- data.tar.gz: 10219afa779b53dc3b0add89514305dbcc697812ed365c2b4604ecfcaad17570
3
+ metadata.gz: fd7f6b6d9d6cb3d9b7d3b3ad7e2b3b34a8437b52b33c7d864e8e56e12f6196d7
4
+ data.tar.gz: 2bc9687141975e968db8aa25bf47995c399c11252478184a0242f6f0ea082416
5
5
  SHA512:
6
- metadata.gz: e185645c375358b8903b05d1cad641ce9f1b6a9c0e280b20257ca589ff9f8ceb73c80f8972c241f29f339b231b2f77fc55b66509bc0526d388fe77b9e98debc7
7
- data.tar.gz: 28600cc4991a7025b8838d681142d216143bb52e76816fdc454a4f0efa287e53a21cadf9296bcf3cab3a49bc1fba81c76af2f8e43933a37ce1c35e51ae1bfb9f
6
+ metadata.gz: 9a7843a13e707a78f45b19d3cf3c07060847035143ddc9244cb7dcd3e156d6bf73af0e22d637f8c86c48540d0c549d1c1e00c9ba963610b5a326e07592360f71
7
+ data.tar.gz: c897483f688c2a68f2c3a18310b8f4d85405d51b756d49012fa6d52b93bf6dd0cd1a8b73fe15676031024119a7dbf3f9898133eefecf39441ad2a3566caf6280
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2026-04-27)
5
+ ------------------
6
+
7
+ * Feature - Application Signals now supports creating composite Service Level Objectives on Service Operations. Users can now create service SLO on multiple operations.
8
+
9
+ 1.39.0 (2026-04-20)
10
+ ------------------
11
+
12
+ * Feature - Releasing Second phase of SLO Recommendations where you can create recommended SLOs out-of-the box using CreateSLO API
13
+
4
14
  1.38.0 (2026-03-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.40.0
@@ -555,6 +555,10 @@ module Aws::ApplicationSignals
555
555
  # resp.reports[0].sli.sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
556
556
  # resp.reports[0].sli.sli_metric.metric_source.metric_source_attributes #=> Hash
557
557
  # resp.reports[0].sli.sli_metric.metric_source.metric_source_attributes["KeyAttributeName"] #=> String
558
+ # resp.reports[0].sli.sli_metric.composite_sli_config.selection_config.type #=> String, one of "EXPLICIT", "PREFIX", "REGEX"
559
+ # resp.reports[0].sli.sli_metric.composite_sli_config.selection_config.pattern #=> String
560
+ # resp.reports[0].sli.sli_metric.composite_sli_config.components #=> Array
561
+ # resp.reports[0].sli.sli_metric.composite_sli_config.components[0].operation_name #=> String
558
562
  # resp.reports[0].sli.metric_threshold #=> Float
559
563
  # resp.reports[0].sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
560
564
  # resp.reports[0].request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -613,6 +617,10 @@ module Aws::ApplicationSignals
613
617
  # resp.reports[0].request_based_sli.request_based_sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
614
618
  # resp.reports[0].request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes #=> Hash
615
619
  # resp.reports[0].request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes["KeyAttributeName"] #=> String
620
+ # resp.reports[0].request_based_sli.request_based_sli_metric.composite_sli_config.selection_config.type #=> String, one of "EXPLICIT", "PREFIX", "REGEX"
621
+ # resp.reports[0].request_based_sli.request_based_sli_metric.composite_sli_config.selection_config.pattern #=> String
622
+ # resp.reports[0].request_based_sli.request_based_sli_metric.composite_sli_config.components #=> Array
623
+ # resp.reports[0].request_based_sli.request_based_sli_metric.composite_sli_config.components[0].operation_name #=> String
616
624
  # resp.reports[0].request_based_sli.metric_threshold #=> Float
617
625
  # resp.reports[0].request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
618
626
  # resp.reports[0].goal.interval.rolling_interval.duration_unit #=> String, one of "MINUTE", "HOUR", "DAY", "MONTH"
@@ -838,6 +846,19 @@ module Aws::ApplicationSignals
838
846
  # a metric that indicates how fast the service is consuming the error
839
847
  # budget, relative to the attainment goal of the SLO.
840
848
  #
849
+ # @option params [Boolean] :create_recommended_slo
850
+ # Set this to `true` to create a recommended SLO out of the box. When
851
+ # set to `true`, you don't need to specify the `MetricThreshold` or
852
+ # `ComparisonOperator` in the `SliConfig` or `RequestBasedSliConfig`.
853
+ # The default value is `false`.
854
+ #
855
+ # This is supported for SLOs on a service, service operation, or a
856
+ # dependency.
857
+ #
858
+ # @option params [Boolean] :auto_investigation_enabled
859
+ # Indicates whether DevOps Agent will automatically investigate this SLO
860
+ # when it is breached
861
+ #
841
862
  # @return [Types::CreateServiceLevelObjectiveOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
842
863
  #
843
864
  # * {Types::CreateServiceLevelObjectiveOutput#slo #slo} => Types::ServiceLevelObjective
@@ -896,9 +917,20 @@ module Aws::ApplicationSignals
896
917
  # },
897
918
  # dependency_operation_name: "OperationName", # required
898
919
  # },
920
+ # composite_sli_config: {
921
+ # selection_config: { # required
922
+ # type: "EXPLICIT", # required, accepts EXPLICIT, PREFIX, REGEX
923
+ # pattern: "SelectionPattern",
924
+ # },
925
+ # components: [
926
+ # {
927
+ # operation_name: "OperationName",
928
+ # },
929
+ # ],
930
+ # },
899
931
  # },
900
- # metric_threshold: 1.0, # required
901
- # comparison_operator: "GreaterThanOrEqualTo", # required, accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
932
+ # metric_threshold: 1.0,
933
+ # comparison_operator: "GreaterThanOrEqualTo", # accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
902
934
  # },
903
935
  # request_based_sli_config: {
904
936
  # request_based_sli_metric_config: { # required
@@ -999,6 +1031,17 @@ module Aws::ApplicationSignals
999
1031
  # },
1000
1032
  # },
1001
1033
  # metric_name: "MetricName",
1034
+ # composite_sli_config: {
1035
+ # selection_config: { # required
1036
+ # type: "EXPLICIT", # required, accepts EXPLICIT, PREFIX, REGEX
1037
+ # pattern: "SelectionPattern",
1038
+ # },
1039
+ # components: [
1040
+ # {
1041
+ # operation_name: "OperationName",
1042
+ # },
1043
+ # ],
1044
+ # },
1002
1045
  # },
1003
1046
  # metric_threshold: 1.0,
1004
1047
  # comparison_operator: "GreaterThanOrEqualTo", # accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
@@ -1029,6 +1072,8 @@ module Aws::ApplicationSignals
1029
1072
  # look_back_window_minutes: 1, # required
1030
1073
  # },
1031
1074
  # ],
1075
+ # create_recommended_slo: false,
1076
+ # auto_investigation_enabled: false,
1032
1077
  # })
1033
1078
  #
1034
1079
  # @example Response structure
@@ -1064,6 +1109,10 @@ module Aws::ApplicationSignals
1064
1109
  # resp.slo.sli.sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
1065
1110
  # resp.slo.sli.sli_metric.metric_source.metric_source_attributes #=> Hash
1066
1111
  # resp.slo.sli.sli_metric.metric_source.metric_source_attributes["KeyAttributeName"] #=> String
1112
+ # resp.slo.sli.sli_metric.composite_sli_config.selection_config.type #=> String, one of "EXPLICIT", "PREFIX", "REGEX"
1113
+ # resp.slo.sli.sli_metric.composite_sli_config.selection_config.pattern #=> String
1114
+ # resp.slo.sli.sli_metric.composite_sli_config.components #=> Array
1115
+ # resp.slo.sli.sli_metric.composite_sli_config.components[0].operation_name #=> String
1067
1116
  # resp.slo.sli.metric_threshold #=> Float
1068
1117
  # resp.slo.sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1069
1118
  # resp.slo.request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -1122,6 +1171,10 @@ module Aws::ApplicationSignals
1122
1171
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
1123
1172
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes #=> Hash
1124
1173
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes["KeyAttributeName"] #=> String
1174
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.selection_config.type #=> String, one of "EXPLICIT", "PREFIX", "REGEX"
1175
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.selection_config.pattern #=> String
1176
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.components #=> Array
1177
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.components[0].operation_name #=> String
1125
1178
  # resp.slo.request_based_sli.metric_threshold #=> Float
1126
1179
  # resp.slo.request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1127
1180
  # resp.slo.evaluation_type #=> String, one of "PeriodBased", "RequestBased"
@@ -1135,6 +1188,7 @@ module Aws::ApplicationSignals
1135
1188
  # resp.slo.burn_rate_configurations #=> Array
1136
1189
  # resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
1137
1190
  # resp.slo.metric_source_type #=> String, one of "ServiceOperation", "CloudWatchMetric", "ServiceDependency", "AppMonitor", "Canary", "Service"
1191
+ # resp.slo.auto_investigation_enabled #=> Boolean
1138
1192
  #
1139
1193
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/CreateServiceLevelObjective AWS API Documentation
1140
1194
  #
@@ -1330,6 +1384,10 @@ module Aws::ApplicationSignals
1330
1384
  # resp.slo.sli.sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
1331
1385
  # resp.slo.sli.sli_metric.metric_source.metric_source_attributes #=> Hash
1332
1386
  # resp.slo.sli.sli_metric.metric_source.metric_source_attributes["KeyAttributeName"] #=> String
1387
+ # resp.slo.sli.sli_metric.composite_sli_config.selection_config.type #=> String, one of "EXPLICIT", "PREFIX", "REGEX"
1388
+ # resp.slo.sli.sli_metric.composite_sli_config.selection_config.pattern #=> String
1389
+ # resp.slo.sli.sli_metric.composite_sli_config.components #=> Array
1390
+ # resp.slo.sli.sli_metric.composite_sli_config.components[0].operation_name #=> String
1333
1391
  # resp.slo.sli.metric_threshold #=> Float
1334
1392
  # resp.slo.sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1335
1393
  # resp.slo.request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -1388,6 +1446,10 @@ module Aws::ApplicationSignals
1388
1446
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
1389
1447
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes #=> Hash
1390
1448
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes["KeyAttributeName"] #=> String
1449
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.selection_config.type #=> String, one of "EXPLICIT", "PREFIX", "REGEX"
1450
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.selection_config.pattern #=> String
1451
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.components #=> Array
1452
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.components[0].operation_name #=> String
1391
1453
  # resp.slo.request_based_sli.metric_threshold #=> Float
1392
1454
  # resp.slo.request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1393
1455
  # resp.slo.evaluation_type #=> String, one of "PeriodBased", "RequestBased"
@@ -1401,6 +1463,7 @@ module Aws::ApplicationSignals
1401
1463
  # resp.slo.burn_rate_configurations #=> Array
1402
1464
  # resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
1403
1465
  # resp.slo.metric_source_type #=> String, one of "ServiceOperation", "CloudWatchMetric", "ServiceDependency", "AppMonitor", "Canary", "Service"
1466
+ # resp.slo.auto_investigation_enabled #=> Boolean
1404
1467
  #
1405
1468
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/GetServiceLevelObjective AWS API Documentation
1406
1469
  #
@@ -1465,6 +1528,13 @@ module Aws::ApplicationSignals
1465
1528
  # categorizing error types and ranking severity by frequency during
1466
1529
  # the Analysis phase
1467
1530
  #
1531
+ # * `change_indicator` - ChangeIndicatorAuditor: Detects change events
1532
+ # (deployments, configuration changes) that occurred within 10 minutes
1533
+ # before and during a detected anomaly, and surfaces them as findings
1534
+ # with deployment timestamps in the Analysis phase. When changes are
1535
+ # detected, the `top_contributor` auditor skips its analysis to avoid
1536
+ # redundancy.
1537
+ #
1468
1538
  # <note markdown="1"> `InitAuditor` and `Summarizer` auditors are not configurable as they
1469
1539
  # are automatically triggered during the audit process.
1470
1540
  #
@@ -2123,6 +2193,10 @@ module Aws::ApplicationSignals
2123
2193
  # resp.slo_summaries[0].metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
2124
2194
  # resp.slo_summaries[0].metric_source.metric_source_attributes #=> Hash
2125
2195
  # resp.slo_summaries[0].metric_source.metric_source_attributes["KeyAttributeName"] #=> String
2196
+ # resp.slo_summaries[0].composite_sli_config.selection_config.type #=> String, one of "EXPLICIT", "PREFIX", "REGEX"
2197
+ # resp.slo_summaries[0].composite_sli_config.selection_config.pattern #=> String
2198
+ # resp.slo_summaries[0].composite_sli_config.components #=> Array
2199
+ # resp.slo_summaries[0].composite_sli_config.components[0].operation_name #=> String
2126
2200
  # resp.next_token #=> String
2127
2201
  #
2128
2202
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListServiceLevelObjectives AWS API Documentation
@@ -2671,6 +2745,10 @@ module Aws::ApplicationSignals
2671
2745
  # a metric that indicates how fast the service is consuming the error
2672
2746
  # budget, relative to the attainment goal of the SLO.
2673
2747
  #
2748
+ # @option params [Boolean] :auto_investigation_enabled
2749
+ # Indicates whether DevOps Agent will automatically investigate this SLO
2750
+ # when it is breached
2751
+ #
2674
2752
  # @return [Types::UpdateServiceLevelObjectiveOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2675
2753
  #
2676
2754
  # * {Types::UpdateServiceLevelObjectiveOutput#slo #slo} => Types::ServiceLevelObjective
@@ -2729,9 +2807,20 @@ module Aws::ApplicationSignals
2729
2807
  # },
2730
2808
  # dependency_operation_name: "OperationName", # required
2731
2809
  # },
2810
+ # composite_sli_config: {
2811
+ # selection_config: { # required
2812
+ # type: "EXPLICIT", # required, accepts EXPLICIT, PREFIX, REGEX
2813
+ # pattern: "SelectionPattern",
2814
+ # },
2815
+ # components: [
2816
+ # {
2817
+ # operation_name: "OperationName",
2818
+ # },
2819
+ # ],
2820
+ # },
2732
2821
  # },
2733
- # metric_threshold: 1.0, # required
2734
- # comparison_operator: "GreaterThanOrEqualTo", # required, accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
2822
+ # metric_threshold: 1.0,
2823
+ # comparison_operator: "GreaterThanOrEqualTo", # accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
2735
2824
  # },
2736
2825
  # request_based_sli_config: {
2737
2826
  # request_based_sli_metric_config: { # required
@@ -2832,6 +2921,17 @@ module Aws::ApplicationSignals
2832
2921
  # },
2833
2922
  # },
2834
2923
  # metric_name: "MetricName",
2924
+ # composite_sli_config: {
2925
+ # selection_config: { # required
2926
+ # type: "EXPLICIT", # required, accepts EXPLICIT, PREFIX, REGEX
2927
+ # pattern: "SelectionPattern",
2928
+ # },
2929
+ # components: [
2930
+ # {
2931
+ # operation_name: "OperationName",
2932
+ # },
2933
+ # ],
2934
+ # },
2835
2935
  # },
2836
2936
  # metric_threshold: 1.0,
2837
2937
  # comparison_operator: "GreaterThanOrEqualTo", # accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
@@ -2856,6 +2956,7 @@ module Aws::ApplicationSignals
2856
2956
  # look_back_window_minutes: 1, # required
2857
2957
  # },
2858
2958
  # ],
2959
+ # auto_investigation_enabled: false,
2859
2960
  # })
2860
2961
  #
2861
2962
  # @example Response structure
@@ -2891,6 +2992,10 @@ module Aws::ApplicationSignals
2891
2992
  # resp.slo.sli.sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
2892
2993
  # resp.slo.sli.sli_metric.metric_source.metric_source_attributes #=> Hash
2893
2994
  # resp.slo.sli.sli_metric.metric_source.metric_source_attributes["KeyAttributeName"] #=> String
2995
+ # resp.slo.sli.sli_metric.composite_sli_config.selection_config.type #=> String, one of "EXPLICIT", "PREFIX", "REGEX"
2996
+ # resp.slo.sli.sli_metric.composite_sli_config.selection_config.pattern #=> String
2997
+ # resp.slo.sli.sli_metric.composite_sli_config.components #=> Array
2998
+ # resp.slo.sli.sli_metric.composite_sli_config.components[0].operation_name #=> String
2894
2999
  # resp.slo.sli.metric_threshold #=> Float
2895
3000
  # resp.slo.sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
2896
3001
  # resp.slo.request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -2949,6 +3054,10 @@ module Aws::ApplicationSignals
2949
3054
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
2950
3055
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes #=> Hash
2951
3056
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes["KeyAttributeName"] #=> String
3057
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.selection_config.type #=> String, one of "EXPLICIT", "PREFIX", "REGEX"
3058
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.selection_config.pattern #=> String
3059
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.components #=> Array
3060
+ # resp.slo.request_based_sli.request_based_sli_metric.composite_sli_config.components[0].operation_name #=> String
2952
3061
  # resp.slo.request_based_sli.metric_threshold #=> Float
2953
3062
  # resp.slo.request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
2954
3063
  # resp.slo.evaluation_type #=> String, one of "PeriodBased", "RequestBased"
@@ -2962,6 +3071,7 @@ module Aws::ApplicationSignals
2962
3071
  # resp.slo.burn_rate_configurations #=> Array
2963
3072
  # resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
2964
3073
  # resp.slo.metric_source_type #=> String, one of "ServiceOperation", "CloudWatchMetric", "ServiceDependency", "AppMonitor", "Canary", "Service"
3074
+ # resp.slo.auto_investigation_enabled #=> Boolean
2965
3075
  #
2966
3076
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/UpdateServiceLevelObjective AWS API Documentation
2967
3077
  #
@@ -2990,7 +3100,7 @@ module Aws::ApplicationSignals
2990
3100
  tracer: tracer
2991
3101
  )
2992
3102
  context[:gem_name] = 'aws-sdk-applicationsignals'
2993
- context[:gem_version] = '1.38.0'
3103
+ context[:gem_version] = '1.40.0'
2994
3104
  Seahorse::Client::Request.new(handlers, context)
2995
3105
  end
2996
3106
 
@@ -55,6 +55,9 @@ module Aws::ApplicationSignals
55
55
  ChangeEvent = Shapes::StructureShape.new(name: 'ChangeEvent')
56
56
  ChangeEventType = Shapes::StringShape.new(name: 'ChangeEventType')
57
57
  ChangeEvents = Shapes::ListShape.new(name: 'ChangeEvents')
58
+ CompositeSliComponent = Shapes::UnionShape.new(name: 'CompositeSliComponent')
59
+ CompositeSliComponents = Shapes::ListShape.new(name: 'CompositeSliComponents')
60
+ CompositeSliConfig = Shapes::StructureShape.new(name: 'CompositeSliConfig')
58
61
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
59
62
  ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
60
63
  CreateServiceLevelObjectiveInput = Shapes::StructureShape.new(name: 'CreateServiceLevelObjectiveInput')
@@ -169,6 +172,9 @@ module Aws::ApplicationSignals
169
172
  RollingInterval = Shapes::StructureShape.new(name: 'RollingInterval')
170
173
  RollingIntervalDuration = Shapes::IntegerShape.new(name: 'RollingIntervalDuration')
171
174
  SLIPeriodSeconds = Shapes::IntegerShape.new(name: 'SLIPeriodSeconds')
175
+ SelectionConfig = Shapes::StructureShape.new(name: 'SelectionConfig')
176
+ SelectionPattern = Shapes::StringShape.new(name: 'SelectionPattern')
177
+ SelectionType = Shapes::StringShape.new(name: 'SelectionType')
172
178
  Service = Shapes::StructureShape.new(name: 'Service')
173
179
  ServiceDependencies = Shapes::ListShape.new(name: 'ServiceDependencies')
174
180
  ServiceDependency = Shapes::StructureShape.new(name: 'ServiceDependency')
@@ -343,6 +349,18 @@ module Aws::ApplicationSignals
343
349
 
344
350
  ChangeEvents.member = Shapes::ShapeRef.new(shape: ChangeEvent)
345
351
 
352
+ CompositeSliComponent.add_member(:operation_name, Shapes::ShapeRef.new(shape: OperationName, location_name: "OperationName"))
353
+ CompositeSliComponent.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
354
+ CompositeSliComponent.add_member_subclass(:operation_name, Types::CompositeSliComponent::OperationName)
355
+ CompositeSliComponent.add_member_subclass(:unknown, Types::CompositeSliComponent::Unknown)
356
+ CompositeSliComponent.struct_class = Types::CompositeSliComponent
357
+
358
+ CompositeSliComponents.member = Shapes::ShapeRef.new(shape: CompositeSliComponent)
359
+
360
+ CompositeSliConfig.add_member(:selection_config, Shapes::ShapeRef.new(shape: SelectionConfig, required: true, location_name: "SelectionConfig"))
361
+ CompositeSliConfig.add_member(:components, Shapes::ShapeRef.new(shape: CompositeSliComponents, location_name: "Components"))
362
+ CompositeSliConfig.struct_class = Types::CompositeSliConfig
363
+
346
364
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
347
365
  ConflictException.struct_class = Types::ConflictException
348
366
 
@@ -353,6 +371,8 @@ module Aws::ApplicationSignals
353
371
  CreateServiceLevelObjectiveInput.add_member(:goal, Shapes::ShapeRef.new(shape: Goal, location_name: "Goal"))
354
372
  CreateServiceLevelObjectiveInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
355
373
  CreateServiceLevelObjectiveInput.add_member(:burn_rate_configurations, Shapes::ShapeRef.new(shape: BurnRateConfigurations, location_name: "BurnRateConfigurations"))
374
+ CreateServiceLevelObjectiveInput.add_member(:create_recommended_slo, Shapes::ShapeRef.new(shape: Boolean, location_name: "CreateRecommendedSlo"))
375
+ CreateServiceLevelObjectiveInput.add_member(:auto_investigation_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoInvestigationEnabled"))
356
376
  CreateServiceLevelObjectiveInput.struct_class = Types::CreateServiceLevelObjectiveInput
357
377
 
358
378
  CreateServiceLevelObjectiveOutput.add_member(:slo, Shapes::ShapeRef.new(shape: ServiceLevelObjective, required: true, location_name: "Slo"))
@@ -668,6 +688,7 @@ module Aws::ApplicationSignals
668
688
  RequestBasedServiceLevelIndicatorMetric.add_member(:monitored_request_count_metric, Shapes::ShapeRef.new(shape: MonitoredRequestCountMetricDataQueries, required: true, location_name: "MonitoredRequestCountMetric"))
669
689
  RequestBasedServiceLevelIndicatorMetric.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
670
690
  RequestBasedServiceLevelIndicatorMetric.add_member(:metric_source, Shapes::ShapeRef.new(shape: MetricSource, location_name: "MetricSource"))
691
+ RequestBasedServiceLevelIndicatorMetric.add_member(:composite_sli_config, Shapes::ShapeRef.new(shape: CompositeSliConfig, location_name: "CompositeSliConfig"))
671
692
  RequestBasedServiceLevelIndicatorMetric.struct_class = Types::RequestBasedServiceLevelIndicatorMetric
672
693
 
673
694
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "KeyAttributes"))
@@ -678,6 +699,7 @@ module Aws::ApplicationSignals
678
699
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
679
700
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:metric_source, Shapes::ShapeRef.new(shape: MetricSource, location_name: "MetricSource"))
680
701
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:metric_name, Shapes::ShapeRef.new(shape: MetricName, location_name: "MetricName"))
702
+ RequestBasedServiceLevelIndicatorMetricConfig.add_member(:composite_sli_config, Shapes::ShapeRef.new(shape: CompositeSliConfig, location_name: "CompositeSliConfig"))
681
703
  RequestBasedServiceLevelIndicatorMetricConfig.struct_class = Types::RequestBasedServiceLevelIndicatorMetricConfig
682
704
 
683
705
  ResourceNotFoundException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "ResourceType"))
@@ -689,6 +711,10 @@ module Aws::ApplicationSignals
689
711
  RollingInterval.add_member(:duration, Shapes::ShapeRef.new(shape: RollingIntervalDuration, required: true, location_name: "Duration"))
690
712
  RollingInterval.struct_class = Types::RollingInterval
691
713
 
714
+ SelectionConfig.add_member(:type, Shapes::ShapeRef.new(shape: SelectionType, required: true, location_name: "Type"))
715
+ SelectionConfig.add_member(:pattern, Shapes::ShapeRef.new(shape: SelectionPattern, location_name: "Pattern"))
716
+ SelectionConfig.struct_class = Types::SelectionConfig
717
+
692
718
  Service.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, required: true, location_name: "KeyAttributes"))
693
719
  Service.add_member(:attribute_maps, Shapes::ShapeRef.new(shape: AttributeMaps, location_name: "AttributeMaps"))
694
720
  Service.add_member(:service_groups, Shapes::ShapeRef.new(shape: ServiceGroups, location_name: "ServiceGroups"))
@@ -732,8 +758,8 @@ module Aws::ApplicationSignals
732
758
  ServiceLevelIndicator.struct_class = Types::ServiceLevelIndicator
733
759
 
734
760
  ServiceLevelIndicatorConfig.add_member(:sli_metric_config, Shapes::ShapeRef.new(shape: ServiceLevelIndicatorMetricConfig, required: true, location_name: "SliMetricConfig"))
735
- ServiceLevelIndicatorConfig.add_member(:metric_threshold, Shapes::ShapeRef.new(shape: ServiceLevelIndicatorMetricThreshold, required: true, location_name: "MetricThreshold"))
736
- ServiceLevelIndicatorConfig.add_member(:comparison_operator, Shapes::ShapeRef.new(shape: ServiceLevelIndicatorComparisonOperator, required: true, location_name: "ComparisonOperator"))
761
+ ServiceLevelIndicatorConfig.add_member(:metric_threshold, Shapes::ShapeRef.new(shape: ServiceLevelIndicatorMetricThreshold, location_name: "MetricThreshold", metadata: {"box" => true}))
762
+ ServiceLevelIndicatorConfig.add_member(:comparison_operator, Shapes::ShapeRef.new(shape: ServiceLevelIndicatorComparisonOperator, location_name: "ComparisonOperator"))
737
763
  ServiceLevelIndicatorConfig.struct_class = Types::ServiceLevelIndicatorConfig
738
764
 
739
765
  ServiceLevelIndicatorMetric.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "KeyAttributes"))
@@ -742,6 +768,7 @@ module Aws::ApplicationSignals
742
768
  ServiceLevelIndicatorMetric.add_member(:metric_data_queries, Shapes::ShapeRef.new(shape: MetricDataQueries, required: true, location_name: "MetricDataQueries"))
743
769
  ServiceLevelIndicatorMetric.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
744
770
  ServiceLevelIndicatorMetric.add_member(:metric_source, Shapes::ShapeRef.new(shape: MetricSource, location_name: "MetricSource"))
771
+ ServiceLevelIndicatorMetric.add_member(:composite_sli_config, Shapes::ShapeRef.new(shape: CompositeSliConfig, location_name: "CompositeSliConfig"))
745
772
  ServiceLevelIndicatorMetric.struct_class = Types::ServiceLevelIndicatorMetric
746
773
 
747
774
  ServiceLevelIndicatorMetricConfig.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "KeyAttributes"))
@@ -753,6 +780,7 @@ module Aws::ApplicationSignals
753
780
  ServiceLevelIndicatorMetricConfig.add_member(:metric_source, Shapes::ShapeRef.new(shape: MetricSource, location_name: "MetricSource"))
754
781
  ServiceLevelIndicatorMetricConfig.add_member(:metric_data_queries, Shapes::ShapeRef.new(shape: MetricDataQueries, location_name: "MetricDataQueries"))
755
782
  ServiceLevelIndicatorMetricConfig.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
783
+ ServiceLevelIndicatorMetricConfig.add_member(:composite_sli_config, Shapes::ShapeRef.new(shape: CompositeSliConfig, location_name: "CompositeSliConfig"))
756
784
  ServiceLevelIndicatorMetricConfig.struct_class = Types::ServiceLevelIndicatorMetricConfig
757
785
 
758
786
  ServiceLevelObjective.add_member(:arn, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveArn, required: true, location_name: "Arn"))
@@ -766,6 +794,7 @@ module Aws::ApplicationSignals
766
794
  ServiceLevelObjective.add_member(:goal, Shapes::ShapeRef.new(shape: Goal, required: true, location_name: "Goal"))
767
795
  ServiceLevelObjective.add_member(:burn_rate_configurations, Shapes::ShapeRef.new(shape: BurnRateConfigurations, location_name: "BurnRateConfigurations"))
768
796
  ServiceLevelObjective.add_member(:metric_source_type, Shapes::ShapeRef.new(shape: MetricSourceType, location_name: "MetricSourceType"))
797
+ ServiceLevelObjective.add_member(:auto_investigation_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoInvestigationEnabled"))
769
798
  ServiceLevelObjective.struct_class = Types::ServiceLevelObjective
770
799
 
771
800
  ServiceLevelObjectiveBudgetReport.add_member(:arn, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveArn, required: true, location_name: "Arn"))
@@ -809,6 +838,7 @@ module Aws::ApplicationSignals
809
838
  ServiceLevelObjectiveSummary.add_member(:evaluation_type, Shapes::ShapeRef.new(shape: EvaluationType, location_name: "EvaluationType"))
810
839
  ServiceLevelObjectiveSummary.add_member(:metric_source_type, Shapes::ShapeRef.new(shape: MetricSourceType, location_name: "MetricSourceType"))
811
840
  ServiceLevelObjectiveSummary.add_member(:metric_source, Shapes::ShapeRef.new(shape: MetricSource, location_name: "MetricSource"))
841
+ ServiceLevelObjectiveSummary.add_member(:composite_sli_config, Shapes::ShapeRef.new(shape: CompositeSliConfig, location_name: "CompositeSliConfig"))
812
842
  ServiceLevelObjectiveSummary.struct_class = Types::ServiceLevelObjectiveSummary
813
843
 
814
844
  ServiceOperation.add_member(:name, Shapes::ShapeRef.new(shape: OperationName, required: true, location_name: "Name"))
@@ -873,6 +903,7 @@ module Aws::ApplicationSignals
873
903
  UpdateServiceLevelObjectiveInput.add_member(:request_based_sli_config, Shapes::ShapeRef.new(shape: RequestBasedServiceLevelIndicatorConfig, location_name: "RequestBasedSliConfig"))
874
904
  UpdateServiceLevelObjectiveInput.add_member(:goal, Shapes::ShapeRef.new(shape: Goal, location_name: "Goal"))
875
905
  UpdateServiceLevelObjectiveInput.add_member(:burn_rate_configurations, Shapes::ShapeRef.new(shape: BurnRateConfigurations, location_name: "BurnRateConfigurations"))
906
+ UpdateServiceLevelObjectiveInput.add_member(:auto_investigation_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoInvestigationEnabled"))
876
907
  UpdateServiceLevelObjectiveInput.struct_class = Types::UpdateServiceLevelObjectiveInput
877
908
 
878
909
  UpdateServiceLevelObjectiveOutput.add_member(:slo, Shapes::ShapeRef.new(shape: ServiceLevelObjective, required: true, location_name: "Slo"))
@@ -472,6 +472,58 @@ module Aws::ApplicationSignals
472
472
  include Aws::Structure
473
473
  end
474
474
 
475
+ # Identifies a single operation to include in a composite SLI for a
476
+ # service-level SLO. Used as an element of the `Components` list in
477
+ # `CompositeSliConfig`.
478
+ #
479
+ # @note CompositeSliComponent is a union - when making an API calls you must set exactly one of the members.
480
+ #
481
+ # @note CompositeSliComponent is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CompositeSliComponent corresponding to the set member.
482
+ #
483
+ # @!attribute [rw] operation_name
484
+ # The name of the operation to include in the composite SLI.
485
+ # @return [String]
486
+ #
487
+ # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/CompositeSliComponent AWS API Documentation
488
+ #
489
+ class CompositeSliComponent < Struct.new(
490
+ :operation_name,
491
+ :unknown)
492
+ SENSITIVE = []
493
+ include Aws::Structure
494
+ include Aws::Structure::Union
495
+
496
+ class OperationName < CompositeSliComponent; end
497
+ class Unknown < CompositeSliComponent; end
498
+ end
499
+
500
+ # This structure contains the configuration for a composite service
501
+ # level indicator (SLI) that aggregates metrics across multiple
502
+ # operations of a service for service-level SLOs.
503
+ #
504
+ # @!attribute [rw] selection_config
505
+ # Specifies how operations are selected for this service-level SLO.
506
+ # Operations can be selected explicitly by listing them, by specifying
507
+ # a prefix to match operation names, or by providing a regular
508
+ # expression pattern.
509
+ # @return [Types::SelectionConfig]
510
+ #
511
+ # @!attribute [rw] components
512
+ # The list of operations included in this composite SLI. You must
513
+ # specify between 2 and 20 components. Each component is a
514
+ # `CompositeSliComponent` that identifies a single operation by its
515
+ # `OperationName`.
516
+ # @return [Array<Types::CompositeSliComponent>]
517
+ #
518
+ # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/CompositeSliConfig AWS API Documentation
519
+ #
520
+ class CompositeSliConfig < Struct.new(
521
+ :selection_config,
522
+ :components)
523
+ SENSITIVE = []
524
+ include Aws::Structure
525
+ end
526
+
475
527
  # This operation attempted to create a resource that already exists.
476
528
  #
477
529
  # @!attribute [rw] message
@@ -532,6 +584,21 @@ module Aws::ApplicationSignals
532
584
  # error budget, relative to the attainment goal of the SLO.
533
585
  # @return [Array<Types::BurnRateConfiguration>]
534
586
  #
587
+ # @!attribute [rw] create_recommended_slo
588
+ # Set this to `true` to create a recommended SLO out of the box. When
589
+ # set to `true`, you don't need to specify the `MetricThreshold` or
590
+ # `ComparisonOperator` in the `SliConfig` or `RequestBasedSliConfig`.
591
+ # The default value is `false`.
592
+ #
593
+ # This is supported for SLOs on a service, service operation, or a
594
+ # dependency.
595
+ # @return [Boolean]
596
+ #
597
+ # @!attribute [rw] auto_investigation_enabled
598
+ # Indicates whether DevOps Agent will automatically investigate this
599
+ # SLO when it is breached
600
+ # @return [Boolean]
601
+ #
535
602
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/CreateServiceLevelObjectiveInput AWS API Documentation
536
603
  #
537
604
  class CreateServiceLevelObjectiveInput < Struct.new(
@@ -541,7 +608,9 @@ module Aws::ApplicationSignals
541
608
  :request_based_sli_config,
542
609
  :goal,
543
610
  :tags,
544
- :burn_rate_configurations)
611
+ :burn_rate_configurations,
612
+ :create_recommended_slo,
613
+ :auto_investigation_enabled)
545
614
  SENSITIVE = []
546
615
  include Aws::Structure
547
616
  end
@@ -1054,6 +1123,13 @@ module Aws::ApplicationSignals
1054
1123
  # categorizing error types and ranking severity by frequency during
1055
1124
  # the Analysis phase
1056
1125
  #
1126
+ # * `change_indicator` - ChangeIndicatorAuditor: Detects change events
1127
+ # (deployments, configuration changes) that occurred within 10
1128
+ # minutes before and during a detected anomaly, and surfaces them as
1129
+ # findings with deployment timestamps in the Analysis phase. When
1130
+ # changes are detected, the `top_contributor` auditor skips its
1131
+ # analysis to avoid redundancy.
1132
+ #
1057
1133
  # <note markdown="1"> `InitAuditor` and `Summarizer` auditors are not configurable as they
1058
1134
  # are automatically triggered during the audit process.
1059
1135
  #
@@ -2530,6 +2606,11 @@ module Aws::ApplicationSignals
2530
2606
  # Application Signals services.
2531
2607
  # @return [Types::MetricSource]
2532
2608
  #
2609
+ # @!attribute [rw] composite_sli_config
2610
+ # The composite SLI configuration for service-level SLOs that monitor
2611
+ # multiple operations of a service.
2612
+ # @return [Types::CompositeSliConfig]
2613
+ #
2533
2614
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/RequestBasedServiceLevelIndicatorMetric AWS API Documentation
2534
2615
  #
2535
2616
  class RequestBasedServiceLevelIndicatorMetric < Struct.new(
@@ -2539,7 +2620,8 @@ module Aws::ApplicationSignals
2539
2620
  :total_request_count_metric,
2540
2621
  :monitored_request_count_metric,
2541
2622
  :dependency_config,
2542
- :metric_source)
2623
+ :metric_source,
2624
+ :composite_sli_config)
2543
2625
  SENSITIVE = []
2544
2626
  include Aws::Structure
2545
2627
  end
@@ -2615,6 +2697,11 @@ module Aws::ApplicationSignals
2615
2697
  # Signals services.
2616
2698
  # @return [String]
2617
2699
  #
2700
+ # @!attribute [rw] composite_sli_config
2701
+ # The composite SLI configuration for service-level SLOs that monitor
2702
+ # multiple operations of a service.
2703
+ # @return [Types::CompositeSliConfig]
2704
+ #
2618
2705
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/RequestBasedServiceLevelIndicatorMetricConfig AWS API Documentation
2619
2706
  #
2620
2707
  class RequestBasedServiceLevelIndicatorMetricConfig < Struct.new(
@@ -2625,7 +2712,8 @@ module Aws::ApplicationSignals
2625
2712
  :monitored_request_count_metric,
2626
2713
  :dependency_config,
2627
2714
  :metric_source,
2628
- :metric_name)
2715
+ :metric_name,
2716
+ :composite_sli_config)
2629
2717
  SENSITIVE = []
2630
2718
  include Aws::Structure
2631
2719
  end
@@ -2675,6 +2763,41 @@ module Aws::ApplicationSignals
2675
2763
  include Aws::Structure
2676
2764
  end
2677
2765
 
2766
+ # Defines how operations are selected for a service-level SLO.
2767
+ #
2768
+ # @!attribute [rw] type
2769
+ # The strategy for selecting operations to include in a service-level
2770
+ # SLO.
2771
+ #
2772
+ # * `EXPLICIT` — You provide a specific list of operations in the
2773
+ # `Components` field of `CompositeSliConfig`.
2774
+ #
2775
+ # * `PREFIX` — You provide a prefix string in the `Pattern` field of
2776
+ # `SelectionConfig`, and all operations whose names start with the
2777
+ # prefix are included.
2778
+ #
2779
+ # * `REGEX` — You provide a regular expression in the `Pattern` field
2780
+ # of `SelectionConfig`, and all operations whose names match the
2781
+ # pattern are included.
2782
+ # @return [String]
2783
+ #
2784
+ # @!attribute [rw] pattern
2785
+ # A prefix string or regular expression that specifies which
2786
+ # operations to include in a service-level SLO. When `SelectionType`
2787
+ # is `PREFIX`, this value is a prefix string that matches the
2788
+ # beginning of operation names. When `SelectionType` is `REGEX`, this
2789
+ # value is a regular expression that matches operation names.
2790
+ # @return [String]
2791
+ #
2792
+ # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/SelectionConfig AWS API Documentation
2793
+ #
2794
+ class SelectionConfig < Struct.new(
2795
+ :type,
2796
+ :pattern)
2797
+ SENSITIVE = []
2798
+ include Aws::Structure
2799
+ end
2800
+
2678
2801
  # This structure contains information about one of your services that
2679
2802
  # was discovered by Application Signals.
2680
2803
  #
@@ -2992,11 +3115,15 @@ module Aws::ApplicationSignals
2992
3115
  # This parameter is used only when a request-based SLO tracks the
2993
3116
  # `Latency` metric. Specify the threshold value that the observed
2994
3117
  # `Latency` metric values are to be compared to.
3118
+ #
3119
+ # This is not required if `CreateRecommendedSlo` is set to `true`.
2995
3120
  # @return [Float]
2996
3121
  #
2997
3122
  # @!attribute [rw] comparison_operator
2998
3123
  # The arithmetic operation to use when comparing the specified metric
2999
3124
  # to the threshold.
3125
+ #
3126
+ # This is not required if `CreateRecommendedSlo` is set to `true`.
3000
3127
  # @return [String]
3001
3128
  #
3002
3129
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelIndicatorConfig AWS API Documentation
@@ -3062,6 +3189,11 @@ module Aws::ApplicationSignals
3062
3189
  # Application Signals services.
3063
3190
  # @return [Types::MetricSource]
3064
3191
  #
3192
+ # @!attribute [rw] composite_sli_config
3193
+ # The composite SLI configuration for service-level SLOs that monitor
3194
+ # multiple operations of a service.
3195
+ # @return [Types::CompositeSliConfig]
3196
+ #
3065
3197
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelIndicatorMetric AWS API Documentation
3066
3198
  #
3067
3199
  class ServiceLevelIndicatorMetric < Struct.new(
@@ -3070,7 +3202,8 @@ module Aws::ApplicationSignals
3070
3202
  :metric_type,
3071
3203
  :metric_data_queries,
3072
3204
  :dependency_config,
3073
- :metric_source)
3205
+ :metric_source,
3206
+ :composite_sli_config)
3074
3207
  SENSITIVE = []
3075
3208
  include Aws::Structure
3076
3209
  end
@@ -3153,6 +3286,11 @@ module Aws::ApplicationSignals
3153
3286
  # `DependencyOperationName`.
3154
3287
  # @return [Types::DependencyConfig]
3155
3288
  #
3289
+ # @!attribute [rw] composite_sli_config
3290
+ # The composite SLI configuration for service-level SLOs that monitor
3291
+ # multiple operations of a service.
3292
+ # @return [Types::CompositeSliConfig]
3293
+ #
3156
3294
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelIndicatorMetricConfig AWS API Documentation
3157
3295
  #
3158
3296
  class ServiceLevelIndicatorMetricConfig < Struct.new(
@@ -3164,7 +3302,8 @@ module Aws::ApplicationSignals
3164
3302
  :period_seconds,
3165
3303
  :metric_source,
3166
3304
  :metric_data_queries,
3167
- :dependency_config)
3305
+ :dependency_config,
3306
+ :composite_sli_config)
3168
3307
  SENSITIVE = []
3169
3308
  include Aws::Structure
3170
3309
  end
@@ -3246,6 +3385,11 @@ module Aws::ApplicationSignals
3246
3385
  # * Canary
3247
3386
  # @return [String]
3248
3387
  #
3388
+ # @!attribute [rw] auto_investigation_enabled
3389
+ # Indicates whether DevOps Agent will automatically investigate this
3390
+ # SLO when it is breached
3391
+ # @return [Boolean]
3392
+ #
3249
3393
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelObjective AWS API Documentation
3250
3394
  #
3251
3395
  class ServiceLevelObjective < Struct.new(
@@ -3259,7 +3403,8 @@ module Aws::ApplicationSignals
3259
3403
  :evaluation_type,
3260
3404
  :goal,
3261
3405
  :burn_rate_configurations,
3262
- :metric_source_type)
3406
+ :metric_source_type,
3407
+ :auto_investigation_enabled)
3263
3408
  SENSITIVE = []
3264
3409
  include Aws::Structure
3265
3410
  end
@@ -3515,6 +3660,11 @@ module Aws::ApplicationSignals
3515
3660
  # Application Signals services.
3516
3661
  # @return [Types::MetricSource]
3517
3662
  #
3663
+ # @!attribute [rw] composite_sli_config
3664
+ # The composite SLI configuration for service-level SLOs that monitor
3665
+ # multiple operations of a service.
3666
+ # @return [Types::CompositeSliConfig]
3667
+ #
3518
3668
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelObjectiveSummary AWS API Documentation
3519
3669
  #
3520
3670
  class ServiceLevelObjectiveSummary < Struct.new(
@@ -3526,7 +3676,8 @@ module Aws::ApplicationSignals
3526
3676
  :created_time,
3527
3677
  :evaluation_type,
3528
3678
  :metric_source_type,
3529
- :metric_source)
3679
+ :metric_source,
3680
+ :composite_sli_config)
3530
3681
  SENSITIVE = []
3531
3682
  include Aws::Structure
3532
3683
  end
@@ -3867,6 +4018,11 @@ module Aws::ApplicationSignals
3867
4018
  # error budget, relative to the attainment goal of the SLO.
3868
4019
  # @return [Array<Types::BurnRateConfiguration>]
3869
4020
  #
4021
+ # @!attribute [rw] auto_investigation_enabled
4022
+ # Indicates whether DevOps Agent will automatically investigate this
4023
+ # SLO when it is breached
4024
+ # @return [Boolean]
4025
+ #
3870
4026
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/UpdateServiceLevelObjectiveInput AWS API Documentation
3871
4027
  #
3872
4028
  class UpdateServiceLevelObjectiveInput < Struct.new(
@@ -3875,7 +4031,8 @@ module Aws::ApplicationSignals
3875
4031
  :sli_config,
3876
4032
  :request_based_sli_config,
3877
4033
  :goal,
3878
- :burn_rate_configurations)
4034
+ :burn_rate_configurations,
4035
+ :auto_investigation_enabled)
3879
4036
  SENSITIVE = []
3880
4037
  include Aws::Structure
3881
4038
  end
@@ -55,7 +55,7 @@ module Aws::ApplicationSignals
55
55
  autoload :EndpointProvider, 'aws-sdk-applicationsignals/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-applicationsignals/endpoints'
57
57
 
58
- GEM_VERSION = '1.38.0'
58
+ GEM_VERSION = '1.40.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -176,10 +176,21 @@ module Aws
176
176
  dependency_config: {
177
177
  dependency_key_attributes: Hash[::String, ::String],
178
178
  dependency_operation_name: ::String
179
+ }?,
180
+ composite_sli_config: {
181
+ selection_config: {
182
+ type: ("EXPLICIT" | "PREFIX" | "REGEX"),
183
+ pattern: ::String?
184
+ },
185
+ components: Array[
186
+ {
187
+ operation_name: ::String?
188
+ },
189
+ ]?
179
190
  }?
180
191
  },
181
- metric_threshold: ::Float,
182
- comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")
192
+ metric_threshold: ::Float?,
193
+ comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")?
183
194
  },
184
195
  ?request_based_sli_config: {
185
196
  request_based_sli_metric_config: {
@@ -271,7 +282,18 @@ module Aws
271
282
  metric_source_key_attributes: Hash[::String, ::String],
272
283
  metric_source_attributes: Hash[::String, ::String]?
273
284
  }?,
274
- metric_name: ::String?
285
+ metric_name: ::String?,
286
+ composite_sli_config: {
287
+ selection_config: {
288
+ type: ("EXPLICIT" | "PREFIX" | "REGEX"),
289
+ pattern: ::String?
290
+ },
291
+ components: Array[
292
+ {
293
+ operation_name: ::String?
294
+ },
295
+ ]?
296
+ }?
275
297
  },
276
298
  metric_threshold: ::Float?,
277
299
  comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")?
@@ -301,7 +323,9 @@ module Aws
301
323
  {
302
324
  look_back_window_minutes: ::Integer
303
325
  },
304
- ]
326
+ ],
327
+ ?create_recommended_slo: bool,
328
+ ?auto_investigation_enabled: bool
305
329
  ) -> _CreateServiceLevelObjectiveResponseSuccess
306
330
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceLevelObjectiveResponseSuccess
307
331
 
@@ -663,10 +687,21 @@ module Aws
663
687
  dependency_config: {
664
688
  dependency_key_attributes: Hash[::String, ::String],
665
689
  dependency_operation_name: ::String
690
+ }?,
691
+ composite_sli_config: {
692
+ selection_config: {
693
+ type: ("EXPLICIT" | "PREFIX" | "REGEX"),
694
+ pattern: ::String?
695
+ },
696
+ components: Array[
697
+ {
698
+ operation_name: ::String?
699
+ },
700
+ ]?
666
701
  }?
667
702
  },
668
- metric_threshold: ::Float,
669
- comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")
703
+ metric_threshold: ::Float?,
704
+ comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")?
670
705
  },
671
706
  ?request_based_sli_config: {
672
707
  request_based_sli_metric_config: {
@@ -758,7 +793,18 @@ module Aws
758
793
  metric_source_key_attributes: Hash[::String, ::String],
759
794
  metric_source_attributes: Hash[::String, ::String]?
760
795
  }?,
761
- metric_name: ::String?
796
+ metric_name: ::String?,
797
+ composite_sli_config: {
798
+ selection_config: {
799
+ type: ("EXPLICIT" | "PREFIX" | "REGEX"),
800
+ pattern: ::String?
801
+ },
802
+ components: Array[
803
+ {
804
+ operation_name: ::String?
805
+ },
806
+ ]?
807
+ }?
762
808
  },
763
809
  metric_threshold: ::Float?,
764
810
  comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")?
@@ -782,7 +828,8 @@ module Aws
782
828
  {
783
829
  look_back_window_minutes: ::Integer
784
830
  },
785
- ]
831
+ ],
832
+ ?auto_investigation_enabled: bool
786
833
  ) -> _UpdateServiceLevelObjectiveResponseSuccess
787
834
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceLevelObjectiveResponseSuccess
788
835
  end
data/sig/types.rbs CHANGED
@@ -125,6 +125,23 @@ module Aws::ApplicationSignals
125
125
  SENSITIVE: []
126
126
  end
127
127
 
128
+ class CompositeSliComponent
129
+ attr_accessor operation_name: ::String
130
+ attr_accessor unknown: untyped
131
+ SENSITIVE: []
132
+
133
+ class OperationName < CompositeSliComponent
134
+ end
135
+ class Unknown < CompositeSliComponent
136
+ end
137
+ end
138
+
139
+ class CompositeSliConfig
140
+ attr_accessor selection_config: Types::SelectionConfig
141
+ attr_accessor components: ::Array[Types::CompositeSliComponent]
142
+ SENSITIVE: []
143
+ end
144
+
128
145
  class ConflictException
129
146
  attr_accessor message: ::String
130
147
  SENSITIVE: []
@@ -138,6 +155,8 @@ module Aws::ApplicationSignals
138
155
  attr_accessor goal: Types::Goal
139
156
  attr_accessor tags: ::Array[Types::Tag]
140
157
  attr_accessor burn_rate_configurations: ::Array[Types::BurnRateConfiguration]
158
+ attr_accessor create_recommended_slo: bool
159
+ attr_accessor auto_investigation_enabled: bool
141
160
  SENSITIVE: []
142
161
  end
143
162
 
@@ -540,6 +559,7 @@ module Aws::ApplicationSignals
540
559
  attr_accessor monitored_request_count_metric: Types::MonitoredRequestCountMetricDataQueries
541
560
  attr_accessor dependency_config: Types::DependencyConfig
542
561
  attr_accessor metric_source: Types::MetricSource
562
+ attr_accessor composite_sli_config: Types::CompositeSliConfig
543
563
  SENSITIVE: []
544
564
  end
545
565
 
@@ -552,6 +572,7 @@ module Aws::ApplicationSignals
552
572
  attr_accessor dependency_config: Types::DependencyConfig
553
573
  attr_accessor metric_source: Types::MetricSource
554
574
  attr_accessor metric_name: ::String
575
+ attr_accessor composite_sli_config: Types::CompositeSliConfig
555
576
  SENSITIVE: []
556
577
  end
557
578
 
@@ -568,6 +589,12 @@ module Aws::ApplicationSignals
568
589
  SENSITIVE: []
569
590
  end
570
591
 
592
+ class SelectionConfig
593
+ attr_accessor type: ("EXPLICIT" | "PREFIX" | "REGEX")
594
+ attr_accessor pattern: ::String
595
+ SENSITIVE: []
596
+ end
597
+
571
598
  class Service
572
599
  attr_accessor key_attributes: ::Hash[::String, ::String]
573
600
  attr_accessor attribute_maps: ::Array[::Hash[::String, ::String]]
@@ -630,6 +657,7 @@ module Aws::ApplicationSignals
630
657
  attr_accessor metric_data_queries: ::Array[Types::MetricDataQuery]
631
658
  attr_accessor dependency_config: Types::DependencyConfig
632
659
  attr_accessor metric_source: Types::MetricSource
660
+ attr_accessor composite_sli_config: Types::CompositeSliConfig
633
661
  SENSITIVE: []
634
662
  end
635
663
 
@@ -643,6 +671,7 @@ module Aws::ApplicationSignals
643
671
  attr_accessor metric_source: Types::MetricSource
644
672
  attr_accessor metric_data_queries: ::Array[Types::MetricDataQuery]
645
673
  attr_accessor dependency_config: Types::DependencyConfig
674
+ attr_accessor composite_sli_config: Types::CompositeSliConfig
646
675
  SENSITIVE: []
647
676
  end
648
677
 
@@ -658,6 +687,7 @@ module Aws::ApplicationSignals
658
687
  attr_accessor goal: Types::Goal
659
688
  attr_accessor burn_rate_configurations: ::Array[Types::BurnRateConfiguration]
660
689
  attr_accessor metric_source_type: ("ServiceOperation" | "CloudWatchMetric" | "ServiceDependency" | "AppMonitor" | "Canary" | "Service")
690
+ attr_accessor auto_investigation_enabled: bool
661
691
  SENSITIVE: []
662
692
  end
663
693
 
@@ -701,6 +731,7 @@ module Aws::ApplicationSignals
701
731
  attr_accessor evaluation_type: ("PeriodBased" | "RequestBased")
702
732
  attr_accessor metric_source_type: ("ServiceOperation" | "CloudWatchMetric" | "ServiceDependency" | "AppMonitor" | "Canary" | "Service")
703
733
  attr_accessor metric_source: Types::MetricSource
734
+ attr_accessor composite_sli_config: Types::CompositeSliConfig
704
735
  SENSITIVE: []
705
736
  end
706
737
 
@@ -779,6 +810,7 @@ module Aws::ApplicationSignals
779
810
  attr_accessor request_based_sli_config: Types::RequestBasedServiceLevelIndicatorConfig
780
811
  attr_accessor goal: Types::Goal
781
812
  attr_accessor burn_rate_configurations: ::Array[Types::BurnRateConfiguration]
813
+ attr_accessor auto_investigation_enabled: bool
782
814
  SENSITIVE: []
783
815
  end
784
816
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-applicationsignals
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services