interface TracingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.StepFunctions.Mixins.CfnStateMachinePropsMixin.TracingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstepfunctions/mixins#CfnStateMachinePropsMixin_TracingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.stepfunctions.mixins.CfnStateMachinePropsMixin.TracingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_stepfunctions.mixins.CfnStateMachinePropsMixin.TracingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_stepfunctions » mixins » CfnStateMachinePropsMixin » TracingConfigurationProperty |
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 { mixins as stepfunctions_mixins } from '@aws-cdk/mixins-preview/aws-stepfunctions';
const tracingConfigurationProperty: stepfunctions_mixins.CfnStateMachinePropsMixin.TracingConfigurationProperty = {
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | When set to true , X-Ray tracing is enabled. |
enabled?
Type:
boolean | IResolvable
(optional)
When set to true , X-Ray tracing is enabled.

.NET
Go
Java
Python
TypeScript