aws-sdk-applicationsignals 1.31.0 → 1.32.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: 19f9fc9145deb4642fea3edc66f85dc888c31dbe8c3eb24bbdc5ce45106fd827
4
- data.tar.gz: 4588f22b076f10fabced98a3b5e00fb1ef988cae43fde43da168a23673384555
3
+ metadata.gz: d4da13738df9ea144645a308ef79a7d2acd96ec5e36cdcb028d4f8a3b07ca411
4
+ data.tar.gz: 93e5478f0791752254bf9d17871f635cdd06c8fa42036f672e0a2848bf03068a
5
5
  SHA512:
6
- metadata.gz: 0f59fefbbab21b7d4defe187169fa63ff9ccb99c8c972a0c2af91c596d2e125f9f10f1dc58705edfce47b6d0d1495c03f117b02664317ae8e337c8c0117d70dd
7
- data.tar.gz: 9bca175b85bb2394030f971157b921adbffd42d8e02d5bdc5c93ec9b494a080e670bffcbf471c19b4fcc4acf0f12e0396117bc689a15eabb7c27d2e2b001dd5c
6
+ metadata.gz: 184ee8293b71fa39c30a46d09ea8b11ef647f95faad3f86f8bf45485be90153bc27b366aaa5cf7a33f57f409cc946ebcb62282dff2e0ae93cd54d55973dc704f
7
+ data.tar.gz: '0338a9e4a5397a3c34853396b2f397b598f3660197d8be7072bde055618bb1fcb72598ce15f1c7c40d9386c1c87cecb7879a946c20e057c5bed63010e9386f9c'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2025-11-20)
5
+ ------------------
6
+
7
+ * Feature - Amazon CloudWatch Application Signals now supports un-instrumented services discovery, cross-account views, and change history, helping SRE and DevOps teams monitor and troubleshoot their large-scale distributed applications.
8
+
4
9
  1.31.0 (2025-10-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.32.0
@@ -1112,13 +1112,8 @@ module Aws::ApplicationSignals
1112
1112
  req.send_request(options)
1113
1113
  end
1114
1114
 
1115
- # Deletes a grouping configuration that defines how services are grouped
1116
- # and organized in Application Signals. Once deleted, services will no
1117
- # longer be grouped according to the specified configuration rules.
1118
- #
1119
- # This operation is irreversible. After deletion, you must recreate the
1120
- # grouping configuration if you want to restore the same grouping
1121
- # behavior.
1115
+ # Deletes the grouping configuration for this account. This removes all
1116
+ # custom grouping attribute definitions that were previously configured.
1122
1117
  #
1123
1118
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1124
1119
  #
@@ -1375,44 +1370,86 @@ module Aws::ApplicationSignals
1375
1370
  req.send_request(options)
1376
1371
  end
1377
1372
 
1378
- # Retrieves a list of audit findings for Application Signals resources.
1379
- # Audit findings identify potential issues, misconfigurations, or
1380
- # compliance violations in your observability setup.
1381
- #
1382
- # You can filter findings by time range, auditor type, and target
1383
- # resources to focus on specific areas of concern. This operation
1384
- # supports pagination for large result sets.
1373
+ # Returns a list of audit findings that provide automated analysis of
1374
+ # service behavior and root cause analysis. These findings help identify
1375
+ # the most significant observations about your services, including
1376
+ # performance issues, anomalies, and potential problems. The findings
1377
+ # are generated using heuristic algorithms based on established
1378
+ # troubleshooting patterns.
1385
1379
  #
1386
1380
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1387
- # The start time for the audit findings query. Only findings created on
1388
- # or after this time will be included in the results. Specify the time
1389
- # as the number of milliseconds since January 1, 1970, 00:00:00 UTC.
1381
+ # The start of the time period to retrieve audit findings for. When used
1382
+ # in a raw HTTP Query API, it is formatted as epoch time in seconds. For
1383
+ # example, `1698778057`
1390
1384
  #
1391
1385
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1392
- # The end time for the audit findings query. Only findings created
1393
- # before this time will be included in the results. Specify the time as
1394
- # the number of milliseconds since January 1, 1970, 00:00:00 UTC.
1386
+ # The end of the time period to retrieve audit findings for. When used
1387
+ # in a raw HTTP Query API, it is formatted as epoch time in seconds. For
1388
+ # example, `1698778057`
1395
1389
  #
1396
1390
  # @option params [Array<String>] :auditors
1397
- # An array of auditor names to filter the findings. Only findings
1398
- # generated by the specified auditors will be returned. When not
1399
- # specified, findings from all auditors are included except canary.
1391
+ # A list of auditor names to filter the findings by. Only findings
1392
+ # generated by the specified auditors will be returned.
1393
+ #
1394
+ # The following auditors are available for configuration:
1395
+ #
1396
+ # * `slo` - SloAuditor: Identifies SLO violations and detects breached
1397
+ # thresholds during the Assessment phase.
1398
+ #
1399
+ # * `operation_metric` - OperationMetricAuditor: Detects anomalies in
1400
+ # service operation metrics from Application Signals RED metrics
1401
+ # during the Assessment phase
1402
+ #
1403
+ # <note markdown="1"> Anomaly detection is not supported for sparse metrics (those missing
1404
+ # more than 80% of datapoints within the given time period).
1405
+ #
1406
+ # </note>
1407
+ #
1408
+ # * `service_quota` - ServiceQuotaAuditor: Monitors resource utilization
1409
+ # against service quotas during the Assessment phase
1410
+ #
1411
+ # * `trace` - TraceAuditor: Performs deep-dive analysis of distributed
1412
+ # traces, correlating traces with breached SLOs or abnormal RED
1413
+ # metrics during the Analysis phase
1414
+ #
1415
+ # * `dependency_metric` - CriticalPathAuditor: Analyzes service
1416
+ # dependency impacts and maps dependency relationships from
1417
+ # Application Signals RED metrics during the Analysis phase
1418
+ #
1419
+ # * `top_contributor` - TopContributorAuditor: Identifies
1420
+ # infrastructure-level contributors to issues by analyzing EMF logs of
1421
+ # Application Signals RED metrics during the Analysis phase
1422
+ #
1423
+ # * `log` - LogAuditor: Extracts insights from application logs,
1424
+ # categorizing error types and ranking severity by frequency during
1425
+ # the Analysis phase
1426
+ #
1427
+ # <note markdown="1"> `InitAuditor` and `Summarizer` auditors are not configurable as they
1428
+ # are automatically triggered during the audit process.
1429
+ #
1430
+ # </note>
1400
1431
  #
1401
1432
  # @option params [required, Array<Types::AuditTarget>] :audit_targets
1402
- # An array of audit target specifications to filter the findings. Only
1403
- # findings related to the specified targets (such as specific services,
1404
- # SLOs, operations or canary) will be returned.
1433
+ # A list of audit targets to filter the findings by. You can specify
1434
+ # services, SLOs, or service operations to limit the audit findings to
1435
+ # specific entities.
1436
+ #
1437
+ # @option params [String] :detail_level
1438
+ # The level of details of the audit findings. Supported values: `BRIEF`,
1439
+ # `DETAILED`.
1405
1440
  #
1406
1441
  # @option params [String] :next_token
1407
- # The token for the next set of results. Use this token to retrieve
1408
- # additional pages of audit findings when the result set is large.
1442
+ # Include this value, if it was returned by the previous operation, to
1443
+ # get the next set of audit findings.
1409
1444
  #
1410
1445
  # @option params [Integer] :max_results
1411
- # The maximum number of audit findings to return in a single request.
1412
- # Valid range is 1 to 100. If not specified, defaults to 50.
1446
+ # The maximum number of audit findings to return in one operation. If
1447
+ # you omit this parameter, the default of 10 is used.
1413
1448
  #
1414
1449
  # @return [Types::ListAuditFindingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1415
1450
  #
1451
+ # * {Types::ListAuditFindingsOutput#start_time #start_time} => Time
1452
+ # * {Types::ListAuditFindingsOutput#end_time #end_time} => Time
1416
1453
  # * {Types::ListAuditFindingsOutput#audit_findings #audit_findings} => Array&lt;Types::AuditFinding&gt;
1417
1454
  # * {Types::ListAuditFindingsOutput#next_token #next_token} => String
1418
1455
  #
@@ -1452,18 +1489,23 @@ module Aws::ApplicationSignals
1452
1489
  # },
1453
1490
  # },
1454
1491
  # ],
1492
+ # detail_level: "BRIEF", # accepts BRIEF, DETAILED
1455
1493
  # next_token: "NextToken",
1456
1494
  # max_results: 1,
1457
1495
  # })
1458
1496
  #
1459
1497
  # @example Response structure
1460
1498
  #
1499
+ # resp.start_time #=> Time
1500
+ # resp.end_time #=> Time
1461
1501
  # resp.audit_findings #=> Array
1462
1502
  # resp.audit_findings[0].key_attributes #=> Hash
1463
1503
  # resp.audit_findings[0].key_attributes["KeyAttributeName"] #=> String
1464
1504
  # resp.audit_findings[0].auditor_results #=> Array
1465
1505
  # resp.audit_findings[0].auditor_results[0].auditor #=> String
1466
1506
  # resp.audit_findings[0].auditor_results[0].description #=> String
1507
+ # resp.audit_findings[0].auditor_results[0].data #=> Hash
1508
+ # resp.audit_findings[0].auditor_results[0].data["String"] #=> String
1467
1509
  # resp.audit_findings[0].auditor_results[0].severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "NONE"
1468
1510
  # resp.audit_findings[0].operation #=> String
1469
1511
  # resp.audit_findings[0].metric_graph.metric_data_queries #=> Array
@@ -1509,17 +1551,130 @@ module Aws::ApplicationSignals
1509
1551
  req.send_request(options)
1510
1552
  end
1511
1553
 
1512
- # Retrieves the available grouping attribute definitions that can be
1513
- # used to create grouping configurations. These definitions specify the
1514
- # attributes and rules available for organizing services.
1554
+ # Returns a list of change events for a specific entity, such as
1555
+ # deployments, configuration changes, or other state-changing
1556
+ # activities. This operation helps track the history of changes that may
1557
+ # have affected service performance.
1558
+ #
1559
+ # @option params [required, Hash<String,String>] :entity
1560
+ # The entity for which to retrieve change events. This specifies the
1561
+ # service, resource, or other entity whose event history you want to
1562
+ # examine.
1563
+ #
1564
+ # This is a string-to-string map. It can include the following fields.
1565
+ #
1566
+ # * `Type` designates the type of object this is.
1567
+ #
1568
+ # * `ResourceType` specifies the type of the resource. This field is
1569
+ # used only when the value of the `Type` field is `Resource` or
1570
+ # `AWS::Resource`.
1571
+ #
1572
+ # * `Name` specifies the name of the object. This is used only if the
1573
+ # value of the `Type` field is `Service`, `RemoteService`, or
1574
+ # `AWS::Service`.
1575
+ #
1576
+ # * `Identifier` identifies the resource objects of this resource. This
1577
+ # is used only if the value of the `Type` field is `Resource` or
1578
+ # `AWS::Resource`.
1579
+ #
1580
+ # * `Environment` specifies the location where this object is hosted, or
1581
+ # what it belongs to.
1582
+ #
1583
+ # * `AwsAccountId` specifies the account where this object is in.
1584
+ #
1585
+ # Below is an example of a service.
1586
+ #
1587
+ # `{ "Type": "Service", "Name": "visits-service", "Environment":
1588
+ # "petclinic-test" }`
1589
+ #
1590
+ # Below is an example of a resource.
1591
+ #
1592
+ # `{ "Type": "AWS::Resource", "ResourceType": "AWS::DynamoDB::Table",
1593
+ # "Identifier": "Customers" }`
1594
+ #
1595
+ # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1596
+ # The start of the time period to retrieve change events for. When used
1597
+ # in a raw HTTP Query API, it is formatted as epoch time in seconds. For
1598
+ # example: `1698778057`
1515
1599
  #
1516
- # Use this operation to discover what grouping options are available
1517
- # before creating or updating grouping configurations.
1600
+ # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1601
+ # The end of the time period to retrieve change events for. When used in
1602
+ # a raw HTTP Query API, it is formatted as epoch time in seconds. For
1603
+ # example: `1698778057`
1604
+ #
1605
+ # @option params [Integer] :max_results
1606
+ # The maximum number of change events to return in one operation. If you
1607
+ # omit this parameter, the default of 50 is used.
1608
+ #
1609
+ # @option params [String] :next_token
1610
+ # Include this value, if it was returned by the previous operation, to
1611
+ # get the next set of change events.
1612
+ #
1613
+ # @return [Types::ListEntityEventsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1614
+ #
1615
+ # * {Types::ListEntityEventsOutput#start_time #start_time} => Time
1616
+ # * {Types::ListEntityEventsOutput#end_time #end_time} => Time
1617
+ # * {Types::ListEntityEventsOutput#change_events #change_events} => Array&lt;Types::ChangeEvent&gt;
1618
+ # * {Types::ListEntityEventsOutput#next_token #next_token} => String
1619
+ #
1620
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1621
+ #
1622
+ # @example Request syntax with placeholder values
1623
+ #
1624
+ # resp = client.list_entity_events({
1625
+ # entity: { # required
1626
+ # "KeyAttributeName" => "KeyAttributeValue",
1627
+ # },
1628
+ # start_time: Time.now, # required
1629
+ # end_time: Time.now, # required
1630
+ # max_results: 1,
1631
+ # next_token: "NextToken",
1632
+ # })
1633
+ #
1634
+ # @example Response structure
1635
+ #
1636
+ # resp.start_time #=> Time
1637
+ # resp.end_time #=> Time
1638
+ # resp.change_events #=> Array
1639
+ # resp.change_events[0].timestamp #=> Time
1640
+ # resp.change_events[0].account_id #=> String
1641
+ # resp.change_events[0].region #=> String
1642
+ # resp.change_events[0].entity #=> Hash
1643
+ # resp.change_events[0].entity["KeyAttributeName"] #=> String
1644
+ # resp.change_events[0].change_event_type #=> String, one of "DEPLOYMENT", "CONFIGURATION"
1645
+ # resp.change_events[0].event_id #=> String
1646
+ # resp.change_events[0].user_name #=> String
1647
+ # resp.change_events[0].event_name #=> String
1648
+ # resp.next_token #=> String
1649
+ #
1650
+ # @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListEntityEvents AWS API Documentation
1651
+ #
1652
+ # @overload list_entity_events(params = {})
1653
+ # @param [Hash] params ({})
1654
+ def list_entity_events(params = {}, options = {})
1655
+ req = build_request(:list_entity_events, params)
1656
+ req.send_request(options)
1657
+ end
1658
+
1659
+ # Returns the current grouping configuration for this account, including
1660
+ # all custom grouping attribute definitions that have been configured.
1661
+ # These definitions determine how services are logically grouped based
1662
+ # on telemetry attributes, Amazon Web Services tags, or predefined
1663
+ # mappings.
1518
1664
  #
1519
1665
  # @option params [String] :next_token
1520
- # The token for the next set of results. Use this token to retrieve
1521
- # additional pages of grouping attribute definitions when the result set
1522
- # is large.
1666
+ # Include this value, if it was returned by the previous operation, to
1667
+ # get the next set of grouping attribute definitions.
1668
+ #
1669
+ # @option params [String] :aws_account_id
1670
+ # The Amazon Web Services account ID to retrieve grouping attribute
1671
+ # definitions for. Use this when accessing grouping configurations from
1672
+ # a different account in cross-account monitoring scenarios.
1673
+ #
1674
+ # @option params [Boolean] :include_linked_accounts
1675
+ # If you are using this operation in a monitoring account, specify
1676
+ # `true` to include grouping attributes from source accounts in the
1677
+ # returned data.
1523
1678
  #
1524
1679
  # @return [Types::ListGroupingAttributeDefinitionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1525
1680
  #
@@ -1531,6 +1686,8 @@ module Aws::ApplicationSignals
1531
1686
  #
1532
1687
  # resp = client.list_grouping_attribute_definitions({
1533
1688
  # next_token: "NextToken",
1689
+ # aws_account_id: "AwsAccountId",
1690
+ # include_linked_accounts: false,
1534
1691
  # })
1535
1692
  #
1536
1693
  # @example Response structure
@@ -2011,48 +2168,41 @@ module Aws::ApplicationSignals
2011
2168
  req.send_request(options)
2012
2169
  end
2013
2170
 
2014
- # Retrieves the current state information for services monitored by
2015
- # Application Signals. Service states include health status, recent
2016
- # change events, and other operational metadata.
2017
- #
2018
- # You can filter results by time range, AWS account, and service
2019
- # attributes to focus on specific services or time periods. This
2020
- # operation supports pagination and can include data from linked
2021
- # accounts.
2171
+ # Returns information about the last deployment and other change states
2172
+ # of services. This API provides visibility into recent changes that may
2173
+ # have affected service performance, helping with troubleshooting and
2174
+ # change correlation.
2022
2175
  #
2023
2176
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
2024
- # The start time for the service states query. Only service states from
2025
- # this time onward will be included. Specify the time as the number of
2026
- # milliseconds since January 1, 1970, 00:00:00 UTC.
2177
+ # The start of the time period to retrieve service state information
2178
+ # for. When used in a raw HTTP Query API, it is formatted as epoch time
2179
+ # in seconds. For example, `1698778057`.
2027
2180
  #
2028
2181
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
2029
- # The end time for the service states query. Only service states before
2030
- # this time will be included. Specify the time as the number of
2031
- # milliseconds since January 1, 1970, 00:00:00 UTC.
2182
+ # The end of the time period to retrieve service state information for.
2183
+ # When used in a raw HTTP Query API, it is formatted as epoch time in
2184
+ # seconds. For example, `1698778057`.
2032
2185
  #
2033
2186
  # @option params [Integer] :max_results
2034
- # The maximum number of service states to return in a single request.
2035
- # Valid range is 1 to 100. If not specified, defaults to 50.
2187
+ # The maximum number of service states to return in one operation. If
2188
+ # you omit this parameter, the default of 20 is used.
2036
2189
  #
2037
2190
  # @option params [String] :next_token
2038
- # The token for the next set of results. Use this token to retrieve
2039
- # additional pages of service states when the result set is large.
2191
+ # Include this value, if it was returned by the previous operation, to
2192
+ # get the next set of service states.
2040
2193
  #
2041
2194
  # @option params [Boolean] :include_linked_accounts
2042
- # Specifies whether to include service states from linked AWS accounts
2043
- # in the results. Set to `true` to include linked accounts, or `false`
2044
- # to only include the current account. Defaults to `false`.
2195
+ # If you are using this operation in a monitoring account, specify
2196
+ # `true` to include service states from source accounts in the returned
2197
+ # data.
2045
2198
  #
2046
2199
  # @option params [String] :aws_account_id
2047
- # The AWS account ID to filter service states. If specified, only
2048
- # service states from this account will be returned. If not specified,
2049
- # service states from the current account (and linked accounts if
2050
- # enabled) are returned.
2200
+ # The Amazon Web Services account ID to filter service states by. Use
2201
+ # this to limit results to services from a specific account.
2051
2202
  #
2052
2203
  # @option params [Array<Types::AttributeFilter>] :attribute_filters
2053
- # An array of attribute filters to narrow down the service states
2054
- # returned. Each filter specifies an attribute name and the values to
2055
- # match against.
2204
+ # A list of attribute filters to narrow down the services. You can
2205
+ # filter by platform, environment, or other service attributes.
2056
2206
  #
2057
2207
  # @return [Types::ListServiceStatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2058
2208
  #
@@ -2097,7 +2247,7 @@ module Aws::ApplicationSignals
2097
2247
  # resp.service_states[0].latest_change_events[0].region #=> String
2098
2248
  # resp.service_states[0].latest_change_events[0].entity #=> Hash
2099
2249
  # resp.service_states[0].latest_change_events[0].entity["KeyAttributeName"] #=> String
2100
- # resp.service_states[0].latest_change_events[0].change_event_type #=> String, one of "DEPLOYMENT"
2250
+ # resp.service_states[0].latest_change_events[0].change_event_type #=> String, one of "DEPLOYMENT", "CONFIGURATION"
2101
2251
  # resp.service_states[0].latest_change_events[0].event_id #=> String
2102
2252
  # resp.service_states[0].latest_change_events[0].user_name #=> String
2103
2253
  # resp.service_states[0].latest_change_events[0].event_name #=> String
@@ -2242,19 +2392,17 @@ module Aws::ApplicationSignals
2242
2392
  req.send_request(options)
2243
2393
  end
2244
2394
 
2245
- # Creates or updates a grouping configuration that defines how services
2246
- # are organized and grouped in Application Signals dashboards and
2247
- # service maps.
2248
- #
2249
- # Grouping configurations allow you to logically organize services based
2250
- # on attributes such as environment, team ownership, or business
2251
- # function, making it easier to monitor and manage related services
2252
- # together.
2395
+ # Creates or updates the grouping configuration for this account. This
2396
+ # operation allows you to define custom grouping attributes that
2397
+ # determine how services are logically grouped based on telemetry
2398
+ # attributes, Amazon Web Services tags, or predefined mappings. These
2399
+ # grouping attributes can then be used to organize and filter services
2400
+ # in the Application Signals console and APIs.
2253
2401
  #
2254
2402
  # @option params [required, Array<Types::GroupingAttributeDefinition>] :grouping_attribute_definitions
2255
2403
  # An array of grouping attribute definitions that specify how services
2256
- # should be grouped. Each definition includes the grouping name, source
2257
- # keys, and default values.
2404
+ # should be grouped. Each definition includes a friendly name, source
2405
+ # keys to derive the grouping value from, and an optional default value.
2258
2406
  #
2259
2407
  # @return [Types::PutGroupingConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2260
2408
  #
@@ -2309,6 +2457,10 @@ module Aws::ApplicationSignals
2309
2457
  #
2310
2458
  # * `autoscaling:DescribeAutoScalingGroups`
2311
2459
  #
2460
+ # A service-linked CloudTrail event channel is created to process
2461
+ # CloudTrail events and return change event information. This includes
2462
+ # last deployment time, userName, eventName, and other event metadata.
2463
+ #
2312
2464
  # After completing this step, you still need to instrument your Java and
2313
2465
  # Python applications to send data to Application Signals. For more
2314
2466
  # information, see [ Enabling Application Signals][1].
@@ -2751,7 +2903,7 @@ module Aws::ApplicationSignals
2751
2903
  tracer: tracer
2752
2904
  )
2753
2905
  context[:gem_name] = 'aws-sdk-applicationsignals'
2754
- context[:gem_version] = '1.31.0'
2906
+ context[:gem_version] = '1.32.0'
2755
2907
  Seahorse::Client::Request.new(handlers, context)
2756
2908
  end
2757
2909
 
@@ -54,15 +54,18 @@ module Aws::ApplicationSignals
54
54
  CanaryEntity = Shapes::StructureShape.new(name: 'CanaryEntity')
55
55
  ChangeEvent = Shapes::StructureShape.new(name: 'ChangeEvent')
56
56
  ChangeEventType = Shapes::StringShape.new(name: 'ChangeEventType')
57
+ ChangeEvents = Shapes::ListShape.new(name: 'ChangeEvents')
57
58
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
58
59
  ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
59
60
  CreateServiceLevelObjectiveInput = Shapes::StructureShape.new(name: 'CreateServiceLevelObjectiveInput')
60
61
  CreateServiceLevelObjectiveOutput = Shapes::StructureShape.new(name: 'CreateServiceLevelObjectiveOutput')
62
+ DataMap = Shapes::MapShape.new(name: 'DataMap')
61
63
  DeleteGroupingConfigurationOutput = Shapes::StructureShape.new(name: 'DeleteGroupingConfigurationOutput')
62
64
  DeleteServiceLevelObjectiveInput = Shapes::StructureShape.new(name: 'DeleteServiceLevelObjectiveInput')
63
65
  DeleteServiceLevelObjectiveOutput = Shapes::StructureShape.new(name: 'DeleteServiceLevelObjectiveOutput')
64
66
  DependencyConfig = Shapes::StructureShape.new(name: 'DependencyConfig')
65
67
  DependencyGraph = Shapes::StructureShape.new(name: 'DependencyGraph')
68
+ DetailLevel = Shapes::StringShape.new(name: 'DetailLevel')
66
69
  Dimension = Shapes::StructureShape.new(name: 'Dimension')
67
70
  DimensionName = Shapes::StringShape.new(name: 'DimensionName')
68
71
  DimensionValue = Shapes::StringShape.new(name: 'DimensionValue')
@@ -101,6 +104,9 @@ module Aws::ApplicationSignals
101
104
  ListAuditFindingMaxResults = Shapes::IntegerShape.new(name: 'ListAuditFindingMaxResults')
102
105
  ListAuditFindingsInput = Shapes::StructureShape.new(name: 'ListAuditFindingsInput')
103
106
  ListAuditFindingsOutput = Shapes::StructureShape.new(name: 'ListAuditFindingsOutput')
107
+ ListEntityEventsInput = Shapes::StructureShape.new(name: 'ListEntityEventsInput')
108
+ ListEntityEventsMaxResults = Shapes::IntegerShape.new(name: 'ListEntityEventsMaxResults')
109
+ ListEntityEventsOutput = Shapes::StructureShape.new(name: 'ListEntityEventsOutput')
104
110
  ListGroupingAttributeDefinitionsInput = Shapes::StructureShape.new(name: 'ListGroupingAttributeDefinitionsInput')
105
111
  ListGroupingAttributeDefinitionsOutput = Shapes::StructureShape.new(name: 'ListGroupingAttributeDefinitionsOutput')
106
112
  ListServiceDependenciesInput = Shapes::StructureShape.new(name: 'ListServiceDependenciesInput')
@@ -278,6 +284,7 @@ module Aws::ApplicationSignals
278
284
 
279
285
  AuditorResult.add_member(:auditor, Shapes::ShapeRef.new(shape: String, location_name: "Auditor"))
280
286
  AuditorResult.add_member(:description, Shapes::ShapeRef.new(shape: AuditorResultDescriptionString, location_name: "Description"))
287
+ AuditorResult.add_member(:data, Shapes::ShapeRef.new(shape: DataMap, location_name: "Data"))
281
288
  AuditorResult.add_member(:severity, Shapes::ShapeRef.new(shape: Severity, location_name: "Severity"))
282
289
  AuditorResult.struct_class = Types::AuditorResult
283
290
 
@@ -333,6 +340,8 @@ module Aws::ApplicationSignals
333
340
  ChangeEvent.add_member(:event_name, Shapes::ShapeRef.new(shape: String, location_name: "EventName"))
334
341
  ChangeEvent.struct_class = Types::ChangeEvent
335
342
 
343
+ ChangeEvents.member = Shapes::ShapeRef.new(shape: ChangeEvent)
344
+
336
345
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
337
346
  ConflictException.struct_class = Types::ConflictException
338
347
 
@@ -348,6 +357,9 @@ module Aws::ApplicationSignals
348
357
  CreateServiceLevelObjectiveOutput.add_member(:slo, Shapes::ShapeRef.new(shape: ServiceLevelObjective, required: true, location_name: "Slo"))
349
358
  CreateServiceLevelObjectiveOutput.struct_class = Types::CreateServiceLevelObjectiveOutput
350
359
 
360
+ DataMap.key = Shapes::ShapeRef.new(shape: String)
361
+ DataMap.value = Shapes::ShapeRef.new(shape: String)
362
+
351
363
  DeleteGroupingConfigurationOutput.struct_class = Types::DeleteGroupingConfigurationOutput
352
364
 
353
365
  DeleteServiceLevelObjectiveInput.add_member(:id, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveId, required: true, location: "uri", location_name: "Id"))
@@ -434,15 +446,33 @@ module Aws::ApplicationSignals
434
446
  ListAuditFindingsInput.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location: "querystring", location_name: "EndTime"))
435
447
  ListAuditFindingsInput.add_member(:auditors, Shapes::ShapeRef.new(shape: Auditors, location_name: "Auditors"))
436
448
  ListAuditFindingsInput.add_member(:audit_targets, Shapes::ShapeRef.new(shape: AuditTargets, required: true, location_name: "AuditTargets"))
449
+ ListAuditFindingsInput.add_member(:detail_level, Shapes::ShapeRef.new(shape: DetailLevel, location_name: "DetailLevel"))
437
450
  ListAuditFindingsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
438
451
  ListAuditFindingsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListAuditFindingMaxResults, location_name: "MaxResults"))
439
452
  ListAuditFindingsInput.struct_class = Types::ListAuditFindingsInput
440
453
 
454
+ ListAuditFindingsOutput.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTime"))
455
+ ListAuditFindingsOutput.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTime"))
441
456
  ListAuditFindingsOutput.add_member(:audit_findings, Shapes::ShapeRef.new(shape: AuditFindings, required: true, location_name: "AuditFindings"))
442
457
  ListAuditFindingsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
443
458
  ListAuditFindingsOutput.struct_class = Types::ListAuditFindingsOutput
444
459
 
460
+ ListEntityEventsInput.add_member(:entity, Shapes::ShapeRef.new(shape: Attributes, required: true, location_name: "Entity"))
461
+ ListEntityEventsInput.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "StartTime"))
462
+ ListEntityEventsInput.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "EndTime"))
463
+ ListEntityEventsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListEntityEventsMaxResults, location: "querystring", location_name: "MaxResults"))
464
+ ListEntityEventsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "NextToken"))
465
+ ListEntityEventsInput.struct_class = Types::ListEntityEventsInput
466
+
467
+ ListEntityEventsOutput.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "StartTime"))
468
+ ListEntityEventsOutput.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "EndTime"))
469
+ ListEntityEventsOutput.add_member(:change_events, Shapes::ShapeRef.new(shape: ChangeEvents, required: true, location_name: "ChangeEvents"))
470
+ ListEntityEventsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
471
+ ListEntityEventsOutput.struct_class = Types::ListEntityEventsOutput
472
+
445
473
  ListGroupingAttributeDefinitionsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "NextToken"))
474
+ ListGroupingAttributeDefinitionsInput.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, location: "querystring", location_name: "AwsAccountId"))
475
+ ListGroupingAttributeDefinitionsInput.add_member(:include_linked_accounts, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "IncludeLinkedAccounts"))
446
476
  ListGroupingAttributeDefinitionsInput.struct_class = Types::ListGroupingAttributeDefinitionsInput
447
477
 
448
478
  ListGroupingAttributeDefinitionsOutput.add_member(:grouping_attribute_definitions, Shapes::ShapeRef.new(shape: GroupingAttributeDefinitions, required: true, location_name: "GroupingAttributeDefinitions"))
@@ -949,6 +979,22 @@ module Aws::ApplicationSignals
949
979
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
950
980
  end)
951
981
 
982
+ api.add_operation(:list_entity_events, Seahorse::Model::Operation.new.tap do |o|
983
+ o.name = "ListEntityEvents"
984
+ o.http_method = "POST"
985
+ o.http_request_uri = "/events"
986
+ o.input = Shapes::ShapeRef.new(shape: ListEntityEventsInput)
987
+ o.output = Shapes::ShapeRef.new(shape: ListEntityEventsOutput)
988
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
989
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
990
+ o[:pager] = Aws::Pager.new(
991
+ limit_key: "max_results",
992
+ tokens: {
993
+ "next_token" => "next_token"
994
+ }
995
+ )
996
+ end)
997
+
952
998
  api.add_operation(:list_grouping_attribute_definitions, Seahorse::Model::Operation.new.tap do |o|
953
999
  o.name = "ListGroupingAttributeDefinitions"
954
1000
  o.http_method = "POST"