Interface LogsSummary.Builder

  • Method Details

    • audit

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

      Parameters:
      audit - Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • auditLogGroup

      LogsSummary.Builder auditLogGroup(String auditLogGroup)

      The location of the CloudWatch Logs log group where audit logs are sent.

      Parameters:
      auditLogGroup - The location of the CloudWatch Logs log group where audit logs are sent.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • general

      LogsSummary.Builder general(Boolean general)

      Enables general logging.

      Parameters:
      general - Enables general logging.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • generalLogGroup

      LogsSummary.Builder generalLogGroup(String generalLogGroup)

      The location of the CloudWatch Logs log group where general logs are sent.

      Parameters:
      generalLogGroup - The location of the CloudWatch Logs log group where general logs are sent.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • pending

      LogsSummary.Builder pending(PendingLogs pending)

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

      Parameters:
      pending - The list of information about logs pending to be deployed for the specified broker.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • pending

      default LogsSummary.Builder pending(Consumer<PendingLogs.Builder> pending)

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

      This is a convenience method that creates an instance of the PendingLogs.Builder avoiding the need to create one manually via PendingLogs.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to pending(PendingLogs).

      Parameters:
      pending - a consumer that will call methods on PendingLogs.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: