Class: Aws::MQ::Types::PendingLogs

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#auditBoolean

Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.

Returns:

  • (Boolean)


2438
2439
2440
2441
2442
2443
# File 'lib/aws-sdk-mq/types.rb', line 2438

class PendingLogs < Struct.new(
  :audit,
  :general)
  SENSITIVE = []
  include Aws::Structure
end

#generalBoolean

Enables general logging.

Returns:

  • (Boolean)


2438
2439
2440
2441
2442
2443
# File 'lib/aws-sdk-mq/types.rb', line 2438

class PendingLogs < Struct.new(
  :audit,
  :general)
  SENSITIVE = []
  include Aws::Structure
end