Class: Aws::IoT::Types::LogTarget
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::LogTarget
- 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
-
#target_name ⇒ String
The target name.
-
#target_type ⇒ String
The target type.
Instance Attribute Details
#target_name ⇒ String
The target name.
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_type ⇒ String
The target type.
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 |