aws-sdk-applicationsignals 1.27.0 → 1.28.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationsignals/client.rb +386 -17
- data/lib/aws-sdk-applicationsignals/client_api.rb +285 -1
- data/lib/aws-sdk-applicationsignals/types.rb +842 -21
- data/lib/aws-sdk-applicationsignals.rb +1 -1
- data/sig/client.rbs +105 -2
- data/sig/types.rbs +203 -1
- metadata +1 -1
@@ -23,6 +23,166 @@ module Aws::ApplicationSignals
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
+
# A structure that defines a filter for narrowing down results based on
|
27
|
+
# specific attribute values. This can be used to filter services by
|
28
|
+
# platform, environment, or other service characteristics.
|
29
|
+
#
|
30
|
+
# @!attribute [rw] attribute_filter_name
|
31
|
+
# The name of the attribute to filter by, such as `Platform`,
|
32
|
+
# `Environment`, or `BusinessUnit`.
|
33
|
+
# @return [String]
|
34
|
+
#
|
35
|
+
# @!attribute [rw] attribute_filter_values
|
36
|
+
# An array of values to match for the specified attribute. Services
|
37
|
+
# that have any of these values for the attribute will be included in
|
38
|
+
# the results.
|
39
|
+
# @return [Array<String>]
|
40
|
+
#
|
41
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/AttributeFilter AWS API Documentation
|
42
|
+
#
|
43
|
+
class AttributeFilter < Struct.new(
|
44
|
+
:attribute_filter_name,
|
45
|
+
:attribute_filter_values)
|
46
|
+
SENSITIVE = []
|
47
|
+
include Aws::Structure
|
48
|
+
end
|
49
|
+
|
50
|
+
# A structure that contains information about an audit finding, which
|
51
|
+
# represents an automated analysis result about service behavior,
|
52
|
+
# performance issues, or potential problems identified through heuristic
|
53
|
+
# algorithms.
|
54
|
+
#
|
55
|
+
# @!attribute [rw] key_attributes
|
56
|
+
# The key attributes that identify the service or entity this audit
|
57
|
+
# finding relates to. This is a string-to-string map that includes
|
58
|
+
# fields like Type, Name, and Environment.
|
59
|
+
# @return [Hash<String,String>]
|
60
|
+
#
|
61
|
+
# @!attribute [rw] auditor_results
|
62
|
+
# An array of auditor results that contain the specific findings,
|
63
|
+
# descriptions, and severity levels identified by different auditing
|
64
|
+
# algorithms.
|
65
|
+
# @return [Array<Types::AuditorResult>]
|
66
|
+
#
|
67
|
+
# @!attribute [rw] operation
|
68
|
+
# The name of the operation associated with this audit finding, if the
|
69
|
+
# finding is specific to a particular service operation.
|
70
|
+
# @return [String]
|
71
|
+
#
|
72
|
+
# @!attribute [rw] metric_graph
|
73
|
+
# A structure containing metric data queries and time range
|
74
|
+
# information that provides context for the audit finding through
|
75
|
+
# relevant performance metrics.
|
76
|
+
# @return [Types::MetricGraph]
|
77
|
+
#
|
78
|
+
# @!attribute [rw] dependency_graph
|
79
|
+
# A structure containing nodes and edges that represent the dependency
|
80
|
+
# relationships relevant to this audit finding, helping to understand
|
81
|
+
# the context and potential impact.
|
82
|
+
# @return [Types::DependencyGraph]
|
83
|
+
#
|
84
|
+
# @!attribute [rw] type
|
85
|
+
# The type of audit finding.
|
86
|
+
# @return [String]
|
87
|
+
#
|
88
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/AuditFinding AWS API Documentation
|
89
|
+
#
|
90
|
+
class AuditFinding < Struct.new(
|
91
|
+
:key_attributes,
|
92
|
+
:auditor_results,
|
93
|
+
:operation,
|
94
|
+
:metric_graph,
|
95
|
+
:dependency_graph,
|
96
|
+
:type)
|
97
|
+
SENSITIVE = []
|
98
|
+
include Aws::Structure
|
99
|
+
end
|
100
|
+
|
101
|
+
# A structure that specifies the target entity for audit analysis, such
|
102
|
+
# as a `service`, `SLO`, or `service_operation`.
|
103
|
+
#
|
104
|
+
# @!attribute [rw] type
|
105
|
+
# The type of entity being audited, such as `Service`, `SLO`, or
|
106
|
+
# `ServiceOperation`.
|
107
|
+
# @return [String]
|
108
|
+
#
|
109
|
+
# @!attribute [rw] data
|
110
|
+
# The specific data identifying the audit target entity.
|
111
|
+
# @return [Types::AuditTargetEntity]
|
112
|
+
#
|
113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/AuditTarget AWS API Documentation
|
114
|
+
#
|
115
|
+
class AuditTarget < Struct.new(
|
116
|
+
:type,
|
117
|
+
:data)
|
118
|
+
SENSITIVE = []
|
119
|
+
include Aws::Structure
|
120
|
+
end
|
121
|
+
|
122
|
+
# A union structure that contains the specific entity information for
|
123
|
+
# different types of audit targets.
|
124
|
+
#
|
125
|
+
# @note AuditTargetEntity is a union - when making an API calls you must set exactly one of the members.
|
126
|
+
#
|
127
|
+
# @!attribute [rw] service
|
128
|
+
# Service entity information when the audit target is a service.
|
129
|
+
# @return [Types::ServiceEntity]
|
130
|
+
#
|
131
|
+
# @!attribute [rw] slo
|
132
|
+
# SLO entity information when the audit target is a service level
|
133
|
+
# objective.
|
134
|
+
# @return [Types::ServiceLevelObjectiveEntity]
|
135
|
+
#
|
136
|
+
# @!attribute [rw] service_operation
|
137
|
+
# Service operation entity information when the audit target is a
|
138
|
+
# specific service operation.
|
139
|
+
# @return [Types::ServiceOperationEntity]
|
140
|
+
#
|
141
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/AuditTargetEntity AWS API Documentation
|
142
|
+
#
|
143
|
+
class AuditTargetEntity < Struct.new(
|
144
|
+
:service,
|
145
|
+
:slo,
|
146
|
+
:service_operation,
|
147
|
+
:unknown)
|
148
|
+
SENSITIVE = []
|
149
|
+
include Aws::Structure
|
150
|
+
include Aws::Structure::Union
|
151
|
+
|
152
|
+
class Service < AuditTargetEntity; end
|
153
|
+
class Slo < AuditTargetEntity; end
|
154
|
+
class ServiceOperation < AuditTargetEntity; end
|
155
|
+
class Unknown < AuditTargetEntity; end
|
156
|
+
end
|
157
|
+
|
158
|
+
# A structure that contains the result of an automated audit analysis,
|
159
|
+
# including the auditor name, description of findings, and severity
|
160
|
+
# level.
|
161
|
+
#
|
162
|
+
# @!attribute [rw] auditor
|
163
|
+
# The name of the auditor algorithm that generated this result.
|
164
|
+
# @return [String]
|
165
|
+
#
|
166
|
+
# @!attribute [rw] description
|
167
|
+
# A detailed description of the audit finding, explaining what was
|
168
|
+
# observed and potential implications.
|
169
|
+
# @return [String]
|
170
|
+
#
|
171
|
+
# @!attribute [rw] severity
|
172
|
+
# The severity level of this audit finding, indicating the importance
|
173
|
+
# and potential impact of the issue.
|
174
|
+
# @return [String]
|
175
|
+
#
|
176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/AuditorResult AWS API Documentation
|
177
|
+
#
|
178
|
+
class AuditorResult < Struct.new(
|
179
|
+
:auditor,
|
180
|
+
:description,
|
181
|
+
:severity)
|
182
|
+
SENSITIVE = []
|
183
|
+
include Aws::Structure
|
184
|
+
end
|
185
|
+
|
26
186
|
# @!attribute [rw] timestamp
|
27
187
|
# The date and time that you want the report to be for. It is
|
28
188
|
# expressed as the number of milliseconds since Jan 1, 1970 00:00:00
|
@@ -199,6 +359,58 @@ module Aws::ApplicationSignals
|
|
199
359
|
include Aws::Structure
|
200
360
|
end
|
201
361
|
|
362
|
+
# A structure that contains information about a change event that
|
363
|
+
# occurred for a service, such as a deployment or configuration change.
|
364
|
+
#
|
365
|
+
# @!attribute [rw] timestamp
|
366
|
+
# The timestamp when this change event occurred. When used in a raw
|
367
|
+
# HTTP Query API, it is formatted as epoch time in seconds.
|
368
|
+
# @return [Time]
|
369
|
+
#
|
370
|
+
# @!attribute [rw] account_id
|
371
|
+
# The Amazon Web Services account ID where this change event occurred.
|
372
|
+
# @return [String]
|
373
|
+
#
|
374
|
+
# @!attribute [rw] region
|
375
|
+
# The Amazon Web Services region where this change event occurred.
|
376
|
+
# @return [String]
|
377
|
+
#
|
378
|
+
# @!attribute [rw] entity
|
379
|
+
# The entity (service or resource) that was affected by this change
|
380
|
+
# event, including its key attributes.
|
381
|
+
# @return [Hash<String,String>]
|
382
|
+
#
|
383
|
+
# @!attribute [rw] change_event_type
|
384
|
+
# The type of change event that occurred, such as `DEPLOYMENT`.
|
385
|
+
# @return [String]
|
386
|
+
#
|
387
|
+
# @!attribute [rw] event_id
|
388
|
+
# A unique identifier for this change event.
|
389
|
+
# @return [String]
|
390
|
+
#
|
391
|
+
# @!attribute [rw] user_name
|
392
|
+
# The name of the user who initiated this change event, if available.
|
393
|
+
# @return [String]
|
394
|
+
#
|
395
|
+
# @!attribute [rw] event_name
|
396
|
+
# The name or description of this change event.
|
397
|
+
# @return [String]
|
398
|
+
#
|
399
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ChangeEvent AWS API Documentation
|
400
|
+
#
|
401
|
+
class ChangeEvent < Struct.new(
|
402
|
+
:timestamp,
|
403
|
+
:account_id,
|
404
|
+
:region,
|
405
|
+
:entity,
|
406
|
+
:change_event_type,
|
407
|
+
:event_id,
|
408
|
+
:user_name,
|
409
|
+
:event_name)
|
410
|
+
SENSITIVE = []
|
411
|
+
include Aws::Structure
|
412
|
+
end
|
413
|
+
|
202
414
|
# This operation attempted to create a resource that already exists.
|
203
415
|
#
|
204
416
|
# @!attribute [rw] message
|
@@ -286,6 +498,10 @@ module Aws::ApplicationSignals
|
|
286
498
|
include Aws::Structure
|
287
499
|
end
|
288
500
|
|
501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/DeleteGroupingConfigurationOutput AWS API Documentation
|
502
|
+
#
|
503
|
+
class DeleteGroupingConfigurationOutput < Aws::EmptyStructure; end
|
504
|
+
|
289
505
|
# @!attribute [rw] id
|
290
506
|
# The ARN or name of the service level objective to delete.
|
291
507
|
# @return [String]
|
@@ -346,6 +562,29 @@ module Aws::ApplicationSignals
|
|
346
562
|
include Aws::Structure
|
347
563
|
end
|
348
564
|
|
565
|
+
# A structure that represents the dependency relationships relevant to
|
566
|
+
# an audit finding, containing nodes and edges that show how services
|
567
|
+
# and resources are connected.
|
568
|
+
#
|
569
|
+
# @!attribute [rw] nodes
|
570
|
+
# An array of nodes representing the services, resources, or other
|
571
|
+
# entities in the dependency graph.
|
572
|
+
# @return [Array<Types::Node>]
|
573
|
+
#
|
574
|
+
# @!attribute [rw] edges
|
575
|
+
# An array of edges representing the connections and relationships
|
576
|
+
# between the nodes in the dependency graph.
|
577
|
+
# @return [Array<Types::Edge>]
|
578
|
+
#
|
579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/DependencyGraph AWS API Documentation
|
580
|
+
#
|
581
|
+
class DependencyGraph < Struct.new(
|
582
|
+
:nodes,
|
583
|
+
:edges)
|
584
|
+
SENSITIVE = []
|
585
|
+
include Aws::Structure
|
586
|
+
end
|
587
|
+
|
349
588
|
# A dimension is a name/value pair that is part of the identity of a
|
350
589
|
# metric. Because dimensions are part of the unique identifier for a
|
351
590
|
# metric, whenever you add a unique name/value pair to one of your
|
@@ -378,6 +617,39 @@ module Aws::ApplicationSignals
|
|
378
617
|
include Aws::Structure
|
379
618
|
end
|
380
619
|
|
620
|
+
# A structure that represents a connection between two nodes in a
|
621
|
+
# dependency graph, showing the relationship and characteristics of the
|
622
|
+
# connection.
|
623
|
+
#
|
624
|
+
# @!attribute [rw] source_node_id
|
625
|
+
# The identifier of the source node in this edge connection.
|
626
|
+
# @return [String]
|
627
|
+
#
|
628
|
+
# @!attribute [rw] destination_node_id
|
629
|
+
# The identifier of the destination node in this edge connection.
|
630
|
+
# @return [String]
|
631
|
+
#
|
632
|
+
# @!attribute [rw] duration
|
633
|
+
# The duration or latency associated with this connection, if
|
634
|
+
# applicable.
|
635
|
+
# @return [Float]
|
636
|
+
#
|
637
|
+
# @!attribute [rw] connection_type
|
638
|
+
# The type of connection between the nodes, indicating the nature of
|
639
|
+
# the relationship.
|
640
|
+
# @return [String]
|
641
|
+
#
|
642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/Edge AWS API Documentation
|
643
|
+
#
|
644
|
+
class Edge < Struct.new(
|
645
|
+
:source_node_id,
|
646
|
+
:destination_node_id,
|
647
|
+
:duration,
|
648
|
+
:connection_type)
|
649
|
+
SENSITIVE = []
|
650
|
+
include Aws::Structure
|
651
|
+
end
|
652
|
+
|
381
653
|
# The core SLO time window exclusion object that includes Window,
|
382
654
|
# StartTime, RecurrenceRule, and Reason.
|
383
655
|
#
|
@@ -583,6 +855,63 @@ module Aws::ApplicationSignals
|
|
583
855
|
include Aws::Structure
|
584
856
|
end
|
585
857
|
|
858
|
+
# A structure that defines how services should be grouped based on
|
859
|
+
# specific attributes. This includes the friendly name for the grouping,
|
860
|
+
# the source keys to derive values from, and an optional default value.
|
861
|
+
#
|
862
|
+
# @!attribute [rw] grouping_name
|
863
|
+
# The friendly name for this grouping attribute, such as
|
864
|
+
# `BusinessUnit` or `Environment`. This name is used to identify the
|
865
|
+
# grouping in the console and APIs.
|
866
|
+
# @return [String]
|
867
|
+
#
|
868
|
+
# @!attribute [rw] grouping_source_keys
|
869
|
+
# An array of source keys used to derive the grouping attribute value
|
870
|
+
# from telemetry data, Amazon Web Services tags, or other sources. For
|
871
|
+
# example, \["business\_unit", "team"\] would look for values in
|
872
|
+
# those fields.
|
873
|
+
# @return [Array<String>]
|
874
|
+
#
|
875
|
+
# @!attribute [rw] default_grouping_value
|
876
|
+
# The default value to use for this grouping attribute when no value
|
877
|
+
# can be derived from the source keys. This ensures all services have
|
878
|
+
# a grouping value even if the source data is missing.
|
879
|
+
# @return [String]
|
880
|
+
#
|
881
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/GroupingAttributeDefinition AWS API Documentation
|
882
|
+
#
|
883
|
+
class GroupingAttributeDefinition < Struct.new(
|
884
|
+
:grouping_name,
|
885
|
+
:grouping_source_keys,
|
886
|
+
:default_grouping_value)
|
887
|
+
SENSITIVE = []
|
888
|
+
include Aws::Structure
|
889
|
+
end
|
890
|
+
|
891
|
+
# A structure that contains the complete grouping configuration for an
|
892
|
+
# account, including all defined grouping attributes and metadata about
|
893
|
+
# when it was last updated.
|
894
|
+
#
|
895
|
+
# @!attribute [rw] grouping_attribute_definitions
|
896
|
+
# An array of grouping attribute definitions that specify how services
|
897
|
+
# should be grouped based on various attributes and source keys.
|
898
|
+
# @return [Array<Types::GroupingAttributeDefinition>]
|
899
|
+
#
|
900
|
+
# @!attribute [rw] updated_at
|
901
|
+
# The timestamp when this grouping configuration was last updated.
|
902
|
+
# When used in a raw HTTP Query API, it is formatted as epoch time in
|
903
|
+
# seconds.
|
904
|
+
# @return [Time]
|
905
|
+
#
|
906
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/GroupingConfiguration AWS API Documentation
|
907
|
+
#
|
908
|
+
class GroupingConfiguration < Struct.new(
|
909
|
+
:grouping_attribute_definitions,
|
910
|
+
:updated_at)
|
911
|
+
SENSITIVE = []
|
912
|
+
include Aws::Structure
|
913
|
+
end
|
914
|
+
|
586
915
|
# The time period used to evaluate the SLO. It can be either a calendar
|
587
916
|
# interval or rolling interval.
|
588
917
|
#
|
@@ -615,6 +944,145 @@ module Aws::ApplicationSignals
|
|
615
944
|
class Unknown < Interval; end
|
616
945
|
end
|
617
946
|
|
947
|
+
# @!attribute [rw] start_time
|
948
|
+
# The start of the time period to retrieve audit findings for. When
|
949
|
+
# used in a raw HTTP Query API, it is formatted as epoch time in
|
950
|
+
# seconds. For example, `1698778057`
|
951
|
+
# @return [Time]
|
952
|
+
#
|
953
|
+
# @!attribute [rw] end_time
|
954
|
+
# The end of the time period to retrieve audit findings for. When used
|
955
|
+
# in a raw HTTP Query API, it is formatted as epoch time in seconds.
|
956
|
+
# For example, `1698778057`
|
957
|
+
# @return [Time]
|
958
|
+
#
|
959
|
+
# @!attribute [rw] auditors
|
960
|
+
# A list of auditor names to filter the findings by. Only findings
|
961
|
+
# generated by the specified auditors will be returned.
|
962
|
+
#
|
963
|
+
# The following auditors are available for configuration:
|
964
|
+
#
|
965
|
+
# * `slo` - SloAuditor: Identifies SLO violations and detects breached
|
966
|
+
# thresholds during the Assessment phase.
|
967
|
+
#
|
968
|
+
# * `operation_metric` - OperationMetricAuditor: Detects anomalies in
|
969
|
+
# service operation metrics from Application Signals RED metrics
|
970
|
+
# during the Assessment phase
|
971
|
+
#
|
972
|
+
# * `service_quota` - ServiceQuotaAuditor: Monitors resource
|
973
|
+
# utilization against service quotas during the Assessment phase
|
974
|
+
#
|
975
|
+
# * `trace` - TraceAuditor: Performs deep-dive analysis of distributed
|
976
|
+
# traces, correlating traces with breached SLOs or abnormal RED
|
977
|
+
# metrics during the Analysis phase
|
978
|
+
#
|
979
|
+
# * `dependency_metric` - CriticalPathAuditor: Analyzes service
|
980
|
+
# dependency impacts and maps dependency relationships from
|
981
|
+
# Application Signals RED metrics during the Analysis phase
|
982
|
+
#
|
983
|
+
# * `top_contributor` - TopContributorAuditor: Identifies
|
984
|
+
# infrastructure-level contributors to issues by analyzing EMF logs
|
985
|
+
# of Application Signals RED metrics during the Analysis phase
|
986
|
+
#
|
987
|
+
# * `log` - LogAuditor: Extracts insights from application logs,
|
988
|
+
# categorizing error types and ranking severity by frequency during
|
989
|
+
# the Analysis phase
|
990
|
+
#
|
991
|
+
# <note markdown="1"> `InitAuditor` and `Summarizer` auditors are not configurable as they
|
992
|
+
# are automatically triggered during the audit process.
|
993
|
+
#
|
994
|
+
# </note>
|
995
|
+
# @return [Array<String>]
|
996
|
+
#
|
997
|
+
# @!attribute [rw] audit_targets
|
998
|
+
# A list of audit targets to filter the findings by. You can specify
|
999
|
+
# services, SLOs, or service operations to limit the audit findings to
|
1000
|
+
# specific entities.
|
1001
|
+
# @return [Array<Types::AuditTarget>]
|
1002
|
+
#
|
1003
|
+
# @!attribute [rw] next_token
|
1004
|
+
# Include this value, if it was returned by the previous operation, to
|
1005
|
+
# get the next set of audit findings.
|
1006
|
+
# @return [String]
|
1007
|
+
#
|
1008
|
+
# @!attribute [rw] max_results
|
1009
|
+
# The maximum number of audit findings to return in one operation. If
|
1010
|
+
# you omit this parameter, the default of 10 is used.
|
1011
|
+
# @return [Integer]
|
1012
|
+
#
|
1013
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListAuditFindingsInput AWS API Documentation
|
1014
|
+
#
|
1015
|
+
class ListAuditFindingsInput < Struct.new(
|
1016
|
+
:start_time,
|
1017
|
+
:end_time,
|
1018
|
+
:auditors,
|
1019
|
+
:audit_targets,
|
1020
|
+
:next_token,
|
1021
|
+
:max_results)
|
1022
|
+
SENSITIVE = []
|
1023
|
+
include Aws::Structure
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
# @!attribute [rw] audit_findings
|
1027
|
+
# An array of structures, where each structure contains information
|
1028
|
+
# about one audit finding, including the auditor results, severity,
|
1029
|
+
# and associated metric and dependency graphs.
|
1030
|
+
# @return [Array<Types::AuditFinding>]
|
1031
|
+
#
|
1032
|
+
# @!attribute [rw] next_token
|
1033
|
+
# Include this value in your next use of this API to get the next set
|
1034
|
+
# of audit findings.
|
1035
|
+
# @return [String]
|
1036
|
+
#
|
1037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListAuditFindingsOutput AWS API Documentation
|
1038
|
+
#
|
1039
|
+
class ListAuditFindingsOutput < Struct.new(
|
1040
|
+
:audit_findings,
|
1041
|
+
:next_token)
|
1042
|
+
SENSITIVE = []
|
1043
|
+
include Aws::Structure
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
# @!attribute [rw] next_token
|
1047
|
+
# Include this value, if it was returned by the previous operation, to
|
1048
|
+
# get the next set of grouping attribute definitions.
|
1049
|
+
# @return [String]
|
1050
|
+
#
|
1051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListGroupingAttributeDefinitionsInput AWS API Documentation
|
1052
|
+
#
|
1053
|
+
class ListGroupingAttributeDefinitionsInput < Struct.new(
|
1054
|
+
:next_token)
|
1055
|
+
SENSITIVE = []
|
1056
|
+
include Aws::Structure
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
# @!attribute [rw] grouping_attribute_definitions
|
1060
|
+
# An array of structures, where each structure contains information
|
1061
|
+
# about one grouping attribute definition, including the grouping
|
1062
|
+
# name, source keys, and default values.
|
1063
|
+
# @return [Array<Types::GroupingAttributeDefinition>]
|
1064
|
+
#
|
1065
|
+
# @!attribute [rw] updated_at
|
1066
|
+
# The timestamp when the grouping configuration was last updated. When
|
1067
|
+
# used in a raw HTTP Query API, it is formatted as epoch time in
|
1068
|
+
# seconds.
|
1069
|
+
# @return [Time]
|
1070
|
+
#
|
1071
|
+
# @!attribute [rw] next_token
|
1072
|
+
# Include this value in your next use of this API to get the next set
|
1073
|
+
# of grouping attribute definitions.
|
1074
|
+
# @return [String]
|
1075
|
+
#
|
1076
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListGroupingAttributeDefinitionsOutput AWS API Documentation
|
1077
|
+
#
|
1078
|
+
class ListGroupingAttributeDefinitionsOutput < Struct.new(
|
1079
|
+
:grouping_attribute_definitions,
|
1080
|
+
:updated_at,
|
1081
|
+
:next_token)
|
1082
|
+
SENSITIVE = []
|
1083
|
+
include Aws::Structure
|
1084
|
+
end
|
1085
|
+
|
618
1086
|
# @!attribute [rw] start_time
|
619
1087
|
# The start of the time period to retrieve information about. When
|
620
1088
|
# used in a raw HTTP Query API, it is formatted as be epoch time in
|
@@ -829,12 +1297,12 @@ module Aws::ApplicationSignals
|
|
829
1297
|
#
|
830
1298
|
# @!attribute [rw] max_results
|
831
1299
|
# The maximum number of results to return in one operation. If you
|
832
|
-
# omit this parameter, the default of 50 is used.
|
1300
|
+
# omit this parameter, the default of 50 is used.
|
833
1301
|
# @return [Integer]
|
834
1302
|
#
|
835
1303
|
# @!attribute [rw] next_token
|
836
1304
|
# Include this value, if it was returned by the previous operation, to
|
837
|
-
# get the next set of service level objectives.
|
1305
|
+
# get the next set of service level objectives.
|
838
1306
|
# @return [String]
|
839
1307
|
#
|
840
1308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListServiceLevelObjectiveExclusionWindowsInput AWS API Documentation
|
@@ -853,7 +1321,7 @@ module Aws::ApplicationSignals
|
|
853
1321
|
#
|
854
1322
|
# @!attribute [rw] next_token
|
855
1323
|
# Include this value, if it was returned by the previous operation, to
|
856
|
-
# get the next set of service level objectives.
|
1324
|
+
# get the next set of service level objectives.
|
857
1325
|
# @return [String]
|
858
1326
|
#
|
859
1327
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListServiceLevelObjectiveExclusionWindowsOutput AWS API Documentation
|
@@ -908,6 +1376,21 @@ module Aws::ApplicationSignals
|
|
908
1376
|
# get the next set of service level objectives.
|
909
1377
|
# @return [String]
|
910
1378
|
#
|
1379
|
+
# @!attribute [rw] include_linked_accounts
|
1380
|
+
# If you are using this operation in a monitoring account, specify
|
1381
|
+
# `true` to include SLO from source accounts in the returned data.
|
1382
|
+
#
|
1383
|
+
# When you are monitoring an account, you can use Amazon Web Services
|
1384
|
+
# account ID in `KeyAttribute` filter for service source account and
|
1385
|
+
# `SloOwnerawsaccountID` for SLO source account with
|
1386
|
+
# `IncludeLinkedAccounts` to filter the returned data to only a single
|
1387
|
+
# source account.
|
1388
|
+
# @return [Boolean]
|
1389
|
+
#
|
1390
|
+
# @!attribute [rw] slo_owner_aws_account_id
|
1391
|
+
# SLO's Amazon Web Services account ID.
|
1392
|
+
# @return [String]
|
1393
|
+
#
|
911
1394
|
# @!attribute [rw] metric_source_types
|
912
1395
|
# Use this optional field to only include SLOs with the specified
|
913
1396
|
# metric source types in the output. Supported types are:
|
@@ -919,20 +1402,6 @@ module Aws::ApplicationSignals
|
|
919
1402
|
# * CloudWatch metric
|
920
1403
|
# @return [Array<String>]
|
921
1404
|
#
|
922
|
-
# @!attribute [rw] include_linked_accounts
|
923
|
-
# If you are using this operation in a monitoring account, specify
|
924
|
-
# `true` to include SLO from source accounts in the returned data.
|
925
|
-
# </p> <p>When you are monitoring an account, you can use Amazon Web
|
926
|
-
# Services account ID in <code>KeyAttribute</code> filter for service
|
927
|
-
# source account and <code>SloOwnerawsaccountID</code> for SLO source
|
928
|
-
# account with <code>IncludeLinkedAccounts</code> to filter the
|
929
|
-
# returned data to only a single source account. </p>
|
930
|
-
# @return [Boolean]
|
931
|
-
#
|
932
|
-
# @!attribute [rw] slo_owner_aws_account_id
|
933
|
-
# SLO's Amazon Web Services account ID.
|
934
|
-
# @return [String]
|
935
|
-
#
|
936
1405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListServiceLevelObjectivesInput AWS API Documentation
|
937
1406
|
#
|
938
1407
|
class ListServiceLevelObjectivesInput < Struct.new(
|
@@ -941,9 +1410,9 @@ module Aws::ApplicationSignals
|
|
941
1410
|
:dependency_config,
|
942
1411
|
:max_results,
|
943
1412
|
:next_token,
|
944
|
-
:metric_source_types,
|
945
1413
|
:include_linked_accounts,
|
946
|
-
:slo_owner_aws_account_id
|
1414
|
+
:slo_owner_aws_account_id,
|
1415
|
+
:metric_source_types)
|
947
1416
|
SENSITIVE = []
|
948
1417
|
include Aws::Structure
|
949
1418
|
end
|
@@ -1071,6 +1540,92 @@ module Aws::ApplicationSignals
|
|
1071
1540
|
include Aws::Structure
|
1072
1541
|
end
|
1073
1542
|
|
1543
|
+
# @!attribute [rw] start_time
|
1544
|
+
# The start of the time period to retrieve service state information
|
1545
|
+
# for. When used in a raw HTTP Query API, it is formatted as epoch
|
1546
|
+
# time in seconds. For example, `1698778057`.
|
1547
|
+
# @return [Time]
|
1548
|
+
#
|
1549
|
+
# @!attribute [rw] end_time
|
1550
|
+
# The end of the time period to retrieve service state information
|
1551
|
+
# for. When used in a raw HTTP Query API, it is formatted as epoch
|
1552
|
+
# time in seconds. For example, `1698778057`.
|
1553
|
+
# @return [Time]
|
1554
|
+
#
|
1555
|
+
# @!attribute [rw] max_results
|
1556
|
+
# The maximum number of service states to return in one operation. If
|
1557
|
+
# you omit this parameter, the default of 20 is used.
|
1558
|
+
# @return [Integer]
|
1559
|
+
#
|
1560
|
+
# @!attribute [rw] next_token
|
1561
|
+
# Include this value, if it was returned by the previous operation, to
|
1562
|
+
# get the next set of service states.
|
1563
|
+
# @return [String]
|
1564
|
+
#
|
1565
|
+
# @!attribute [rw] include_linked_accounts
|
1566
|
+
# If you are using this operation in a monitoring account, specify
|
1567
|
+
# `true` to include service states from source accounts in the
|
1568
|
+
# returned data.
|
1569
|
+
# @return [Boolean]
|
1570
|
+
#
|
1571
|
+
# @!attribute [rw] aws_account_id
|
1572
|
+
# The Amazon Web Services account ID to filter service states by. Use
|
1573
|
+
# this to limit results to services from a specific account.
|
1574
|
+
# @return [String]
|
1575
|
+
#
|
1576
|
+
# @!attribute [rw] attribute_filters
|
1577
|
+
# A list of attribute filters to narrow down the services. You can
|
1578
|
+
# filter by platform, environment, or other service attributes.
|
1579
|
+
# @return [Array<Types::AttributeFilter>]
|
1580
|
+
#
|
1581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListServiceStatesInput AWS API Documentation
|
1582
|
+
#
|
1583
|
+
class ListServiceStatesInput < Struct.new(
|
1584
|
+
:start_time,
|
1585
|
+
:end_time,
|
1586
|
+
:max_results,
|
1587
|
+
:next_token,
|
1588
|
+
:include_linked_accounts,
|
1589
|
+
:aws_account_id,
|
1590
|
+
:attribute_filters)
|
1591
|
+
SENSITIVE = []
|
1592
|
+
include Aws::Structure
|
1593
|
+
end
|
1594
|
+
|
1595
|
+
# @!attribute [rw] start_time
|
1596
|
+
# The start of the time period that the returned information applies
|
1597
|
+
# to. When used in a raw HTTP Query API, it is formatted as epoch time
|
1598
|
+
# in seconds. For example, `1698778057`.
|
1599
|
+
# @return [Time]
|
1600
|
+
#
|
1601
|
+
# @!attribute [rw] end_time
|
1602
|
+
# The end of the time period that the returned information applies to.
|
1603
|
+
# When used in a raw HTTP Query API, it is formatted as epoch time in
|
1604
|
+
# seconds. For example, `1698778057`.
|
1605
|
+
# @return [Time]
|
1606
|
+
#
|
1607
|
+
# @!attribute [rw] service_states
|
1608
|
+
# An array of structures, where each structure contains information
|
1609
|
+
# about the state of one service, including its latest change events
|
1610
|
+
# such as deployments.
|
1611
|
+
# @return [Array<Types::ServiceState>]
|
1612
|
+
#
|
1613
|
+
# @!attribute [rw] next_token
|
1614
|
+
# Include this value in your next use of this API to get the next set
|
1615
|
+
# of service states.
|
1616
|
+
# @return [String]
|
1617
|
+
#
|
1618
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ListServiceStatesOutput AWS API Documentation
|
1619
|
+
#
|
1620
|
+
class ListServiceStatesOutput < Struct.new(
|
1621
|
+
:start_time,
|
1622
|
+
:end_time,
|
1623
|
+
:service_states,
|
1624
|
+
:next_token)
|
1625
|
+
SENSITIVE = []
|
1626
|
+
include Aws::Structure
|
1627
|
+
end
|
1628
|
+
|
1074
1629
|
# @!attribute [rw] start_time
|
1075
1630
|
# The start of the time period to retrieve information about. When
|
1076
1631
|
# used in a raw HTTP Query API, it is formatted as be epoch time in
|
@@ -1100,7 +1655,7 @@ module Aws::ApplicationSignals
|
|
1100
1655
|
# @!attribute [rw] include_linked_accounts
|
1101
1656
|
# If you are using this operation in a monitoring account, specify
|
1102
1657
|
# `true` to include services from source accounts in the returned
|
1103
|
-
# data.
|
1658
|
+
# data.
|
1104
1659
|
# @return [Boolean]
|
1105
1660
|
#
|
1106
1661
|
# @!attribute [rw] aws_account_id
|
@@ -1365,6 +1920,35 @@ module Aws::ApplicationSignals
|
|
1365
1920
|
include Aws::Structure
|
1366
1921
|
end
|
1367
1922
|
|
1923
|
+
# A structure that contains metric data queries and time range
|
1924
|
+
# information that provides context for audit findings through relevant
|
1925
|
+
# performance metrics.
|
1926
|
+
#
|
1927
|
+
# @!attribute [rw] metric_data_queries
|
1928
|
+
# An array of metric data queries that define the metrics to be
|
1929
|
+
# retrieved and analyzed as part of the audit finding context.
|
1930
|
+
# @return [Array<Types::MetricDataQuery>]
|
1931
|
+
#
|
1932
|
+
# @!attribute [rw] start_time
|
1933
|
+
# The start time for the metric data included in this graph. When used
|
1934
|
+
# in a raw HTTP Query API, it is formatted as epoch time in seconds.
|
1935
|
+
# @return [Time]
|
1936
|
+
#
|
1937
|
+
# @!attribute [rw] end_time
|
1938
|
+
# The end time for the metric data included in this graph. When used
|
1939
|
+
# in a raw HTTP Query API, it is formatted as epoch time in seconds.
|
1940
|
+
# @return [Time]
|
1941
|
+
#
|
1942
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/MetricGraph AWS API Documentation
|
1943
|
+
#
|
1944
|
+
class MetricGraph < Struct.new(
|
1945
|
+
:metric_data_queries,
|
1946
|
+
:start_time,
|
1947
|
+
:end_time)
|
1948
|
+
SENSITIVE = []
|
1949
|
+
include Aws::Structure
|
1950
|
+
end
|
1951
|
+
|
1368
1952
|
# This structure contains information about one CloudWatch metric
|
1369
1953
|
# associated with this entity discovered by Application Signals.
|
1370
1954
|
#
|
@@ -1497,6 +2081,84 @@ module Aws::ApplicationSignals
|
|
1497
2081
|
class Unknown < MonitoredRequestCountMetricDataQueries; end
|
1498
2082
|
end
|
1499
2083
|
|
2084
|
+
# A structure that represents a node in a dependency graph, containing
|
2085
|
+
# information about a service, resource, or other entity and its
|
2086
|
+
# characteristics.
|
2087
|
+
#
|
2088
|
+
# @!attribute [rw] key_attributes
|
2089
|
+
# The key attributes that identify this node, including Type, Name,
|
2090
|
+
# and Environment information.
|
2091
|
+
# @return [Hash<String,String>]
|
2092
|
+
#
|
2093
|
+
# @!attribute [rw] name
|
2094
|
+
# The name of the entity represented by this node.
|
2095
|
+
# @return [String]
|
2096
|
+
#
|
2097
|
+
# @!attribute [rw] node_id
|
2098
|
+
# A unique identifier for this node within the dependency graph.
|
2099
|
+
# @return [String]
|
2100
|
+
#
|
2101
|
+
# @!attribute [rw] operation
|
2102
|
+
# The operation associated with this node, if applicable.
|
2103
|
+
# @return [String]
|
2104
|
+
#
|
2105
|
+
# @!attribute [rw] type
|
2106
|
+
# The type of entity represented by this node, such as `Service` or
|
2107
|
+
# `Resource`.
|
2108
|
+
# @return [String]
|
2109
|
+
#
|
2110
|
+
# @!attribute [rw] duration
|
2111
|
+
# The duration or processing time associated with this node, if
|
2112
|
+
# applicable.
|
2113
|
+
# @return [Float]
|
2114
|
+
#
|
2115
|
+
# @!attribute [rw] status
|
2116
|
+
# The status of the entity represented by this node.
|
2117
|
+
# @return [String]
|
2118
|
+
#
|
2119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/Node AWS API Documentation
|
2120
|
+
#
|
2121
|
+
class Node < Struct.new(
|
2122
|
+
:key_attributes,
|
2123
|
+
:name,
|
2124
|
+
:node_id,
|
2125
|
+
:operation,
|
2126
|
+
:type,
|
2127
|
+
:duration,
|
2128
|
+
:status)
|
2129
|
+
SENSITIVE = []
|
2130
|
+
include Aws::Structure
|
2131
|
+
end
|
2132
|
+
|
2133
|
+
# @!attribute [rw] grouping_attribute_definitions
|
2134
|
+
# An array of grouping attribute definitions that specify how services
|
2135
|
+
# should be grouped. Each definition includes a friendly name, source
|
2136
|
+
# keys to derive the grouping value from, and an optional default
|
2137
|
+
# value.
|
2138
|
+
# @return [Array<Types::GroupingAttributeDefinition>]
|
2139
|
+
#
|
2140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/PutGroupingConfigurationInput AWS API Documentation
|
2141
|
+
#
|
2142
|
+
class PutGroupingConfigurationInput < Struct.new(
|
2143
|
+
:grouping_attribute_definitions)
|
2144
|
+
SENSITIVE = []
|
2145
|
+
include Aws::Structure
|
2146
|
+
end
|
2147
|
+
|
2148
|
+
# @!attribute [rw] grouping_configuration
|
2149
|
+
# A structure containing the updated grouping configuration, including
|
2150
|
+
# all grouping attribute definitions and the timestamp when it was
|
2151
|
+
# last updated.
|
2152
|
+
# @return [Types::GroupingConfiguration]
|
2153
|
+
#
|
2154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/PutGroupingConfigurationOutput AWS API Documentation
|
2155
|
+
#
|
2156
|
+
class PutGroupingConfigurationOutput < Struct.new(
|
2157
|
+
:grouping_configuration)
|
2158
|
+
SENSITIVE = []
|
2159
|
+
include Aws::Structure
|
2160
|
+
end
|
2161
|
+
|
1500
2162
|
# The recurrence rule for the SLO time window exclusion .
|
1501
2163
|
#
|
1502
2164
|
# @!attribute [rw] expression
|
@@ -1836,6 +2498,11 @@ module Aws::ApplicationSignals
|
|
1836
2498
|
# of telemetry data.
|
1837
2499
|
# @return [Array<Hash<String,String>>]
|
1838
2500
|
#
|
2501
|
+
# @!attribute [rw] service_groups
|
2502
|
+
# An array of service groups that this service belongs to, based on
|
2503
|
+
# the configured grouping attributes.
|
2504
|
+
# @return [Array<Types::ServiceGroup>]
|
2505
|
+
#
|
1839
2506
|
# @!attribute [rw] metric_references
|
1840
2507
|
# An array of structures that each contain information about one
|
1841
2508
|
# metric associated with this service.
|
@@ -1858,6 +2525,7 @@ module Aws::ApplicationSignals
|
|
1858
2525
|
class Service < Struct.new(
|
1859
2526
|
:key_attributes,
|
1860
2527
|
:attribute_maps,
|
2528
|
+
:service_groups,
|
1861
2529
|
:metric_references,
|
1862
2530
|
:log_group_references)
|
1863
2531
|
SENSITIVE = []
|
@@ -1967,6 +2635,71 @@ module Aws::ApplicationSignals
|
|
1967
2635
|
include Aws::Structure
|
1968
2636
|
end
|
1969
2637
|
|
2638
|
+
# A structure that contains identifying information for a service
|
2639
|
+
# entity.
|
2640
|
+
#
|
2641
|
+
# @!attribute [rw] type
|
2642
|
+
# The type of the service entity.
|
2643
|
+
# @return [String]
|
2644
|
+
#
|
2645
|
+
# @!attribute [rw] name
|
2646
|
+
# The name of the service.
|
2647
|
+
# @return [String]
|
2648
|
+
#
|
2649
|
+
# @!attribute [rw] environment
|
2650
|
+
# The environment where the service is deployed.
|
2651
|
+
# @return [String]
|
2652
|
+
#
|
2653
|
+
# @!attribute [rw] aws_account_id
|
2654
|
+
# The Amazon Web Services account ID where the service is located.
|
2655
|
+
# Provide this value only for cross-account access.
|
2656
|
+
# @return [String]
|
2657
|
+
#
|
2658
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceEntity AWS API Documentation
|
2659
|
+
#
|
2660
|
+
class ServiceEntity < Struct.new(
|
2661
|
+
:type,
|
2662
|
+
:name,
|
2663
|
+
:environment,
|
2664
|
+
:aws_account_id)
|
2665
|
+
SENSITIVE = []
|
2666
|
+
include Aws::Structure
|
2667
|
+
end
|
2668
|
+
|
2669
|
+
# A structure that represents a logical grouping of services based on
|
2670
|
+
# shared attributes such as business unit, environment, or entry point.
|
2671
|
+
#
|
2672
|
+
# @!attribute [rw] group_name
|
2673
|
+
# The name of the grouping attribute, such as `BusinessUnit` or
|
2674
|
+
# `Environment`.
|
2675
|
+
# @return [String]
|
2676
|
+
#
|
2677
|
+
# @!attribute [rw] group_value
|
2678
|
+
# The value of the grouping attribute for this service, such as
|
2679
|
+
# `Payments` or `Production`.
|
2680
|
+
# @return [String]
|
2681
|
+
#
|
2682
|
+
# @!attribute [rw] group_source
|
2683
|
+
# The source of the grouping attribute, such as `TAG`, `OTEL`, or
|
2684
|
+
# `DEFAULT`.
|
2685
|
+
# @return [String]
|
2686
|
+
#
|
2687
|
+
# @!attribute [rw] group_identifier
|
2688
|
+
# A unique identifier for this grouping attribute value, used for
|
2689
|
+
# filtering and API operations.
|
2690
|
+
# @return [String]
|
2691
|
+
#
|
2692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceGroup AWS API Documentation
|
2693
|
+
#
|
2694
|
+
class ServiceGroup < Struct.new(
|
2695
|
+
:group_name,
|
2696
|
+
:group_value,
|
2697
|
+
:group_source,
|
2698
|
+
:group_identifier)
|
2699
|
+
SENSITIVE = []
|
2700
|
+
include Aws::Structure
|
2701
|
+
end
|
2702
|
+
|
1970
2703
|
# This structure contains information about the performance metric that
|
1971
2704
|
# a period-based SLO monitors.
|
1972
2705
|
#
|
@@ -2122,6 +2855,11 @@ module Aws::ApplicationSignals
|
|
2122
2855
|
# which of those metrics is used.
|
2123
2856
|
# @return [String]
|
2124
2857
|
#
|
2858
|
+
# @!attribute [rw] metric_name
|
2859
|
+
# The name of the CloudWatch metric to use for the SLO, when using a
|
2860
|
+
# custom metric rather than Application Signals standard metrics.
|
2861
|
+
# @return [String]
|
2862
|
+
#
|
2125
2863
|
# @!attribute [rw] statistic
|
2126
2864
|
# The statistic to use for comparison to the threshold. It can be any
|
2127
2865
|
# CloudWatch statistic or extended statistic. For more information
|
@@ -2156,6 +2894,7 @@ module Aws::ApplicationSignals
|
|
2156
2894
|
:key_attributes,
|
2157
2895
|
:operation_name,
|
2158
2896
|
:metric_type,
|
2897
|
+
:metric_name,
|
2159
2898
|
:statistic,
|
2160
2899
|
:period_seconds,
|
2161
2900
|
:metric_data_queries,
|
@@ -2408,6 +3147,27 @@ module Aws::ApplicationSignals
|
|
2408
3147
|
include Aws::Structure
|
2409
3148
|
end
|
2410
3149
|
|
3150
|
+
# A structure that contains identifying information for a service level
|
3151
|
+
# objective entity.
|
3152
|
+
#
|
3153
|
+
# @!attribute [rw] slo_name
|
3154
|
+
# The name of the service level objective.
|
3155
|
+
# @return [String]
|
3156
|
+
#
|
3157
|
+
# @!attribute [rw] slo_arn
|
3158
|
+
# The ARN of the service level objective. The SLO must be provided
|
3159
|
+
# with ARN for cross-account access.
|
3160
|
+
# @return [String]
|
3161
|
+
#
|
3162
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelObjectiveEntity AWS API Documentation
|
3163
|
+
#
|
3164
|
+
class ServiceLevelObjectiveEntity < Struct.new(
|
3165
|
+
:slo_name,
|
3166
|
+
:slo_arn)
|
3167
|
+
SENSITIVE = []
|
3168
|
+
include Aws::Structure
|
3169
|
+
end
|
3170
|
+
|
2411
3171
|
# A structure that contains information about one service level
|
2412
3172
|
# objective (SLO) created in Application Signals.
|
2413
3173
|
#
|
@@ -2511,6 +3271,31 @@ module Aws::ApplicationSignals
|
|
2511
3271
|
include Aws::Structure
|
2512
3272
|
end
|
2513
3273
|
|
3274
|
+
# A structure that contains identifying information for a service
|
3275
|
+
# operation entity.
|
3276
|
+
#
|
3277
|
+
# @!attribute [rw] service
|
3278
|
+
# The service entity that contains this operation.
|
3279
|
+
# @return [Types::ServiceEntity]
|
3280
|
+
#
|
3281
|
+
# @!attribute [rw] operation
|
3282
|
+
# The name of the operation.
|
3283
|
+
# @return [String]
|
3284
|
+
#
|
3285
|
+
# @!attribute [rw] metric_type
|
3286
|
+
# The type of metric associated with this service operation.
|
3287
|
+
# @return [String]
|
3288
|
+
#
|
3289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceOperationEntity AWS API Documentation
|
3290
|
+
#
|
3291
|
+
class ServiceOperationEntity < Struct.new(
|
3292
|
+
:service,
|
3293
|
+
:operation,
|
3294
|
+
:metric_type)
|
3295
|
+
SENSITIVE = []
|
3296
|
+
include Aws::Structure
|
3297
|
+
end
|
3298
|
+
|
2514
3299
|
# This request exceeds a service quota.
|
2515
3300
|
#
|
2516
3301
|
# @!attribute [rw] message
|
@@ -2524,6 +3309,36 @@ module Aws::ApplicationSignals
|
|
2524
3309
|
include Aws::Structure
|
2525
3310
|
end
|
2526
3311
|
|
3312
|
+
# A structure that contains information about the current state of a
|
3313
|
+
# service, including its latest change events such as deployments and
|
3314
|
+
# other state-changing activities.
|
3315
|
+
#
|
3316
|
+
# @!attribute [rw] attribute_filters
|
3317
|
+
# The attribute filters that were applied when retrieving this service
|
3318
|
+
# state information.
|
3319
|
+
# @return [Array<Types::AttributeFilter>]
|
3320
|
+
#
|
3321
|
+
# @!attribute [rw] service
|
3322
|
+
# The key attributes that identify this service, including Type, Name,
|
3323
|
+
# and Environment information.
|
3324
|
+
# @return [Hash<String,String>]
|
3325
|
+
#
|
3326
|
+
# @!attribute [rw] latest_change_events
|
3327
|
+
# An array containing the most recent change events for this service,
|
3328
|
+
# such as deployments, with information about when they occurred and
|
3329
|
+
# who initiated them.
|
3330
|
+
# @return [Array<Types::ChangeEvent>]
|
3331
|
+
#
|
3332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceState AWS API Documentation
|
3333
|
+
#
|
3334
|
+
class ServiceState < Struct.new(
|
3335
|
+
:attribute_filters,
|
3336
|
+
:service,
|
3337
|
+
:latest_change_events)
|
3338
|
+
SENSITIVE = []
|
3339
|
+
include Aws::Structure
|
3340
|
+
end
|
3341
|
+
|
2527
3342
|
# This structure contains information about one of your services that
|
2528
3343
|
# was discovered by Application Signals
|
2529
3344
|
#
|
@@ -2608,12 +3423,18 @@ module Aws::ApplicationSignals
|
|
2608
3423
|
# metric associated with this service.
|
2609
3424
|
# @return [Array<Types::MetricReference>]
|
2610
3425
|
#
|
3426
|
+
# @!attribute [rw] service_groups
|
3427
|
+
# An array of service groups that this service belongs to, based on
|
3428
|
+
# the configured grouping attributes.
|
3429
|
+
# @return [Array<Types::ServiceGroup>]
|
3430
|
+
#
|
2611
3431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceSummary AWS API Documentation
|
2612
3432
|
#
|
2613
3433
|
class ServiceSummary < Struct.new(
|
2614
3434
|
:key_attributes,
|
2615
3435
|
:attribute_maps,
|
2616
|
-
:metric_references
|
3436
|
+
:metric_references,
|
3437
|
+
:service_groups)
|
2617
3438
|
SENSITIVE = []
|
2618
3439
|
include Aws::Structure
|
2619
3440
|
end
|