#[non_exhaustive]pub struct AwsAmazonMqBrokerLogsDetails {
pub audit: Option<bool>,
pub general: Option<bool>,
pub audit_log_group: Option<String>,
pub general_log_group: Option<String>,
pub pending: Option<AwsAmazonMqBrokerLogsPendingDetails>,
}Expand description
Provides information about logs to be activated 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>Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged. Doesn't apply to RabbitMQ brokers.
general: Option<bool>Activates general logging.
audit_log_group: Option<String>The location of the CloudWatch Logs log group where audit logs are sent.
general_log_group: Option<String>The location of the CloudWatch Logs log group where general logs are sent.
pending: Option<AwsAmazonMqBrokerLogsPendingDetails>The list of information about logs that are to be turned on for the specified broker.
Implementations§
source§impl AwsAmazonMqBrokerLogsDetails
impl AwsAmazonMqBrokerLogsDetails
sourcepub fn audit(&self) -> Option<bool>
pub fn audit(&self) -> Option<bool>
Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged. Doesn't apply to RabbitMQ brokers.
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<&AwsAmazonMqBrokerLogsPendingDetails>
pub fn pending(&self) -> Option<&AwsAmazonMqBrokerLogsPendingDetails>
The list of information about logs that are to be turned on for the specified broker.
source§impl AwsAmazonMqBrokerLogsDetails
impl AwsAmazonMqBrokerLogsDetails
sourcepub fn builder() -> AwsAmazonMqBrokerLogsDetailsBuilder
pub fn builder() -> AwsAmazonMqBrokerLogsDetailsBuilder
Creates a new builder-style object to manufacture AwsAmazonMqBrokerLogsDetails.
Trait Implementations§
source§impl Clone for AwsAmazonMqBrokerLogsDetails
impl Clone for AwsAmazonMqBrokerLogsDetails
source§fn clone(&self) -> AwsAmazonMqBrokerLogsDetails
fn clone(&self) -> AwsAmazonMqBrokerLogsDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AwsAmazonMqBrokerLogsDetails
impl Debug for AwsAmazonMqBrokerLogsDetails
source§impl PartialEq for AwsAmazonMqBrokerLogsDetails
impl PartialEq for AwsAmazonMqBrokerLogsDetails
source§fn eq(&self, other: &AwsAmazonMqBrokerLogsDetails) -> bool
fn eq(&self, other: &AwsAmazonMqBrokerLogsDetails) -> bool
self and other values to be equal, and is used
by ==.