Class: Aws::IoTEvents::Types::PutLoggingOptionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::PutLoggingOptionsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass PutLoggingOptionsRequest data as a hash:
{
logging_options: { # required
role_arn: "AmazonResourceName", # required
level: "ERROR", # required, accepts ERROR, INFO, DEBUG
enabled: false, # required
detector_debug_options: [
{
detector_model_name: "DetectorModelName", # required
key_value: "KeyValue",
},
],
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#logging_options ⇒ Types::LoggingOptions
The new values of the AWS IoT Events logging options.
Instance Attribute Details
#logging_options ⇒ Types::LoggingOptions
The new values of the AWS IoT Events logging options.
3543 3544 3545 3546 3547 |
# File 'lib/aws-sdk-iotevents/types.rb', line 3543 class PutLoggingOptionsRequest < Struct.new( :logging_options) SENSITIVE = [] include Aws::Structure end |