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§
§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.
Trait Implementations§
Source§impl Clone for LogsSummary
impl Clone for LogsSummary
Source§fn clone(&self) -> LogsSummary
fn clone(&self) -> LogsSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LogsSummary
impl Debug for LogsSummary
Source§impl Default for LogsSummary
impl Default for LogsSummary
Source§fn default() -> LogsSummary
fn default() -> LogsSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogsSummary
impl<'de> Deserialize<'de> for LogsSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LogsSummary
impl PartialEq for LogsSummary
impl StructuralPartialEq for LogsSummary
Auto Trait Implementations§
impl Freeze for LogsSummary
impl RefUnwindSafe for LogsSummary
impl Send for LogsSummary
impl Sync for LogsSummary
impl Unpin for LogsSummary
impl UnwindSafe for LogsSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more