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, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
  target_name: "LogTargetName",
}

A log target.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#target_nameString

The target name.

Returns:

  • (String)


14229
14230
14231
14232
14233
14234
# File 'lib/aws-sdk-iot/types.rb', line 14229

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

#target_typeString

The target type.

Returns:

  • (String)


14229
14230
14231
14232
14233
14234
# File 'lib/aws-sdk-iot/types.rb', line 14229

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