Class: Aws::XRay::Types::ErrorRootCause
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::ErrorRootCause
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-xray/types.rb
Overview
The root cause of a trace summary error.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_impacting ⇒ Boolean
A flag that denotes that the root cause impacts the trace client.
-
#services ⇒ Array<Types::ErrorRootCauseService>
A list of services corresponding to an error.
Instance Attribute Details
#client_impacting ⇒ Boolean
A flag that denotes that the root cause impacts the trace client.
509 510 511 512 513 514 |
# File 'lib/aws-sdk-xray/types.rb', line 509 class ErrorRootCause < Struct.new( :services, :client_impacting) SENSITIVE = [] include Aws::Structure end |
#services ⇒ Array<Types::ErrorRootCauseService>
A list of services corresponding to an error. A service identifies a segment and it contains a name, account ID, type, and inferred flag.
509 510 511 512 513 514 |
# File 'lib/aws-sdk-xray/types.rb', line 509 class ErrorRootCause < Struct.new( :services, :client_impacting) SENSITIVE = [] include Aws::Structure end |