Class: Aws::States::Types::TracingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TracingConfiguration
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Note:
When making an API call, you may pass TracingConfiguration data as a hash:
{
enabled: false,
}
Selects whether or not the state machine's AWS X-Ray tracing is
enabled. Default is false
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
When set to
true
, AWS X-Ray tracing is enabled.
Instance Attribute Details
#enabled ⇒ Boolean
When set to true
, AWS X-Ray tracing is enabled.
2930 2931 2932 2933 2934 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2930 class TracingConfiguration < Struct.new( :enabled) SENSITIVE = [] include Aws::Structure end |