Class: Aws::IoTWireless::Types::WirelessDeviceLogOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::WirelessDeviceLogOption
- Defined in:
- gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb
Overview
Note:
When making an API call, you may pass WirelessDeviceLogOption data as a hash:
{
type: "Sidewalk", # required, accepts Sidewalk, LoRaWAN
log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
events: [
{
event: "Join", # required, accepts Join, Rejoin, Uplink_Data, Downlink_Data, Registration
log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
},
],
}
The log options for wireless devices and can be used to set log levels for a specific type of wireless device.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#events ⇒ Array<Types::WirelessDeviceEventLogOption>
The list of wireless device event log options.
-
#log_level ⇒ String
The log level for a log message.
-
#type ⇒ String
The wireless device type.
Instance Attribute Details
#events ⇒ Array<Types::WirelessDeviceEventLogOption>
The list of wireless device event log options.
6039 6040 6041 6042 6043 6044 6045 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 6039 class WirelessDeviceLogOption < Struct.new( :type, :log_level, :events) SENSITIVE = [] include Aws::Structure end |
#log_level ⇒ String
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.
6039 6040 6041 6042 6043 6044 6045 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 6039 class WirelessDeviceLogOption < Struct.new( :type, :log_level, :events) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The wireless device type.
6039 6040 6041 6042 6043 6044 6045 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 6039 class WirelessDeviceLogOption < Struct.new( :type, :log_level, :events) SENSITIVE = [] include Aws::Structure end |