Class: Aws::IoTWireless::Types::WirelessGatewayEventLogOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::WirelessGatewayEventLogOption
- Defined in:
- gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb
Overview
Note:
When making an API call, you may pass WirelessGatewayEventLogOption data as a hash:
{
event: "CUPS_Request", # required, accepts CUPS_Request, Certificate
log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
}
The log options for a wireless gateway event and can be used to set log levels for a specific wireless gateway event.
For a LoRaWAN gateway, possible events for a log message are
CUPS_Request
and Certificate
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event ⇒ String
The event for a log message, if the log message is tied to a wireless gateway.
-
#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 wireless gateway.
6134 6135 6136 6137 6138 6139 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 6134 class WirelessGatewayEventLogOption < 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.
6134 6135 6136 6137 6138 6139 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 6134 class WirelessGatewayEventLogOption < Struct.new( :event, :log_level) SENSITIVE = [] include Aws::Structure end |