interface TraceContentProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.IoTWireless.CfnNetworkAnalyzerConfiguration.TraceContentProperty | 
  Java | software.amazon.awscdk.services.iotwireless.CfnNetworkAnalyzerConfiguration.TraceContentProperty | 
  Python | aws_cdk.aws_iotwireless.CfnNetworkAnalyzerConfiguration.TraceContentProperty | 
  TypeScript  | @aws-cdk/aws-iotwireless » CfnNetworkAnalyzerConfiguration » TraceContentProperty | 
Trace content for your wireless gateway and wireless device resources.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotwireless from '@aws-cdk/aws-iotwireless';
const traceContentProperty: iotwireless.CfnNetworkAnalyzerConfiguration.TraceContentProperty = {
  logLevel: 'logLevel',
  wirelessDeviceFrameInfo: 'wirelessDeviceFrameInfo',
};
Properties
| Name | Type | Description | 
|---|---|---|
| log | string | The log level for a log message. | 
| wireless | string | FrameInfo of your wireless device resources for the trace content. | 
logLevel?
Type:
string
(optional)
The log level for a log message.
The log levels can be disabled, or set to ERROR to display less verbose logs containing only error information, or to INFO for more detailed logs
wirelessDeviceFrameInfo?
Type:
string
(optional)
FrameInfo of your wireless device resources for the trace content.
Use FrameInfo to debug the communication between your LoRaWAN end devices and the network server.

 .NET
 Java
 Python
 TypeScript