Class: Aws::IoTAnalytics::Types::LoggingOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::LoggingOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotanalytics/types.rb
Overview
Information about logging options.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
If true, logging is enabled for IoT Analytics.
-
#level ⇒ String
The logging level.
-
#role_arn ⇒ String
The ARN of the role that grants permission to IoT Analytics to perform logging.
Instance Attribute Details
#enabled ⇒ Boolean
If true, logging is enabled for IoT Analytics.
2199 2200 2201 2202 2203 2204 2205 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 2199 class LoggingOptions < Struct.new( :role_arn, :level, :enabled) SENSITIVE = [] include Aws::Structure end |
#level ⇒ String
The logging level. Currently, only ERROR is supported.
2199 2200 2201 2202 2203 2204 2205 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 2199 class LoggingOptions < Struct.new( :role_arn, :level, :enabled) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the role that grants permission to IoT Analytics to perform logging.
2199 2200 2201 2202 2203 2204 2205 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 2199 class LoggingOptions < Struct.new( :role_arn, :level, :enabled) SENSITIVE = [] include Aws::Structure end |