Class: Aws::IoT::Types::SetV2LoggingLevelRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#log_levelString

The log level.

Returns:

  • (String)


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_targetTypes::LogTarget

The log target.

Returns:



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