Class: Aws::IoT::Types::EnableIoTLoggingParams
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::EnableIoTLoggingParams
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass EnableIoTLoggingParams data as a hash:
{
role_arn_for_logging: "RoleArn", # required
log_level: "DEBUG", # required, accepts DEBUG, INFO, ERROR, WARN, DISABLED
}
Parameters used when defining a mitigation action that enable Amazon Web Services IoT Core logging.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#log_level ⇒ String
Specifies the type of information to be logged.
-
#role_arn_for_logging ⇒ String
The Amazon Resource Name (ARN) of the IAM role used for logging.
Instance Attribute Details
#log_level ⇒ String
Specifies the type of information to be logged.
8847 8848 8849 8850 8851 8852 |
# File 'lib/aws-sdk-iot/types.rb', line 8847 class EnableIoTLoggingParams < Struct.new( :role_arn_for_logging, :log_level) SENSITIVE = [] include Aws::Structure end |
#role_arn_for_logging ⇒ String
The Amazon Resource Name (ARN) of the IAM role used for logging.
8847 8848 8849 8850 8851 8852 |
# File 'lib/aws-sdk-iot/types.rb', line 8847 class EnableIoTLoggingParams < Struct.new( :role_arn_for_logging, :log_level) SENSITIVE = [] include Aws::Structure end |