aws-sdk-applicationsignals 1.18.0 → 1.19.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: 5a6d790c099c460ea40c1b76b81e13a0e0f32b87566b5b67aa76fc543d2845d3
4
- data.tar.gz: 4709f767ca3f2b5179fd12566461154c64e2c27bfe33cebb4da45364ad887f65
3
+ metadata.gz: 424d2d3bf828c86ae5466a81df897bc0c37ca987cc5d57f1a2331f8e22bf059f
4
+ data.tar.gz: 1743ae5d13cf1a7d9d007abb86885e35dd22397cf74e77576ace4c4dd88e365c
5
5
  SHA512:
6
- metadata.gz: 5fa3b65ce2693611ee7b03a666d1acb7d196153b11617f249ca9a8490e17d140d365b116b91e06cc8c0ba20b2861a17342ce45be87753a28f4ce54402fdd157b
7
- data.tar.gz: dbd54795a1c4d3f595be0b54cc3a786ecac4c71efb41d881d0d6fafd726737e45dae33de9942364a8f5229119375b7253cf72cd72f4f7084f440e20ff81ac2f8
6
+ metadata.gz: a7999d54ca08509f6bf48352dee27f4d0c9fe29a0ffbf3eb0e9105a4b301144b20e6cdc4576036cb93a0052196f2f725e2487e1cad79986c050073ccbb22ba7c
7
+ data.tar.gz: c66ffdb883c22016738ea52f5e03e850cab0eb18ac6af5e9acd779fed4d8fabc74ab8a68e06d815331a9521fc920bc9ca8288cac181e14ac38d222abcd08654d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2025-04-02)
5
+ ------------------
6
+
7
+ * Feature - Application Signals now supports creating Service Level Objectives on service dependencies. Users can now create or update SLOs on discovered service dependencies to monitor their standard application metrics.
8
+
4
9
  1.18.0 (2025-03-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.19.0
@@ -542,6 +542,9 @@ module Aws::ApplicationSignals
542
542
  # resp.reports[0].sli.sli_metric.metric_data_queries[0].return_data #=> Boolean
543
543
  # resp.reports[0].sli.sli_metric.metric_data_queries[0].period #=> Integer
544
544
  # resp.reports[0].sli.sli_metric.metric_data_queries[0].account_id #=> String
545
+ # resp.reports[0].sli.sli_metric.dependency_config.dependency_key_attributes #=> Hash
546
+ # resp.reports[0].sli.sli_metric.dependency_config.dependency_key_attributes["KeyAttributeName"] #=> String
547
+ # resp.reports[0].sli.sli_metric.dependency_config.dependency_operation_name #=> String
545
548
  # resp.reports[0].sli.metric_threshold #=> Float
546
549
  # resp.reports[0].sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
547
550
  # resp.reports[0].request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -593,6 +596,9 @@ module Aws::ApplicationSignals
593
596
  # resp.reports[0].request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].return_data #=> Boolean
594
597
  # resp.reports[0].request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].period #=> Integer
595
598
  # resp.reports[0].request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].account_id #=> String
599
+ # resp.reports[0].request_based_sli.request_based_sli_metric.dependency_config.dependency_key_attributes #=> Hash
600
+ # resp.reports[0].request_based_sli.request_based_sli_metric.dependency_config.dependency_key_attributes["KeyAttributeName"] #=> String
601
+ # resp.reports[0].request_based_sli.request_based_sli_metric.dependency_config.dependency_operation_name #=> String
596
602
  # resp.reports[0].request_based_sli.metric_threshold #=> Float
597
603
  # resp.reports[0].request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
598
604
  # resp.reports[0].goal.interval.rolling_interval.duration_unit #=> String, one of "MINUTE", "HOUR", "DAY", "MONTH"
@@ -861,6 +867,12 @@ module Aws::ApplicationSignals
861
867
  # account_id: "AccountId",
862
868
  # },
863
869
  # ],
870
+ # dependency_config: {
871
+ # dependency_key_attributes: { # required
872
+ # "KeyAttributeName" => "KeyAttributeValue",
873
+ # },
874
+ # dependency_operation_name: "OperationName", # required
875
+ # },
864
876
  # },
865
877
  # metric_threshold: 1.0, # required
866
878
  # comparison_operator: "GreaterThanOrEqualTo", # required, accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
@@ -949,6 +961,12 @@ module Aws::ApplicationSignals
949
961
  # },
950
962
  # ],
951
963
  # },
964
+ # dependency_config: {
965
+ # dependency_key_attributes: { # required
966
+ # "KeyAttributeName" => "KeyAttributeValue",
967
+ # },
968
+ # dependency_operation_name: "OperationName", # required
969
+ # },
952
970
  # },
953
971
  # metric_threshold: 1.0,
954
972
  # comparison_operator: "GreaterThanOrEqualTo", # accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
@@ -1007,6 +1025,9 @@ module Aws::ApplicationSignals
1007
1025
  # resp.slo.sli.sli_metric.metric_data_queries[0].return_data #=> Boolean
1008
1026
  # resp.slo.sli.sli_metric.metric_data_queries[0].period #=> Integer
1009
1027
  # resp.slo.sli.sli_metric.metric_data_queries[0].account_id #=> String
1028
+ # resp.slo.sli.sli_metric.dependency_config.dependency_key_attributes #=> Hash
1029
+ # resp.slo.sli.sli_metric.dependency_config.dependency_key_attributes["KeyAttributeName"] #=> String
1030
+ # resp.slo.sli.sli_metric.dependency_config.dependency_operation_name #=> String
1010
1031
  # resp.slo.sli.metric_threshold #=> Float
1011
1032
  # resp.slo.sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1012
1033
  # resp.slo.request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -1058,6 +1079,9 @@ module Aws::ApplicationSignals
1058
1079
  # resp.slo.request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].return_data #=> Boolean
1059
1080
  # resp.slo.request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].period #=> Integer
1060
1081
  # resp.slo.request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].account_id #=> String
1082
+ # resp.slo.request_based_sli.request_based_sli_metric.dependency_config.dependency_key_attributes #=> Hash
1083
+ # resp.slo.request_based_sli.request_based_sli_metric.dependency_config.dependency_key_attributes["KeyAttributeName"] #=> String
1084
+ # resp.slo.request_based_sli.request_based_sli_metric.dependency_config.dependency_operation_name #=> String
1061
1085
  # resp.slo.request_based_sli.metric_threshold #=> Float
1062
1086
  # resp.slo.request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1063
1087
  # resp.slo.evaluation_type #=> String, one of "PeriodBased", "RequestBased"
@@ -1070,6 +1094,7 @@ module Aws::ApplicationSignals
1070
1094
  # resp.slo.goal.warning_threshold #=> Float
1071
1095
  # resp.slo.burn_rate_configurations #=> Array
1072
1096
  # resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
1097
+ # resp.slo.metric_source_type #=> String, one of "ServiceOperation", "CloudWatchMetric", "ServiceDependency"
1073
1098
  #
1074
1099
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/CreateServiceLevelObjective AWS API Documentation
1075
1100
  #
@@ -1239,6 +1264,9 @@ module Aws::ApplicationSignals
1239
1264
  # resp.slo.sli.sli_metric.metric_data_queries[0].return_data #=> Boolean
1240
1265
  # resp.slo.sli.sli_metric.metric_data_queries[0].period #=> Integer
1241
1266
  # resp.slo.sli.sli_metric.metric_data_queries[0].account_id #=> String
1267
+ # resp.slo.sli.sli_metric.dependency_config.dependency_key_attributes #=> Hash
1268
+ # resp.slo.sli.sli_metric.dependency_config.dependency_key_attributes["KeyAttributeName"] #=> String
1269
+ # resp.slo.sli.sli_metric.dependency_config.dependency_operation_name #=> String
1242
1270
  # resp.slo.sli.metric_threshold #=> Float
1243
1271
  # resp.slo.sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1244
1272
  # resp.slo.request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -1290,6 +1318,9 @@ module Aws::ApplicationSignals
1290
1318
  # resp.slo.request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].return_data #=> Boolean
1291
1319
  # resp.slo.request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].period #=> Integer
1292
1320
  # resp.slo.request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].account_id #=> String
1321
+ # resp.slo.request_based_sli.request_based_sli_metric.dependency_config.dependency_key_attributes #=> Hash
1322
+ # resp.slo.request_based_sli.request_based_sli_metric.dependency_config.dependency_key_attributes["KeyAttributeName"] #=> String
1323
+ # resp.slo.request_based_sli.request_based_sli_metric.dependency_config.dependency_operation_name #=> String
1293
1324
  # resp.slo.request_based_sli.metric_threshold #=> Float
1294
1325
  # resp.slo.request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
1295
1326
  # resp.slo.evaluation_type #=> String, one of "PeriodBased", "RequestBased"
@@ -1302,6 +1333,7 @@ module Aws::ApplicationSignals
1302
1333
  # resp.slo.goal.warning_threshold #=> Float
1303
1334
  # resp.slo.burn_rate_configurations #=> Array
1304
1335
  # resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
1336
+ # resp.slo.metric_source_type #=> String, one of "ServiceOperation", "CloudWatchMetric", "ServiceDependency"
1305
1337
  #
1306
1338
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/GetServiceLevelObjective AWS API Documentation
1307
1339
  #
@@ -1588,6 +1620,10 @@ module Aws::ApplicationSignals
1588
1620
  # @option params [String] :operation_name
1589
1621
  # The name of the operation that this SLO is associated with.
1590
1622
  #
1623
+ # @option params [Types::DependencyConfig] :dependency_config
1624
+ # Identifies the dependency using the `DependencyKeyAttributes` and
1625
+ # `DependencyOperationName`.
1626
+ #
1591
1627
  # @option params [Integer] :max_results
1592
1628
  # The maximum number of results to return in one operation. If you omit
1593
1629
  # this parameter, the default of 50 is used.
@@ -1596,6 +1632,16 @@ module Aws::ApplicationSignals
1596
1632
  # Include this value, if it was returned by the previous operation, to
1597
1633
  # get the next set of service level objectives.
1598
1634
  #
1635
+ # @option params [Array<String>] :metric_source_types
1636
+ # Use this optional field to only include SLOs with the specified metric
1637
+ # source types in the output. Supported types are:
1638
+ #
1639
+ # * Service operation
1640
+ #
1641
+ # * Service dependency
1642
+ #
1643
+ # * CloudWatch metric
1644
+ #
1599
1645
  # @option params [Boolean] :include_linked_accounts
1600
1646
  # If you are using this operation in a monitoring account, specify
1601
1647
  # `true` to include SLO from source accounts in the returned data.
@@ -1622,8 +1668,15 @@ module Aws::ApplicationSignals
1622
1668
  # "KeyAttributeName" => "KeyAttributeValue",
1623
1669
  # },
1624
1670
  # operation_name: "OperationName",
1671
+ # dependency_config: {
1672
+ # dependency_key_attributes: { # required
1673
+ # "KeyAttributeName" => "KeyAttributeValue",
1674
+ # },
1675
+ # dependency_operation_name: "OperationName", # required
1676
+ # },
1625
1677
  # max_results: 1,
1626
1678
  # next_token: "NextToken",
1679
+ # metric_source_types: ["ServiceOperation"], # accepts ServiceOperation, CloudWatchMetric, ServiceDependency
1627
1680
  # include_linked_accounts: false,
1628
1681
  # slo_owner_aws_account_id: "AwsAccountId",
1629
1682
  # })
@@ -1636,7 +1689,12 @@ module Aws::ApplicationSignals
1636
1689
  # resp.slo_summaries[0].key_attributes #=> Hash
1637
1690
  # resp.slo_summaries[0].key_attributes["KeyAttributeName"] #=> String
1638
1691
  # resp.slo_summaries[0].operation_name #=> String
1692
+ # resp.slo_summaries[0].dependency_config.dependency_key_attributes #=> Hash
1693
+ # resp.slo_summaries[0].dependency_config.dependency_key_attributes["KeyAttributeName"] #=> String
1694
+ # resp.slo_summaries[0].dependency_config.dependency_operation_name #=> String
1639
1695
  # resp.slo_summaries[0].created_time #=> Time
1696
+ # resp.slo_summaries[0].evaluation_type #=> String, one of "PeriodBased", "RequestBased"
1697
+ # resp.slo_summaries[0].metric_source_type #=> String, one of "ServiceOperation", "CloudWatchMetric", "ServiceDependency"
1640
1698
  # resp.next_token #=> String
1641
1699
  #
1642
1700
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListServiceLevelObjectives AWS API Documentation
@@ -2080,6 +2138,12 @@ module Aws::ApplicationSignals
2080
2138
  # account_id: "AccountId",
2081
2139
  # },
2082
2140
  # ],
2141
+ # dependency_config: {
2142
+ # dependency_key_attributes: { # required
2143
+ # "KeyAttributeName" => "KeyAttributeValue",
2144
+ # },
2145
+ # dependency_operation_name: "OperationName", # required
2146
+ # },
2083
2147
  # },
2084
2148
  # metric_threshold: 1.0, # required
2085
2149
  # comparison_operator: "GreaterThanOrEqualTo", # required, accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
@@ -2168,6 +2232,12 @@ module Aws::ApplicationSignals
2168
2232
  # },
2169
2233
  # ],
2170
2234
  # },
2235
+ # dependency_config: {
2236
+ # dependency_key_attributes: { # required
2237
+ # "KeyAttributeName" => "KeyAttributeValue",
2238
+ # },
2239
+ # dependency_operation_name: "OperationName", # required
2240
+ # },
2171
2241
  # },
2172
2242
  # metric_threshold: 1.0,
2173
2243
  # comparison_operator: "GreaterThanOrEqualTo", # accepts GreaterThanOrEqualTo, GreaterThan, LessThan, LessThanOrEqualTo
@@ -2220,6 +2290,9 @@ module Aws::ApplicationSignals
2220
2290
  # resp.slo.sli.sli_metric.metric_data_queries[0].return_data #=> Boolean
2221
2291
  # resp.slo.sli.sli_metric.metric_data_queries[0].period #=> Integer
2222
2292
  # resp.slo.sli.sli_metric.metric_data_queries[0].account_id #=> String
2293
+ # resp.slo.sli.sli_metric.dependency_config.dependency_key_attributes #=> Hash
2294
+ # resp.slo.sli.sli_metric.dependency_config.dependency_key_attributes["KeyAttributeName"] #=> String
2295
+ # resp.slo.sli.sli_metric.dependency_config.dependency_operation_name #=> String
2223
2296
  # resp.slo.sli.metric_threshold #=> Float
2224
2297
  # resp.slo.sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
2225
2298
  # resp.slo.request_based_sli.request_based_sli_metric.key_attributes #=> Hash
@@ -2271,6 +2344,9 @@ module Aws::ApplicationSignals
2271
2344
  # resp.slo.request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].return_data #=> Boolean
2272
2345
  # resp.slo.request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].period #=> Integer
2273
2346
  # resp.slo.request_based_sli.request_based_sli_metric.monitored_request_count_metric.bad_count_metric[0].account_id #=> String
2347
+ # resp.slo.request_based_sli.request_based_sli_metric.dependency_config.dependency_key_attributes #=> Hash
2348
+ # resp.slo.request_based_sli.request_based_sli_metric.dependency_config.dependency_key_attributes["KeyAttributeName"] #=> String
2349
+ # resp.slo.request_based_sli.request_based_sli_metric.dependency_config.dependency_operation_name #=> String
2274
2350
  # resp.slo.request_based_sli.metric_threshold #=> Float
2275
2351
  # resp.slo.request_based_sli.comparison_operator #=> String, one of "GreaterThanOrEqualTo", "GreaterThan", "LessThan", "LessThanOrEqualTo"
2276
2352
  # resp.slo.evaluation_type #=> String, one of "PeriodBased", "RequestBased"
@@ -2283,6 +2359,7 @@ module Aws::ApplicationSignals
2283
2359
  # resp.slo.goal.warning_threshold #=> Float
2284
2360
  # resp.slo.burn_rate_configurations #=> Array
2285
2361
  # resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
2362
+ # resp.slo.metric_source_type #=> String, one of "ServiceOperation", "CloudWatchMetric", "ServiceDependency"
2286
2363
  #
2287
2364
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/UpdateServiceLevelObjective AWS API Documentation
2288
2365
  #
@@ -2311,7 +2388,7 @@ module Aws::ApplicationSignals
2311
2388
  tracer: tracer
2312
2389
  )
2313
2390
  context[:gem_name] = 'aws-sdk-applicationsignals'
2314
- context[:gem_version] = '1.18.0'
2391
+ context[:gem_version] = '1.19.0'
2315
2392
  Seahorse::Client::Request.new(handlers, context)
2316
2393
  end
2317
2394
 
@@ -42,6 +42,7 @@ module Aws::ApplicationSignals
42
42
  CreateServiceLevelObjectiveOutput = Shapes::StructureShape.new(name: 'CreateServiceLevelObjectiveOutput')
43
43
  DeleteServiceLevelObjectiveInput = Shapes::StructureShape.new(name: 'DeleteServiceLevelObjectiveInput')
44
44
  DeleteServiceLevelObjectiveOutput = Shapes::StructureShape.new(name: 'DeleteServiceLevelObjectiveOutput')
45
+ DependencyConfig = Shapes::StructureShape.new(name: 'DependencyConfig')
45
46
  Dimension = Shapes::StructureShape.new(name: 'Dimension')
46
47
  DimensionName = Shapes::StringShape.new(name: 'DimensionName')
47
48
  DimensionValue = Shapes::StringShape.new(name: 'DimensionValue')
@@ -94,6 +95,8 @@ module Aws::ApplicationSignals
94
95
  MetricName = Shapes::StringShape.new(name: 'MetricName')
95
96
  MetricReference = Shapes::StructureShape.new(name: 'MetricReference')
96
97
  MetricReferences = Shapes::ListShape.new(name: 'MetricReferences')
98
+ MetricSourceType = Shapes::StringShape.new(name: 'MetricSourceType')
99
+ MetricSourceTypes = Shapes::ListShape.new(name: 'MetricSourceTypes')
97
100
  MetricStat = Shapes::StructureShape.new(name: 'MetricStat')
98
101
  MetricType = Shapes::StringShape.new(name: 'MetricType')
99
102
  MonitoredRequestCountMetricDataQueries = Shapes::UnionShape.new(name: 'MonitoredRequestCountMetricDataQueries')
@@ -238,6 +241,10 @@ module Aws::ApplicationSignals
238
241
 
239
242
  DeleteServiceLevelObjectiveOutput.struct_class = Types::DeleteServiceLevelObjectiveOutput
240
243
 
244
+ DependencyConfig.add_member(:dependency_key_attributes, Shapes::ShapeRef.new(shape: Attributes, required: true, location_name: "DependencyKeyAttributes"))
245
+ DependencyConfig.add_member(:dependency_operation_name, Shapes::ShapeRef.new(shape: OperationName, required: true, location_name: "DependencyOperationName"))
246
+ DependencyConfig.struct_class = Types::DependencyConfig
247
+
241
248
  Dimension.add_member(:name, Shapes::ShapeRef.new(shape: DimensionName, required: true, location_name: "Name"))
242
249
  Dimension.add_member(:value, Shapes::ShapeRef.new(shape: DimensionValue, required: true, location_name: "Value"))
243
250
  Dimension.struct_class = Types::Dimension
@@ -319,8 +326,10 @@ module Aws::ApplicationSignals
319
326
 
320
327
  ListServiceLevelObjectivesInput.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "KeyAttributes"))
321
328
  ListServiceLevelObjectivesInput.add_member(:operation_name, Shapes::ShapeRef.new(shape: OperationName, location: "querystring", location_name: "OperationName"))
329
+ ListServiceLevelObjectivesInput.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
322
330
  ListServiceLevelObjectivesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListServiceLevelObjectivesMaxResults, location: "querystring", location_name: "MaxResults"))
323
331
  ListServiceLevelObjectivesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "NextToken"))
332
+ ListServiceLevelObjectivesInput.add_member(:metric_source_types, Shapes::ShapeRef.new(shape: MetricSourceTypes, location_name: "MetricSourceTypes"))
324
333
  ListServiceLevelObjectivesInput.add_member(:include_linked_accounts, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "IncludeLinkedAccounts"))
325
334
  ListServiceLevelObjectivesInput.add_member(:slo_owner_aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, location: "querystring", location_name: "SloOwnerAwsAccountId"))
326
335
  ListServiceLevelObjectivesInput.struct_class = Types::ListServiceLevelObjectivesInput
@@ -389,6 +398,8 @@ module Aws::ApplicationSignals
389
398
 
390
399
  MetricReferences.member = Shapes::ShapeRef.new(shape: MetricReference)
391
400
 
401
+ MetricSourceTypes.member = Shapes::ShapeRef.new(shape: MetricSourceType)
402
+
392
403
  MetricStat.add_member(:metric, Shapes::ShapeRef.new(shape: Metric, required: true, location_name: "Metric"))
393
404
  MetricStat.add_member(:period, Shapes::ShapeRef.new(shape: Period, required: true, location_name: "Period"))
394
405
  MetricStat.add_member(:stat, Shapes::ShapeRef.new(shape: Stat, required: true, location_name: "Stat"))
@@ -421,6 +432,7 @@ module Aws::ApplicationSignals
421
432
  RequestBasedServiceLevelIndicatorMetric.add_member(:metric_type, Shapes::ShapeRef.new(shape: ServiceLevelIndicatorMetricType, location_name: "MetricType"))
422
433
  RequestBasedServiceLevelIndicatorMetric.add_member(:total_request_count_metric, Shapes::ShapeRef.new(shape: MetricDataQueries, required: true, location_name: "TotalRequestCountMetric"))
423
434
  RequestBasedServiceLevelIndicatorMetric.add_member(:monitored_request_count_metric, Shapes::ShapeRef.new(shape: MonitoredRequestCountMetricDataQueries, required: true, location_name: "MonitoredRequestCountMetric"))
435
+ RequestBasedServiceLevelIndicatorMetric.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
424
436
  RequestBasedServiceLevelIndicatorMetric.struct_class = Types::RequestBasedServiceLevelIndicatorMetric
425
437
 
426
438
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "KeyAttributes"))
@@ -428,6 +440,7 @@ module Aws::ApplicationSignals
428
440
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:metric_type, Shapes::ShapeRef.new(shape: ServiceLevelIndicatorMetricType, location_name: "MetricType"))
429
441
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:total_request_count_metric, Shapes::ShapeRef.new(shape: MetricDataQueries, location_name: "TotalRequestCountMetric"))
430
442
  RequestBasedServiceLevelIndicatorMetricConfig.add_member(:monitored_request_count_metric, Shapes::ShapeRef.new(shape: MonitoredRequestCountMetricDataQueries, location_name: "MonitoredRequestCountMetric"))
443
+ RequestBasedServiceLevelIndicatorMetricConfig.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
431
444
  RequestBasedServiceLevelIndicatorMetricConfig.struct_class = Types::RequestBasedServiceLevelIndicatorMetricConfig
432
445
 
433
446
  ResourceNotFoundException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "ResourceType"))
@@ -475,6 +488,7 @@ module Aws::ApplicationSignals
475
488
  ServiceLevelIndicatorMetric.add_member(:operation_name, Shapes::ShapeRef.new(shape: OperationName, location_name: "OperationName"))
476
489
  ServiceLevelIndicatorMetric.add_member(:metric_type, Shapes::ShapeRef.new(shape: ServiceLevelIndicatorMetricType, location_name: "MetricType"))
477
490
  ServiceLevelIndicatorMetric.add_member(:metric_data_queries, Shapes::ShapeRef.new(shape: MetricDataQueries, required: true, location_name: "MetricDataQueries"))
491
+ ServiceLevelIndicatorMetric.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
478
492
  ServiceLevelIndicatorMetric.struct_class = Types::ServiceLevelIndicatorMetric
479
493
 
480
494
  ServiceLevelIndicatorMetricConfig.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "KeyAttributes"))
@@ -483,6 +497,7 @@ module Aws::ApplicationSignals
483
497
  ServiceLevelIndicatorMetricConfig.add_member(:statistic, Shapes::ShapeRef.new(shape: ServiceLevelIndicatorStatistic, location_name: "Statistic"))
484
498
  ServiceLevelIndicatorMetricConfig.add_member(:period_seconds, Shapes::ShapeRef.new(shape: SLIPeriodSeconds, location_name: "PeriodSeconds"))
485
499
  ServiceLevelIndicatorMetricConfig.add_member(:metric_data_queries, Shapes::ShapeRef.new(shape: MetricDataQueries, location_name: "MetricDataQueries"))
500
+ ServiceLevelIndicatorMetricConfig.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
486
501
  ServiceLevelIndicatorMetricConfig.struct_class = Types::ServiceLevelIndicatorMetricConfig
487
502
 
488
503
  ServiceLevelObjective.add_member(:arn, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveArn, required: true, location_name: "Arn"))
@@ -495,6 +510,7 @@ module Aws::ApplicationSignals
495
510
  ServiceLevelObjective.add_member(:evaluation_type, Shapes::ShapeRef.new(shape: EvaluationType, location_name: "EvaluationType"))
496
511
  ServiceLevelObjective.add_member(:goal, Shapes::ShapeRef.new(shape: Goal, required: true, location_name: "Goal"))
497
512
  ServiceLevelObjective.add_member(:burn_rate_configurations, Shapes::ShapeRef.new(shape: BurnRateConfigurations, location_name: "BurnRateConfigurations"))
513
+ ServiceLevelObjective.add_member(:metric_source_type, Shapes::ShapeRef.new(shape: MetricSourceType, location_name: "MetricSourceType"))
498
514
  ServiceLevelObjective.struct_class = Types::ServiceLevelObjective
499
515
 
500
516
  ServiceLevelObjectiveBudgetReport.add_member(:arn, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveArn, required: true, location_name: "Arn"))
@@ -529,7 +545,10 @@ module Aws::ApplicationSignals
529
545
  ServiceLevelObjectiveSummary.add_member(:name, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveName, required: true, location_name: "Name"))
530
546
  ServiceLevelObjectiveSummary.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "KeyAttributes"))
531
547
  ServiceLevelObjectiveSummary.add_member(:operation_name, Shapes::ShapeRef.new(shape: OperationName, location_name: "OperationName"))
548
+ ServiceLevelObjectiveSummary.add_member(:dependency_config, Shapes::ShapeRef.new(shape: DependencyConfig, location_name: "DependencyConfig"))
532
549
  ServiceLevelObjectiveSummary.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
550
+ ServiceLevelObjectiveSummary.add_member(:evaluation_type, Shapes::ShapeRef.new(shape: EvaluationType, location_name: "EvaluationType"))
551
+ ServiceLevelObjectiveSummary.add_member(:metric_source_type, Shapes::ShapeRef.new(shape: MetricSourceType, location_name: "MetricSourceType"))
533
552
  ServiceLevelObjectiveSummary.struct_class = Types::ServiceLevelObjectiveSummary
534
553
 
535
554
  ServiceOperation.add_member(:name, Shapes::ShapeRef.new(shape: OperationName, required: true, location_name: "Name"))
@@ -302,6 +302,50 @@ module Aws::ApplicationSignals
302
302
  #
303
303
  class DeleteServiceLevelObjectiveOutput < Aws::EmptyStructure; end
304
304
 
305
+ # Identifies the dependency using the `DependencyKeyAttributes` and
306
+ # `DependencyOperationName`.
307
+ #
308
+ # When creating a service dependency SLO, you must specify the
309
+ # `KeyAttributes` of the service, and the `DependencyConfig` for the
310
+ # dependency. You can specify the `OperationName` of the service, from
311
+ # which it calls the dependency. Alternatively, you can exclude
312
+ # `OperationName` and the SLO will monitor all of the service's
313
+ # operations that call the dependency.
314
+ #
315
+ # @!attribute [rw] dependency_key_attributes
316
+ # This is a string-to-string map. It can include the following fields.
317
+ #
318
+ # * `Type` designates the type of object this is.
319
+ #
320
+ # * `ResourceType` specifies the type of the resource. This field is
321
+ # used only when the value of the `Type` field is `Resource` or
322
+ # `AWS::Resource`.
323
+ #
324
+ # * `Name` specifies the name of the object. This is used only if the
325
+ # value of the `Type` field is `Service`, `RemoteService`, or
326
+ # `AWS::Service`.
327
+ #
328
+ # * `Identifier` identifies the resource objects of this resource.
329
+ # This is used only if the value of the `Type` field is `Resource`
330
+ # or `AWS::Resource`.
331
+ #
332
+ # * `Environment` specifies the location where this object is hosted,
333
+ # or what it belongs to.
334
+ # @return [Hash<String,String>]
335
+ #
336
+ # @!attribute [rw] dependency_operation_name
337
+ # The name of the called operation in the dependency.
338
+ # @return [String]
339
+ #
340
+ # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/DependencyConfig AWS API Documentation
341
+ #
342
+ class DependencyConfig < Struct.new(
343
+ :dependency_key_attributes,
344
+ :dependency_operation_name)
345
+ SENSITIVE = []
346
+ include Aws::Structure
347
+ end
348
+
305
349
  # A dimension is a name/value pair that is part of the identity of a
306
350
  # metric. Because dimensions are part of the unique identifier for a
307
351
  # metric, whenever you add a unique name/value pair to one of your
@@ -849,6 +893,11 @@ module Aws::ApplicationSignals
849
893
  # The name of the operation that this SLO is associated with.
850
894
  # @return [String]
851
895
  #
896
+ # @!attribute [rw] dependency_config
897
+ # Identifies the dependency using the `DependencyKeyAttributes` and
898
+ # `DependencyOperationName`.
899
+ # @return [Types::DependencyConfig]
900
+ #
852
901
  # @!attribute [rw] max_results
853
902
  # The maximum number of results to return in one operation. If you
854
903
  # omit this parameter, the default of 50 is used.
@@ -859,6 +908,17 @@ module Aws::ApplicationSignals
859
908
  # get the next set of service level objectives.
860
909
  # @return [String]
861
910
  #
911
+ # @!attribute [rw] metric_source_types
912
+ # Use this optional field to only include SLOs with the specified
913
+ # metric source types in the output. Supported types are:
914
+ #
915
+ # * Service operation
916
+ #
917
+ # * Service dependency
918
+ #
919
+ # * CloudWatch metric
920
+ # @return [Array<String>]
921
+ #
862
922
  # @!attribute [rw] include_linked_accounts
863
923
  # If you are using this operation in a monitoring account, specify
864
924
  # `true` to include SLO from source accounts in the returned data.
@@ -878,8 +938,10 @@ module Aws::ApplicationSignals
878
938
  class ListServiceLevelObjectivesInput < Struct.new(
879
939
  :key_attributes,
880
940
  :operation_name,
941
+ :dependency_config,
881
942
  :max_results,
882
943
  :next_token,
944
+ :metric_source_types,
883
945
  :include_linked_accounts,
884
946
  :slo_owner_aws_account_id)
885
947
  SENSITIVE = []
@@ -1560,6 +1622,11 @@ module Aws::ApplicationSignals
1560
1622
  # tracks.
1561
1623
  # @return [Types::MonitoredRequestCountMetricDataQueries]
1562
1624
  #
1625
+ # @!attribute [rw] dependency_config
1626
+ # Identifies the dependency using the `DependencyKeyAttributes` and
1627
+ # `DependencyOperationName`.
1628
+ # @return [Types::DependencyConfig]
1629
+ #
1563
1630
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/RequestBasedServiceLevelIndicatorMetric AWS API Documentation
1564
1631
  #
1565
1632
  class RequestBasedServiceLevelIndicatorMetric < Struct.new(
@@ -1567,7 +1634,8 @@ module Aws::ApplicationSignals
1567
1634
  :operation_name,
1568
1635
  :metric_type,
1569
1636
  :total_request_count_metric,
1570
- :monitored_request_count_metric)
1637
+ :monitored_request_count_metric,
1638
+ :dependency_config)
1571
1639
  SENSITIVE = []
1572
1640
  include Aws::Structure
1573
1641
  end
@@ -1628,6 +1696,11 @@ module Aws::ApplicationSignals
1628
1696
  # successful requests that this SLO tracks.
1629
1697
  # @return [Types::MonitoredRequestCountMetricDataQueries]
1630
1698
  #
1699
+ # @!attribute [rw] dependency_config
1700
+ # Identifies the dependency using the `DependencyKeyAttributes` and
1701
+ # `DependencyOperationName`.
1702
+ # @return [Types::DependencyConfig]
1703
+ #
1631
1704
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/RequestBasedServiceLevelIndicatorMetricConfig AWS API Documentation
1632
1705
  #
1633
1706
  class RequestBasedServiceLevelIndicatorMetricConfig < Struct.new(
@@ -1635,7 +1708,8 @@ module Aws::ApplicationSignals
1635
1708
  :operation_name,
1636
1709
  :metric_type,
1637
1710
  :total_request_count_metric,
1638
- :monitored_request_count_metric)
1711
+ :monitored_request_count_metric,
1712
+ :dependency_config)
1639
1713
  SENSITIVE = []
1640
1714
  include Aws::Structure
1641
1715
  end
@@ -1991,13 +2065,19 @@ module Aws::ApplicationSignals
1991
2065
  # information about that metric or expression.
1992
2066
  # @return [Array<Types::MetricDataQuery>]
1993
2067
  #
2068
+ # @!attribute [rw] dependency_config
2069
+ # Identifies the dependency using the `DependencyKeyAttributes` and
2070
+ # `DependencyOperationName`.
2071
+ # @return [Types::DependencyConfig]
2072
+ #
1994
2073
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelIndicatorMetric AWS API Documentation
1995
2074
  #
1996
2075
  class ServiceLevelIndicatorMetric < Struct.new(
1997
2076
  :key_attributes,
1998
2077
  :operation_name,
1999
2078
  :metric_type,
2000
- :metric_data_queries)
2079
+ :metric_data_queries,
2080
+ :dependency_config)
2001
2081
  SENSITIVE = []
2002
2082
  include Aws::Structure
2003
2083
  end
@@ -2065,6 +2145,11 @@ module Aws::ApplicationSignals
2065
2145
  # that metric or expression.
2066
2146
  # @return [Array<Types::MetricDataQuery>]
2067
2147
  #
2148
+ # @!attribute [rw] dependency_config
2149
+ # Identifies the dependency using the `DependencyKeyAttributes` and
2150
+ # `DependencyOperationName`.
2151
+ # @return [Types::DependencyConfig]
2152
+ #
2068
2153
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelIndicatorMetricConfig AWS API Documentation
2069
2154
  #
2070
2155
  class ServiceLevelIndicatorMetricConfig < Struct.new(
@@ -2073,7 +2158,8 @@ module Aws::ApplicationSignals
2073
2158
  :metric_type,
2074
2159
  :statistic,
2075
2160
  :period_seconds,
2076
- :metric_data_queries)
2161
+ :metric_data_queries,
2162
+ :dependency_config)
2077
2163
  SENSITIVE = []
2078
2164
  include Aws::Structure
2079
2165
  end
@@ -2138,6 +2224,17 @@ module Aws::ApplicationSignals
2138
2224
  # relative to the attainment goal of the SLO.
2139
2225
  # @return [Array<Types::BurnRateConfiguration>]
2140
2226
  #
2227
+ # @!attribute [rw] metric_source_type
2228
+ # Displays the SLI metric source type for this SLO. Supported types
2229
+ # are:
2230
+ #
2231
+ # * Service operation
2232
+ #
2233
+ # * Service dependency
2234
+ #
2235
+ # * CloudWatch metric
2236
+ # @return [String]
2237
+ #
2141
2238
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelObjective AWS API Documentation
2142
2239
  #
2143
2240
  class ServiceLevelObjective < Struct.new(
@@ -2150,7 +2247,8 @@ module Aws::ApplicationSignals
2150
2247
  :request_based_sli,
2151
2248
  :evaluation_type,
2152
2249
  :goal,
2153
- :burn_rate_configurations)
2250
+ :burn_rate_configurations,
2251
+ :metric_source_type)
2154
2252
  SENSITIVE = []
2155
2253
  include Aws::Structure
2156
2254
  end
@@ -2348,12 +2446,32 @@ module Aws::ApplicationSignals
2348
2446
  # this field displays the name of that operation.
2349
2447
  # @return [String]
2350
2448
  #
2449
+ # @!attribute [rw] dependency_config
2450
+ # Identifies the dependency using the `DependencyKeyAttributes` and
2451
+ # `DependencyOperationName`.
2452
+ # @return [Types::DependencyConfig]
2453
+ #
2351
2454
  # @!attribute [rw] created_time
2352
2455
  # The date and time that this service level objective was created. It
2353
2456
  # is expressed as the number of milliseconds since Jan 1, 1970
2354
2457
  # 00:00:00 UTC.
2355
2458
  # @return [Time]
2356
2459
  #
2460
+ # @!attribute [rw] evaluation_type
2461
+ # Displays whether this is a period-based SLO or a request-based SLO.
2462
+ # @return [String]
2463
+ #
2464
+ # @!attribute [rw] metric_source_type
2465
+ # Displays the SLI metric source type for this SLO. Supported types
2466
+ # are:
2467
+ #
2468
+ # * Service operation
2469
+ #
2470
+ # * Service dependency
2471
+ #
2472
+ # * CloudWatch metric
2473
+ # @return [String]
2474
+ #
2357
2475
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelObjectiveSummary AWS API Documentation
2358
2476
  #
2359
2477
  class ServiceLevelObjectiveSummary < Struct.new(
@@ -2361,7 +2479,10 @@ module Aws::ApplicationSignals
2361
2479
  :name,
2362
2480
  :key_attributes,
2363
2481
  :operation_name,
2364
- :created_time)
2482
+ :dependency_config,
2483
+ :created_time,
2484
+ :evaluation_type,
2485
+ :metric_source_type)
2365
2486
  SENSITIVE = []
2366
2487
  include Aws::Structure
2367
2488
  end
@@ -54,7 +54,7 @@ module Aws::ApplicationSignals
54
54
  autoload :EndpointProvider, 'aws-sdk-applicationsignals/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-applicationsignals/endpoints'
56
56
 
57
- GEM_VERSION = '1.18.0'
57
+ GEM_VERSION = '1.19.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -166,7 +166,11 @@ module Aws
166
166
  period: ::Integer?,
167
167
  account_id: ::String?
168
168
  },
169
- ]?
169
+ ]?,
170
+ dependency_config: {
171
+ dependency_key_attributes: Hash[::String, ::String],
172
+ dependency_operation_name: ::String
173
+ }?
170
174
  },
171
175
  metric_threshold: ::Float,
172
176
  comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")
@@ -252,6 +256,10 @@ module Aws
252
256
  account_id: ::String?
253
257
  },
254
258
  ]?
259
+ }?,
260
+ dependency_config: {
261
+ dependency_key_attributes: Hash[::String, ::String],
262
+ dependency_operation_name: ::String
255
263
  }?
256
264
  },
257
265
  metric_threshold: ::Float?,
@@ -376,8 +384,13 @@ module Aws
376
384
  def list_service_level_objectives: (
377
385
  ?key_attributes: Hash[::String, ::String],
378
386
  ?operation_name: ::String,
387
+ ?dependency_config: {
388
+ dependency_key_attributes: Hash[::String, ::String],
389
+ dependency_operation_name: ::String
390
+ },
379
391
  ?max_results: ::Integer,
380
392
  ?next_token: ::String,
393
+ ?metric_source_types: Array[("ServiceOperation" | "CloudWatchMetric" | "ServiceDependency")],
381
394
  ?include_linked_accounts: bool,
382
395
  ?slo_owner_aws_account_id: ::String
383
396
  ) -> _ListServiceLevelObjectivesResponseSuccess
@@ -500,7 +513,11 @@ module Aws
500
513
  period: ::Integer?,
501
514
  account_id: ::String?
502
515
  },
503
- ]?
516
+ ]?,
517
+ dependency_config: {
518
+ dependency_key_attributes: Hash[::String, ::String],
519
+ dependency_operation_name: ::String
520
+ }?
504
521
  },
505
522
  metric_threshold: ::Float,
506
523
  comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")
@@ -586,6 +603,10 @@ module Aws
586
603
  account_id: ::String?
587
604
  },
588
605
  ]?
606
+ }?,
607
+ dependency_config: {
608
+ dependency_key_attributes: Hash[::String, ::String],
609
+ dependency_operation_name: ::String
589
610
  }?
590
611
  },
591
612
  metric_threshold: ::Float?,
data/sig/types.rbs CHANGED
@@ -87,6 +87,12 @@ module Aws::ApplicationSignals
87
87
  class DeleteServiceLevelObjectiveOutput < Aws::EmptyStructure
88
88
  end
89
89
 
90
+ class DependencyConfig
91
+ attr_accessor dependency_key_attributes: ::Hash[::String, ::String]
92
+ attr_accessor dependency_operation_name: ::String
93
+ SENSITIVE: []
94
+ end
95
+
90
96
  class Dimension
91
97
  attr_accessor name: ::String
92
98
  attr_accessor value: ::String
@@ -197,8 +203,10 @@ module Aws::ApplicationSignals
197
203
  class ListServiceLevelObjectivesInput
198
204
  attr_accessor key_attributes: ::Hash[::String, ::String]
199
205
  attr_accessor operation_name: ::String
206
+ attr_accessor dependency_config: Types::DependencyConfig
200
207
  attr_accessor max_results: ::Integer
201
208
  attr_accessor next_token: ::String
209
+ attr_accessor metric_source_types: ::Array[("ServiceOperation" | "CloudWatchMetric" | "ServiceDependency")]
202
210
  attr_accessor include_linked_accounts: bool
203
211
  attr_accessor slo_owner_aws_account_id: ::String
204
212
  SENSITIVE: []
@@ -329,6 +337,7 @@ module Aws::ApplicationSignals
329
337
  attr_accessor metric_type: ("LATENCY" | "AVAILABILITY")
330
338
  attr_accessor total_request_count_metric: ::Array[Types::MetricDataQuery]
331
339
  attr_accessor monitored_request_count_metric: Types::MonitoredRequestCountMetricDataQueries
340
+ attr_accessor dependency_config: Types::DependencyConfig
332
341
  SENSITIVE: []
333
342
  end
334
343
 
@@ -338,6 +347,7 @@ module Aws::ApplicationSignals
338
347
  attr_accessor metric_type: ("LATENCY" | "AVAILABILITY")
339
348
  attr_accessor total_request_count_metric: ::Array[Types::MetricDataQuery]
340
349
  attr_accessor monitored_request_count_metric: Types::MonitoredRequestCountMetricDataQueries
350
+ attr_accessor dependency_config: Types::DependencyConfig
341
351
  SENSITIVE: []
342
352
  end
343
353
 
@@ -397,6 +407,7 @@ module Aws::ApplicationSignals
397
407
  attr_accessor operation_name: ::String
398
408
  attr_accessor metric_type: ("LATENCY" | "AVAILABILITY")
399
409
  attr_accessor metric_data_queries: ::Array[Types::MetricDataQuery]
410
+ attr_accessor dependency_config: Types::DependencyConfig
400
411
  SENSITIVE: []
401
412
  end
402
413
 
@@ -407,6 +418,7 @@ module Aws::ApplicationSignals
407
418
  attr_accessor statistic: ::String
408
419
  attr_accessor period_seconds: ::Integer
409
420
  attr_accessor metric_data_queries: ::Array[Types::MetricDataQuery]
421
+ attr_accessor dependency_config: Types::DependencyConfig
410
422
  SENSITIVE: []
411
423
  end
412
424
 
@@ -421,6 +433,7 @@ module Aws::ApplicationSignals
421
433
  attr_accessor evaluation_type: ("PeriodBased" | "RequestBased")
422
434
  attr_accessor goal: Types::Goal
423
435
  attr_accessor burn_rate_configurations: ::Array[Types::BurnRateConfiguration]
436
+ attr_accessor metric_source_type: ("ServiceOperation" | "CloudWatchMetric" | "ServiceDependency")
424
437
  SENSITIVE: []
425
438
  end
426
439
 
@@ -453,7 +466,10 @@ module Aws::ApplicationSignals
453
466
  attr_accessor name: ::String
454
467
  attr_accessor key_attributes: ::Hash[::String, ::String]
455
468
  attr_accessor operation_name: ::String
469
+ attr_accessor dependency_config: Types::DependencyConfig
456
470
  attr_accessor created_time: ::Time
471
+ attr_accessor evaluation_type: ("PeriodBased" | "RequestBased")
472
+ attr_accessor metric_source_type: ("ServiceOperation" | "CloudWatchMetric" | "ServiceDependency")
457
473
  SENSITIVE: []
458
474
  end
459
475
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-applicationsignals
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-17 00:00:00.000000000 Z
11
+ date: 2025-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core