Class: Aws::IoTAnalytics::Types::LoggingOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::LoggingOptions
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
Note:
When making an API call, you may pass LoggingOptions data as a hash:
{
role_arn: "RoleArn", # required
level: "ERROR", # required, accepts ERROR
enabled: false, # required
}
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.
2994 2995 2996 2997 2998 2999 3000 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2994 class LoggingOptions < Struct.new( :role_arn, :level, :enabled) SENSITIVE = [] include Aws::Structure end |
#level ⇒ String
The logging level. Currently, only ERROR is supported.
2994 2995 2996 2997 2998 2999 3000 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2994 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.
2994 2995 2996 2997 2998 2999 3000 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2994 class LoggingOptions < Struct.new( :role_arn, :level, :enabled) SENSITIVE = [] include Aws::Structure end |