Class: Aws::MQ::Types::Logs
- Inherits:
-
Struct
- Object
- Struct
- Aws::MQ::Types::Logs
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mq/types.rb
Overview
The list of information about logs to be enabled for the specified broker.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#audit ⇒ Boolean
Enables audit logging.
-
#general ⇒ Boolean
Enables general logging.
Instance Attribute Details
#audit ⇒ Boolean
Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged. Does not apply to RabbitMQ brokers.
2361 2362 2363 2364 2365 2366 |
# File 'lib/aws-sdk-mq/types.rb', line 2361 class Logs < Struct.new( :audit, :general) SENSITIVE = [] include Aws::Structure end |