Interface CfnStateMachine.TracingConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStateMachine.TracingConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnStateMachine

@Stability(Stable) public static interface CfnStateMachine.TracingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Selects whether or not the state machine's AWS X-Ray tracing is enabled.

To configure your state machine to send trace data to X-Ray, set Enabled to true .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.stepfunctions.*;
 TracingConfigurationProperty tracingConfigurationProperty = TracingConfigurationProperty.builder()
         .enabled(false)
         .build();
 

See Also: