Interface CfnFunction.TracingConfigProperty

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

@Stability(Stable) public static interface CfnFunction.TracingConfigProperty extends software.amazon.jsii.JsiiSerializable
The function's AWS X-Ray tracing configuration. To sample and record incoming requests, set Mode to Active .

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.lambda.*;
 TracingConfigProperty tracingConfigProperty = TracingConfigProperty.builder()
         .mode("mode")
         .build();