aws-sdk-applicationsignals 1.39.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: 77b2704fcc28b6e18aee99f94720c30fa0dd341962ad17aa01df333866e7e991
4
- data.tar.gz: 8eba0e733064e8caa6548481ecb9a495e52a43573f62b1d579b2bcec05582a2a
3
+ metadata.gz: fd7f6b6d9d6cb3d9b7d3b3ad7e2b3b34a8437b52b33c7d864e8e56e12f6196d7
4
+ data.tar.gz: 2bc9687141975e968db8aa25bf47995c399c11252478184a0242f6f0ea082416
5
5
  SHA512:
6
- metadata.gz: 1dd7d6b5d64b3769f901514391c41f5ad8c597aac1a0f31a7fbdf2544ad882f793bbfe50ae829ebcecf2274c03ba3866927b7304bc96660b154dba18dc48e5f6
7
- data.tar.gz: 2e4837d7048dcd55e0d3cbb66aec49f86ac394a250cf31fcbb63a4e00380f733ddd6ad7fac7dd4a128dfc6d6c29eaed43fa6472f651221c378af13c82920d842
6
+ metadata.gz: 9a7843a13e707a78f45b19d3cf3c07060847035143ddc9244cb7dcd3e156d6bf73af0e22d637f8c86c48540d0c549d1c1e00c9ba963610b5a326e07592360f71
7
+ data.tar.gz: c897483f688c2a68f2c3a18310b8f4d85405d51b756d49012fa6d52b93bf6dd0cd1a8b73fe15676031024119a7dbf3f9898133eefecf39441ad2a3566caf6280
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.39.0 (2026-04-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.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"
@@ -847,6 +855,10 @@ module Aws::ApplicationSignals
847
855
  # This is supported for SLOs on a service, service operation, or a
848
856
  # dependency.
849
857
  #
858
+ # @option params [Boolean] :auto_investigation_enabled
859
+ # Indicates whether DevOps Agent will automatically investigate this SLO
860
+ # when it is breached
861
+ #
850
862
  # @return [Types::CreateServiceLevelObjectiveOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
851
863
  #
852
864
  # * {Types::CreateServiceLevelObjectiveOutput#slo #slo} => Types::ServiceLevelObjective
@@ -905,6 +917,17 @@ module Aws::ApplicationSignals
905
917
  # },
906
918
  # dependency_operation_name: "OperationName", # required
907
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
+ # },
908
931
  # },
909
932
  # metric_threshold: 1.0,
910
933
  # comparison_operator: "GreaterThanOrEqualTo", # accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
@@ -1008,6 +1031,17 @@ module Aws::ApplicationSignals
1008
1031
  # },
1009
1032
  # },
1010
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
+ # },
1011
1045
  # },
1012
1046
  # metric_threshold: 1.0,
1013
1047
  # comparison_operator: "GreaterThanOrEqualTo", # accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
@@ -1039,6 +1073,7 @@ module Aws::ApplicationSignals
1039
1073
  # },
1040
1074
  # ],
1041
1075
  # create_recommended_slo: false,
1076
+ # auto_investigation_enabled: false,
1042
1077
  # })
1043
1078
  #
1044
1079
  # @example Response structure
@@ -1074,6 +1109,10 @@ module Aws::ApplicationSignals
1074
1109
  # resp.slo.sli.sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
1075
1110
  # resp.slo.sli.sli_metric.metric_source.metric_source_attributes #=> Hash
1076
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
1077
1116
  # resp.slo.sli.metric_threshold #=> Float
1078
1117
  # resp.slo.sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1079
1118
  # resp.slo.request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -1132,6 +1171,10 @@ module Aws::ApplicationSignals
1132
1171
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
1133
1172
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes #=> Hash
1134
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
1135
1178
  # resp.slo.request_based_sli.metric_threshold #=> Float
1136
1179
  # resp.slo.request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1137
1180
  # resp.slo.evaluation_type #=> String, one of "PeriodBased", "RequestBased"
@@ -1145,6 +1188,7 @@ module Aws::ApplicationSignals
1145
1188
  # resp.slo.burn_rate_configurations #=> Array
1146
1189
  # resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
1147
1190
  # resp.slo.metric_source_type #=> String, one of "ServiceOperation", "CloudWatchMetric", "ServiceDependency", "AppMonitor", "Canary", "Service"
1191
+ # resp.slo.auto_investigation_enabled #=> Boolean
1148
1192
  #
1149
1193
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/CreateServiceLevelObjective AWS API Documentation
1150
1194
  #
@@ -1340,6 +1384,10 @@ module Aws::ApplicationSignals
1340
1384
  # resp.slo.sli.sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
1341
1385
  # resp.slo.sli.sli_metric.metric_source.metric_source_attributes #=> Hash
1342
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
1343
1391
  # resp.slo.sli.metric_threshold #=> Float
1344
1392
  # resp.slo.sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1345
1393
  # resp.slo.request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -1398,6 +1446,10 @@ module Aws::ApplicationSignals
1398
1446
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
1399
1447
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes #=> Hash
1400
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
1401
1453
  # resp.slo.request_based_sli.metric_threshold #=> Float
1402
1454
  # resp.slo.request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1403
1455
  # resp.slo.evaluation_type #=> String, one of "PeriodBased", "RequestBased"
@@ -1411,6 +1463,7 @@ module Aws::ApplicationSignals
1411
1463
  # resp.slo.burn_rate_configurations #=> Array
1412
1464
  # resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
1413
1465
  # resp.slo.metric_source_type #=> String, one of "ServiceOperation", "CloudWatchMetric", "ServiceDependency", "AppMonitor", "Canary", "Service"
1466
+ # resp.slo.auto_investigation_enabled #=> Boolean
1414
1467
  #
1415
1468
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/GetServiceLevelObjective AWS API Documentation
1416
1469
  #
@@ -2140,6 +2193,10 @@ module Aws::ApplicationSignals
2140
2193
  # resp.slo_summaries[0].metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
2141
2194
  # resp.slo_summaries[0].metric_source.metric_source_attributes #=> Hash
2142
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
2143
2200
  # resp.next_token #=> String
2144
2201
  #
2145
2202
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListServiceLevelObjectives AWS API Documentation
@@ -2688,6 +2745,10 @@ module Aws::ApplicationSignals
2688
2745
  # a metric that indicates how fast the service is consuming the error
2689
2746
  # budget, relative to the attainment goal of the SLO.
2690
2747
  #
2748
+ # @option params [Boolean] :auto_investigation_enabled
2749
+ # Indicates whether DevOps Agent will automatically investigate this SLO
2750
+ # when it is breached
2751
+ #
2691
2752
  # @return [Types::UpdateServiceLevelObjectiveOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2692
2753
  #
2693
2754
  # * {Types::UpdateServiceLevelObjectiveOutput#slo #slo} => Types::ServiceLevelObjective
@@ -2746,6 +2807,17 @@ module Aws::ApplicationSignals
2746
2807
  # },
2747
2808
  # dependency_operation_name: "OperationName", # required
2748
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
+ # },
2749
2821
  # },
2750
2822
  # metric_threshold: 1.0,
2751
2823
  # comparison_operator: "GreaterThanOrEqualTo", # accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
@@ -2849,6 +2921,17 @@ module Aws::ApplicationSignals
2849
2921
  # },
2850
2922
  # },
2851
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
+ # },
2852
2935
  # },
2853
2936
  # metric_threshold: 1.0,
2854
2937
  # comparison_operator: "GreaterThanOrEqualTo", # accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
@@ -2873,6 +2956,7 @@ module Aws::ApplicationSignals
2873
2956
  # look_back_window_minutes: 1, # required
2874
2957
  # },
2875
2958
  # ],
2959
+ # auto_investigation_enabled: false,
2876
2960
  # })
2877
2961
  #
2878
2962
  # @example Response structure
@@ -2908,6 +2992,10 @@ module Aws::ApplicationSignals
2908
2992
  # resp.slo.sli.sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
2909
2993
  # resp.slo.sli.sli_metric.metric_source.metric_source_attributes #=> Hash
2910
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
2911
2999
  # resp.slo.sli.metric_threshold #=> Float
2912
3000
  # resp.slo.sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
2913
3001
  # resp.slo.request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -2966,6 +3054,10 @@ module Aws::ApplicationSignals
2966
3054
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_key_attributes["KeyAttributeName"] #=> String
2967
3055
  # resp.slo.request_based_sli.request_based_sli_metric.metric_source.metric_source_attributes #=> Hash
2968
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
2969
3061
  # resp.slo.request_based_sli.metric_threshold #=> Float
2970
3062
  # resp.slo.request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
2971
3063
  # resp.slo.evaluation_type #=> String, one of "PeriodBased", "RequestBased"
@@ -2979,6 +3071,7 @@ module Aws::ApplicationSignals
2979
3071
  # resp.slo.burn_rate_configurations #=> Array
2980
3072
  # resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
2981
3073
  # resp.slo.metric_source_type #=> String, one of "ServiceOperation", "CloudWatchMetric", "ServiceDependency", "AppMonitor", "Canary", "Service"
3074
+ # resp.slo.auto_investigation_enabled #=> Boolean
2982
3075
  #
2983
3076
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/UpdateServiceLevelObjective AWS API Documentation
2984
3077
  #
@@ -3007,7 +3100,7 @@ module Aws::ApplicationSignals
3007
3100
  tracer: tracer
3008
3101
  )
3009
3102
  context[:gem_name] = 'aws-sdk-applicationsignals'
3010
- context[:gem_version] = '1.39.0'
3103
+ context[:gem_version] = '1.40.0'
3011
3104
  Seahorse::Client::Request.new(handlers, context)
3012
3105
  end
3013
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
 
@@ -354,6 +372,7 @@ module Aws::ApplicationSignals
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"))
356
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"))
357
376
  CreateServiceLevelObjectiveInput.struct_class = Types::CreateServiceLevelObjectiveInput
358
377
 
359
378
  CreateServiceLevelObjectiveOutput.add_member(:slo, Shapes::ShapeRef.new(shape: ServiceLevelObjective, required: true, location_name: "Slo"))
@@ -669,6 +688,7 @@ module Aws::ApplicationSignals
669
688
  RequestBasedServiceLevelIndicatorMetric.add_member(:monitored_request_count_metric, Shapes::ShapeRef.new(shape: MonitoredRequestCountMetricDataQueries, required: true, location_name: "MonitoredRequestCountMetric"))
670
689
  RequestBasedServiceLevelIndicatorMetric.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
671
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"))
672
692
  RequestBasedServiceLevelIndicatorMetric.struct_class = Types::RequestBasedServiceLevelIndicatorMetric
673
693
 
674
694
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "KeyAttributes"))
@@ -679,6 +699,7 @@ module Aws::ApplicationSignals
679
699
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
680
700
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:metric_source, Shapes::ShapeRef.new(shape: MetricSource, location_name: "MetricSource"))
681
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"))
682
703
  RequestBasedServiceLevelIndicatorMetricConfig.struct_class = Types::RequestBasedServiceLevelIndicatorMetricConfig
683
704
 
684
705
  ResourceNotFoundException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "ResourceType"))
@@ -690,6 +711,10 @@ module Aws::ApplicationSignals
690
711
  RollingInterval.add_member(:duration, Shapes::ShapeRef.new(shape: RollingIntervalDuration, required: true, location_name: "Duration"))
691
712
  RollingInterval.struct_class = Types::RollingInterval
692
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
+
693
718
  Service.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, required: true, location_name: "KeyAttributes"))
694
719
  Service.add_member(:attribute_maps, Shapes::ShapeRef.new(shape: AttributeMaps, location_name: "AttributeMaps"))
695
720
  Service.add_member(:service_groups, Shapes::ShapeRef.new(shape: ServiceGroups, location_name: "ServiceGroups"))
@@ -743,6 +768,7 @@ module Aws::ApplicationSignals
743
768
  ServiceLevelIndicatorMetric.add_member(:metric_data_queries, Shapes::ShapeRef.new(shape: MetricDataQueries, required: true, location_name: "MetricDataQueries"))
744
769
  ServiceLevelIndicatorMetric.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
745
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"))
746
772
  ServiceLevelIndicatorMetric.struct_class = Types::ServiceLevelIndicatorMetric
747
773
 
748
774
  ServiceLevelIndicatorMetricConfig.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "KeyAttributes"))
@@ -754,6 +780,7 @@ module Aws::ApplicationSignals
754
780
  ServiceLevelIndicatorMetricConfig.add_member(:metric_source, Shapes::ShapeRef.new(shape: MetricSource, location_name: "MetricSource"))
755
781
  ServiceLevelIndicatorMetricConfig.add_member(:metric_data_queries, Shapes::ShapeRef.new(shape: MetricDataQueries, location_name: "MetricDataQueries"))
756
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"))
757
784
  ServiceLevelIndicatorMetricConfig.struct_class = Types::ServiceLevelIndicatorMetricConfig
758
785
 
759
786
  ServiceLevelObjective.add_member(:arn, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveArn, required: true, location_name: "Arn"))
@@ -767,6 +794,7 @@ module Aws::ApplicationSignals
767
794
  ServiceLevelObjective.add_member(:goal, Shapes::ShapeRef.new(shape: Goal, required: true, location_name: "Goal"))
768
795
  ServiceLevelObjective.add_member(:burn_rate_configurations, Shapes::ShapeRef.new(shape: BurnRateConfigurations, location_name: "BurnRateConfigurations"))
769
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"))
770
798
  ServiceLevelObjective.struct_class = Types::ServiceLevelObjective
771
799
 
772
800
  ServiceLevelObjectiveBudgetReport.add_member(:arn, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveArn, required: true, location_name: "Arn"))
@@ -810,6 +838,7 @@ module Aws::ApplicationSignals
810
838
  ServiceLevelObjectiveSummary.add_member(:evaluation_type, Shapes::ShapeRef.new(shape: EvaluationType, location_name: "EvaluationType"))
811
839
  ServiceLevelObjectiveSummary.add_member(:metric_source_type, Shapes::ShapeRef.new(shape: MetricSourceType, location_name: "MetricSourceType"))
812
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"))
813
842
  ServiceLevelObjectiveSummary.struct_class = Types::ServiceLevelObjectiveSummary
814
843
 
815
844
  ServiceOperation.add_member(:name, Shapes::ShapeRef.new(shape: OperationName, required: true, location_name: "Name"))
@@ -874,6 +903,7 @@ module Aws::ApplicationSignals
874
903
  UpdateServiceLevelObjectiveInput.add_member(:request_based_sli_config, Shapes::ShapeRef.new(shape: RequestBasedServiceLevelIndicatorConfig, location_name: "RequestBasedSliConfig"))
875
904
  UpdateServiceLevelObjectiveInput.add_member(:goal, Shapes::ShapeRef.new(shape: Goal, location_name: "Goal"))
876
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"))
877
907
  UpdateServiceLevelObjectiveInput.struct_class = Types::UpdateServiceLevelObjectiveInput
878
908
 
879
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
@@ -542,6 +594,11 @@ module Aws::ApplicationSignals
542
594
  # dependency.
543
595
  # @return [Boolean]
544
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
+ #
545
602
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/CreateServiceLevelObjectiveInput AWS API Documentation
546
603
  #
547
604
  class CreateServiceLevelObjectiveInput < Struct.new(
@@ -552,7 +609,8 @@ module Aws::ApplicationSignals
552
609
  :goal,
553
610
  :tags,
554
611
  :burn_rate_configurations,
555
- :create_recommended_slo)
612
+ :create_recommended_slo,
613
+ :auto_investigation_enabled)
556
614
  SENSITIVE = []
557
615
  include Aws::Structure
558
616
  end
@@ -2548,6 +2606,11 @@ module Aws::ApplicationSignals
2548
2606
  # Application Signals services.
2549
2607
  # @return [Types::MetricSource]
2550
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
+ #
2551
2614
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/RequestBasedServiceLevelIndicatorMetric AWS API Documentation
2552
2615
  #
2553
2616
  class RequestBasedServiceLevelIndicatorMetric < Struct.new(
@@ -2557,7 +2620,8 @@ module Aws::ApplicationSignals
2557
2620
  :total_request_count_metric,
2558
2621
  :monitored_request_count_metric,
2559
2622
  :dependency_config,
2560
- :metric_source)
2623
+ :metric_source,
2624
+ :composite_sli_config)
2561
2625
  SENSITIVE = []
2562
2626
  include Aws::Structure
2563
2627
  end
@@ -2633,6 +2697,11 @@ module Aws::ApplicationSignals
2633
2697
  # Signals services.
2634
2698
  # @return [String]
2635
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
+ #
2636
2705
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/RequestBasedServiceLevelIndicatorMetricConfig AWS API Documentation
2637
2706
  #
2638
2707
  class RequestBasedServiceLevelIndicatorMetricConfig < Struct.new(
@@ -2643,7 +2712,8 @@ module Aws::ApplicationSignals
2643
2712
  :monitored_request_count_metric,
2644
2713
  :dependency_config,
2645
2714
  :metric_source,
2646
- :metric_name)
2715
+ :metric_name,
2716
+ :composite_sli_config)
2647
2717
  SENSITIVE = []
2648
2718
  include Aws::Structure
2649
2719
  end
@@ -2693,6 +2763,41 @@ module Aws::ApplicationSignals
2693
2763
  include Aws::Structure
2694
2764
  end
2695
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
+
2696
2801
  # This structure contains information about one of your services that
2697
2802
  # was discovered by Application Signals.
2698
2803
  #
@@ -3084,6 +3189,11 @@ module Aws::ApplicationSignals
3084
3189
  # Application Signals services.
3085
3190
  # @return [Types::MetricSource]
3086
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
+ #
3087
3197
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelIndicatorMetric AWS API Documentation
3088
3198
  #
3089
3199
  class ServiceLevelIndicatorMetric < Struct.new(
@@ -3092,7 +3202,8 @@ module Aws::ApplicationSignals
3092
3202
  :metric_type,
3093
3203
  :metric_data_queries,
3094
3204
  :dependency_config,
3095
- :metric_source)
3205
+ :metric_source,
3206
+ :composite_sli_config)
3096
3207
  SENSITIVE = []
3097
3208
  include Aws::Structure
3098
3209
  end
@@ -3175,6 +3286,11 @@ module Aws::ApplicationSignals
3175
3286
  # `DependencyOperationName`.
3176
3287
  # @return [Types::DependencyConfig]
3177
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
+ #
3178
3294
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelIndicatorMetricConfig AWS API Documentation
3179
3295
  #
3180
3296
  class ServiceLevelIndicatorMetricConfig < Struct.new(
@@ -3186,7 +3302,8 @@ module Aws::ApplicationSignals
3186
3302
  :period_seconds,
3187
3303
  :metric_source,
3188
3304
  :metric_data_queries,
3189
- :dependency_config)
3305
+ :dependency_config,
3306
+ :composite_sli_config)
3190
3307
  SENSITIVE = []
3191
3308
  include Aws::Structure
3192
3309
  end
@@ -3268,6 +3385,11 @@ module Aws::ApplicationSignals
3268
3385
  # * Canary
3269
3386
  # @return [String]
3270
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
+ #
3271
3393
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelObjective AWS API Documentation
3272
3394
  #
3273
3395
  class ServiceLevelObjective < Struct.new(
@@ -3281,7 +3403,8 @@ module Aws::ApplicationSignals
3281
3403
  :evaluation_type,
3282
3404
  :goal,
3283
3405
  :burn_rate_configurations,
3284
- :metric_source_type)
3406
+ :metric_source_type,
3407
+ :auto_investigation_enabled)
3285
3408
  SENSITIVE = []
3286
3409
  include Aws::Structure
3287
3410
  end
@@ -3537,6 +3660,11 @@ module Aws::ApplicationSignals
3537
3660
  # Application Signals services.
3538
3661
  # @return [Types::MetricSource]
3539
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
+ #
3540
3668
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelObjectiveSummary AWS API Documentation
3541
3669
  #
3542
3670
  class ServiceLevelObjectiveSummary < Struct.new(
@@ -3548,7 +3676,8 @@ module Aws::ApplicationSignals
3548
3676
  :created_time,
3549
3677
  :evaluation_type,
3550
3678
  :metric_source_type,
3551
- :metric_source)
3679
+ :metric_source,
3680
+ :composite_sli_config)
3552
3681
  SENSITIVE = []
3553
3682
  include Aws::Structure
3554
3683
  end
@@ -3889,6 +4018,11 @@ module Aws::ApplicationSignals
3889
4018
  # error budget, relative to the attainment goal of the SLO.
3890
4019
  # @return [Array<Types::BurnRateConfiguration>]
3891
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
+ #
3892
4026
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/UpdateServiceLevelObjectiveInput AWS API Documentation
3893
4027
  #
3894
4028
  class UpdateServiceLevelObjectiveInput < Struct.new(
@@ -3897,7 +4031,8 @@ module Aws::ApplicationSignals
3897
4031
  :sli_config,
3898
4032
  :request_based_sli_config,
3899
4033
  :goal,
3900
- :burn_rate_configurations)
4034
+ :burn_rate_configurations,
4035
+ :auto_investigation_enabled)
3901
4036
  SENSITIVE = []
3902
4037
  include Aws::Structure
3903
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.39.0'
58
+ GEM_VERSION = '1.40.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -176,6 +176,17 @@ 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
192
  metric_threshold: ::Float?,
@@ -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")?
@@ -302,7 +324,8 @@ module Aws
302
324
  look_back_window_minutes: ::Integer
303
325
  },
304
326
  ],
305
- ?create_recommended_slo: bool
327
+ ?create_recommended_slo: bool,
328
+ ?auto_investigation_enabled: bool
306
329
  ) -> _CreateServiceLevelObjectiveResponseSuccess
307
330
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceLevelObjectiveResponseSuccess
308
331
 
@@ -664,6 +687,17 @@ module Aws
664
687
  dependency_config: {
665
688
  dependency_key_attributes: Hash[::String, ::String],
666
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
+ ]?
667
701
  }?
668
702
  },
669
703
  metric_threshold: ::Float?,
@@ -759,7 +793,18 @@ module Aws
759
793
  metric_source_key_attributes: Hash[::String, ::String],
760
794
  metric_source_attributes: Hash[::String, ::String]?
761
795
  }?,
762
- 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
+ }?
763
808
  },
764
809
  metric_threshold: ::Float?,
765
810
  comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")?
@@ -783,7 +828,8 @@ module Aws
783
828
  {
784
829
  look_back_window_minutes: ::Integer
785
830
  },
786
- ]
831
+ ],
832
+ ?auto_investigation_enabled: bool
787
833
  ) -> _UpdateServiceLevelObjectiveResponseSuccess
788
834
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceLevelObjectiveResponseSuccess
789
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: []
@@ -139,6 +156,7 @@ module Aws::ApplicationSignals
139
156
  attr_accessor tags: ::Array[Types::Tag]
140
157
  attr_accessor burn_rate_configurations: ::Array[Types::BurnRateConfiguration]
141
158
  attr_accessor create_recommended_slo: bool
159
+ attr_accessor auto_investigation_enabled: bool
142
160
  SENSITIVE: []
143
161
  end
144
162
 
@@ -541,6 +559,7 @@ module Aws::ApplicationSignals
541
559
  attr_accessor monitored_request_count_metric: Types::MonitoredRequestCountMetricDataQueries
542
560
  attr_accessor dependency_config: Types::DependencyConfig
543
561
  attr_accessor metric_source: Types::MetricSource
562
+ attr_accessor composite_sli_config: Types::CompositeSliConfig
544
563
  SENSITIVE: []
545
564
  end
546
565
 
@@ -553,6 +572,7 @@ module Aws::ApplicationSignals
553
572
  attr_accessor dependency_config: Types::DependencyConfig
554
573
  attr_accessor metric_source: Types::MetricSource
555
574
  attr_accessor metric_name: ::String
575
+ attr_accessor composite_sli_config: Types::CompositeSliConfig
556
576
  SENSITIVE: []
557
577
  end
558
578
 
@@ -569,6 +589,12 @@ module Aws::ApplicationSignals
569
589
  SENSITIVE: []
570
590
  end
571
591
 
592
+ class SelectionConfig
593
+ attr_accessor type: ("EXPLICIT" | "PREFIX" | "REGEX")
594
+ attr_accessor pattern: ::String
595
+ SENSITIVE: []
596
+ end
597
+
572
598
  class Service
573
599
  attr_accessor key_attributes: ::Hash[::String, ::String]
574
600
  attr_accessor attribute_maps: ::Array[::Hash[::String, ::String]]
@@ -631,6 +657,7 @@ module Aws::ApplicationSignals
631
657
  attr_accessor metric_data_queries: ::Array[Types::MetricDataQuery]
632
658
  attr_accessor dependency_config: Types::DependencyConfig
633
659
  attr_accessor metric_source: Types::MetricSource
660
+ attr_accessor composite_sli_config: Types::CompositeSliConfig
634
661
  SENSITIVE: []
635
662
  end
636
663
 
@@ -644,6 +671,7 @@ module Aws::ApplicationSignals
644
671
  attr_accessor metric_source: Types::MetricSource
645
672
  attr_accessor metric_data_queries: ::Array[Types::MetricDataQuery]
646
673
  attr_accessor dependency_config: Types::DependencyConfig
674
+ attr_accessor composite_sli_config: Types::CompositeSliConfig
647
675
  SENSITIVE: []
648
676
  end
649
677
 
@@ -659,6 +687,7 @@ module Aws::ApplicationSignals
659
687
  attr_accessor goal: Types::Goal
660
688
  attr_accessor burn_rate_configurations: ::Array[Types::BurnRateConfiguration]
661
689
  attr_accessor metric_source_type: ("ServiceOperation" | "CloudWatchMetric" | "ServiceDependency" | "AppMonitor" | "Canary" | "Service")
690
+ attr_accessor auto_investigation_enabled: bool
662
691
  SENSITIVE: []
663
692
  end
664
693
 
@@ -702,6 +731,7 @@ module Aws::ApplicationSignals
702
731
  attr_accessor evaluation_type: ("PeriodBased" | "RequestBased")
703
732
  attr_accessor metric_source_type: ("ServiceOperation" | "CloudWatchMetric" | "ServiceDependency" | "AppMonitor" | "Canary" | "Service")
704
733
  attr_accessor metric_source: Types::MetricSource
734
+ attr_accessor composite_sli_config: Types::CompositeSliConfig
705
735
  SENSITIVE: []
706
736
  end
707
737
 
@@ -780,6 +810,7 @@ module Aws::ApplicationSignals
780
810
  attr_accessor request_based_sli_config: Types::RequestBasedServiceLevelIndicatorConfig
781
811
  attr_accessor goal: Types::Goal
782
812
  attr_accessor burn_rate_configurations: ::Array[Types::BurnRateConfiguration]
813
+ attr_accessor auto_investigation_enabled: bool
783
814
  SENSITIVE: []
784
815
  end
785
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.39.0
4
+ version: 1.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services