Class: Aws::IoT::Types::SetV2LoggingOptionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::SetV2LoggingOptionsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass SetV2LoggingOptionsRequest data as a hash:
{
role_arn: "AwsArn",
default_log_level: "DEBUG", # accepts DEBUG, INFO, ERROR, WARN, DISABLED
disable_all_logs: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_log_level ⇒ String
The default logging level.
-
#disable_all_logs ⇒ Boolean
If true all logs are disabled.
-
#role_arn ⇒ String
The ARN of the role that allows IoT to write to Cloudwatch logs.
Instance Attribute Details
#default_log_level ⇒ String
The default logging level.
16523 16524 16525 16526 16527 16528 16529 |
# File 'lib/aws-sdk-iot/types.rb', line 16523 class SetV2LoggingOptionsRequest < Struct.new( :role_arn, :default_log_level, :disable_all_logs) SENSITIVE = [] include Aws::Structure end |
#disable_all_logs ⇒ Boolean
If true all logs are disabled. The default is false.
16523 16524 16525 16526 16527 16528 16529 |
# File 'lib/aws-sdk-iot/types.rb', line 16523 class SetV2LoggingOptionsRequest < Struct.new( :role_arn, :default_log_level, :disable_all_logs) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the role that allows IoT to write to Cloudwatch logs.
16523 16524 16525 16526 16527 16528 16529 |
# File 'lib/aws-sdk-iot/types.rb', line 16523 class SetV2LoggingOptionsRequest < Struct.new( :role_arn, :default_log_level, :disable_all_logs) SENSITIVE = [] include Aws::Structure end |