Class: Aws::IoT::Types::LoggingOptionsPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::LoggingOptionsPayload
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass LoggingOptionsPayload data as a hash:
{
role_arn: "AwsArn", # required
log_level: "DEBUG", # accepts DEBUG, INFO, ERROR, WARN, DISABLED
}
Describes the logging options payload.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#log_level ⇒ String
The log level.
-
#role_arn ⇒ String
The ARN of the IAM role that grants access.
Instance Attribute Details
#log_level ⇒ String
The log level.
13973 13974 13975 13976 13977 13978 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13973 class LoggingOptionsPayload < Struct.new( :role_arn, :log_level) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the IAM role that grants access.
13973 13974 13975 13976 13977 13978 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13973 class LoggingOptionsPayload < Struct.new( :role_arn, :log_level) SENSITIVE = [] include Aws::Structure end |