Class: Aws::IoT::Types::LogTarget

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 LogTarget data as a hash:

{
  target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP
  target_name: "LogTargetName",
}

A log target.

Instance Attribute Summary collapse

Instance Attribute Details

#target_nameString

The target name.

Returns:

  • (String)


7833
7834
7835
7836
7837
# File 'lib/aws-sdk-iot/types.rb', line 7833

class LogTarget < Struct.new(
  :target_type,
  :target_name)
  include Aws::Structure
end

#target_typeString

The target type.

Returns:

  • (String)


7833
7834
7835
7836
7837
# File 'lib/aws-sdk-iot/types.rb', line 7833

class LogTarget < Struct.new(
  :target_type,
  :target_name)
  include Aws::Structure
end