Class: Aws::IoTWireless::Types::FuotaTaskEventLogOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::FuotaTaskEventLogOption
- Defined in:
- gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb
Overview
The log options for a FUOTA task event and can be used to set log levels for a specific fuota task event.
For a LoRaWAN FuotaTask type, possible event for a log message is
Fuota
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event ⇒ String
The event for a log message, if the log message is tied to a fuota task.
-
#log_level ⇒ String
The log level for a log message.
Instance Attribute Details
#event ⇒ String
The event for a log message, if the log message is tied to a fuota task.
1788 1789 1790 1791 1792 1793 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 1788 class FuotaTaskEventLogOption < Struct.new( :event, :log_level) 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.
1788 1789 1790 1791 1792 1793 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 1788 class FuotaTaskEventLogOption < Struct.new( :event, :log_level) SENSITIVE = [] include Aws::Structure end |