Struct aws_sdk_mq::types::builders::LogsSummaryBuilder
source · #[non_exhaustive]pub struct LogsSummaryBuilder { /* private fields */ }
Expand description
A builder for LogsSummary
.
Implementations§
source§impl LogsSummaryBuilder
impl LogsSummaryBuilder
sourcepub fn audit(self, input: bool) -> Self
pub fn audit(self, input: bool) -> Self
Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
sourcepub fn set_audit(self, input: Option<bool>) -> Self
pub fn set_audit(self, input: Option<bool>) -> Self
Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
sourcepub fn get_audit(&self) -> &Option<bool>
pub fn get_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, input: impl Into<String>) -> Self
pub fn audit_log_group(self, input: impl Into<String>) -> Self
The location of the CloudWatch Logs log group where audit logs are sent.
sourcepub fn set_audit_log_group(self, input: Option<String>) -> Self
pub fn set_audit_log_group(self, input: Option<String>) -> Self
The location of the CloudWatch Logs log group where audit logs are sent.
sourcepub fn get_audit_log_group(&self) -> &Option<String>
pub fn get_audit_log_group(&self) -> &Option<String>
The location of the CloudWatch Logs log group where audit logs are sent.
sourcepub fn set_general(self, input: Option<bool>) -> Self
pub fn set_general(self, input: Option<bool>) -> Self
Enables general logging.
sourcepub fn get_general(&self) -> &Option<bool>
pub fn get_general(&self) -> &Option<bool>
Enables general logging.
sourcepub fn general_log_group(self, input: impl Into<String>) -> Self
pub fn general_log_group(self, input: impl Into<String>) -> Self
The location of the CloudWatch Logs log group where general logs are sent.
This field is required.sourcepub fn set_general_log_group(self, input: Option<String>) -> Self
pub fn set_general_log_group(self, input: Option<String>) -> Self
The location of the CloudWatch Logs log group where general logs are sent.
sourcepub fn get_general_log_group(&self) -> &Option<String>
pub fn get_general_log_group(&self) -> &Option<String>
The location of the CloudWatch Logs log group where general logs are sent.
sourcepub fn pending(self, input: PendingLogs) -> Self
pub fn pending(self, input: PendingLogs) -> Self
The list of information about logs pending to be deployed for the specified broker.
sourcepub fn set_pending(self, input: Option<PendingLogs>) -> Self
pub fn set_pending(self, input: Option<PendingLogs>) -> Self
The list of information about logs pending to be deployed for the specified broker.
sourcepub fn get_pending(&self) -> &Option<PendingLogs>
pub fn get_pending(&self) -> &Option<PendingLogs>
The list of information about logs pending to be deployed for the specified broker.
sourcepub fn build(self) -> LogsSummary
pub fn build(self) -> LogsSummary
Consumes the builder and constructs a LogsSummary
.
Trait Implementations§
source§impl Clone for LogsSummaryBuilder
impl Clone for LogsSummaryBuilder
source§fn clone(&self) -> LogsSummaryBuilder
fn clone(&self) -> LogsSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LogsSummaryBuilder
impl Debug for LogsSummaryBuilder
source§impl Default for LogsSummaryBuilder
impl Default for LogsSummaryBuilder
source§fn default() -> LogsSummaryBuilder
fn default() -> LogsSummaryBuilder
source§impl PartialEq for LogsSummaryBuilder
impl PartialEq for LogsSummaryBuilder
source§fn eq(&self, other: &LogsSummaryBuilder) -> bool
fn eq(&self, other: &LogsSummaryBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LogsSummaryBuilder
Auto Trait Implementations§
impl Freeze for LogsSummaryBuilder
impl RefUnwindSafe for LogsSummaryBuilder
impl Send for LogsSummaryBuilder
impl Sync for LogsSummaryBuilder
impl Unpin for LogsSummaryBuilder
impl UnwindSafe for LogsSummaryBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more