Class: Aws::IoTWireless::Types::WirelessDeviceEventLogOption

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb

Overview

The log options for a wireless device event and can be used to set log levels for a specific wireless device event.

For a LoRaWAN device, possible events for a log messsage are: Join, Rejoin, Downlink_Data, and Uplink_Data. For a Sidewalk device, possible events for a log message are Registration, Downlink_Data, and Uplink_Data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#eventString

The event for a log message, if the log message is tied to a wireless device.

Returns:

  • (String)


6940
6941
6942
6943
6944
6945
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 6940

class WirelessDeviceEventLogOption < Struct.new(
  :event,
  :log_level)
  SENSITIVE = []
  include Aws::Structure
end

#log_levelString

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.

Returns:

  • (String)


6940
6941
6942
6943
6944
6945
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 6940

class WirelessDeviceEventLogOption < Struct.new(
  :event,
  :log_level)
  SENSITIVE = []
  include Aws::Structure
end