Class: Aws::MQ::Types::Logs

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mq/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. Does not apply to RabbitMQ brokers.

Returns:

  • (Boolean)


2344
2345
2346
2347
2348
2349
# File 'gems/aws-sdk-mq/lib/aws-sdk-mq/types.rb', line 2344

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

#generalBoolean

Enables general logging.

Returns:

  • (Boolean)


2344
2345
2346
2347
2348
2349
# File 'gems/aws-sdk-mq/lib/aws-sdk-mq/types.rb', line 2344

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