Struct aws_sdk_mq::types::LogsSummary
source · #[non_exhaustive]pub struct LogsSummary {
pub audit: Option<bool>,
pub audit_log_group: Option<String>,
pub general: Option<bool>,
pub general_log_group: Option<String>,
pub pending: Option<PendingLogs>,
}
Expand description
The list of information about logs currently enabled and pending to be deployed for the specified broker.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.audit: Option<bool>
Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
audit_log_group: Option<String>
The location of the CloudWatch Logs log group where audit logs are sent.
general: Option<bool>
Enables general logging.
general_log_group: Option<String>
The location of the CloudWatch Logs log group where general logs are sent.
pending: Option<PendingLogs>
The list of information about logs pending to be deployed for the specified broker.
Implementations§
source§impl LogsSummary
impl LogsSummary
sourcepub fn audit(&self) -> Option<bool>
pub fn audit(&self) -> Option<bool>
Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
sourcepub fn audit_log_group(&self) -> Option<&str>
pub fn audit_log_group(&self) -> Option<&str>
The location of the CloudWatch Logs log group where audit logs are sent.
sourcepub fn general_log_group(&self) -> Option<&str>
pub fn general_log_group(&self) -> Option<&str>
The location of the CloudWatch Logs log group where general logs are sent.
sourcepub fn pending(&self) -> Option<&PendingLogs>
pub fn pending(&self) -> Option<&PendingLogs>
The list of information about logs pending to be deployed for the specified broker.
source§impl LogsSummary
impl LogsSummary
sourcepub fn builder() -> LogsSummaryBuilder
pub fn builder() -> LogsSummaryBuilder
Creates a new builder-style object to manufacture LogsSummary
.
Trait Implementations§
source§impl Clone for LogsSummary
impl Clone for LogsSummary
source§fn clone(&self) -> LogsSummary
fn clone(&self) -> LogsSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LogsSummary
impl Debug for LogsSummary
source§impl PartialEq<LogsSummary> for LogsSummary
impl PartialEq<LogsSummary> for LogsSummary
source§fn eq(&self, other: &LogsSummary) -> bool
fn eq(&self, other: &LogsSummary) -> bool
self
and other
values to be equal, and is used
by ==
.