Class: Aws::IoT::Types::SetV2LoggingLevelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::SetV2LoggingLevelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass SetV2LoggingLevelRequest data as a hash:
{
log_target: { # required
target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP
target_name: "LogTargetName",
},
log_level: "DEBUG", # required, accepts DEBUG, INFO, ERROR, WARN, DISABLED
}
Instance Attribute Summary collapse
-
#log_level ⇒ String
The log level.
-
#log_target ⇒ Types::LogTarget
The log target.
Instance Attribute Details
#log_level ⇒ String
The log level.
9291 9292 9293 9294 9295 |
# File 'lib/aws-sdk-iot/types.rb', line 9291 class SetV2LoggingLevelRequest < Struct.new( :log_target, :log_level) include Aws::Structure end |
#log_target ⇒ Types::LogTarget
The log target.
9291 9292 9293 9294 9295 |
# File 'lib/aws-sdk-iot/types.rb', line 9291 class SetV2LoggingLevelRequest < Struct.new( :log_target, :log_level) include Aws::Structure end |