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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mq/types.rb

Overview

Note:

When making an API call, you may pass Logs data as a hash:

{
  audit: false,
  general: false,
}

The list of information about logs to be enabled for the specified broker.

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)


1593
1594
1595
1596
1597
# File 'lib/aws-sdk-mq/types.rb', line 1593

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

#generalBoolean

Enables general logging.

Returns:

  • (Boolean)


1593
1594
1595
1596
1597
# File 'lib/aws-sdk-mq/types.rb', line 1593

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