Struct aws_sdk_m2::types::LogGroupSummary
source · #[non_exhaustive]pub struct LogGroupSummary {
pub log_type: Option<String>,
pub log_group_name: Option<String>,
}
Expand description
A subset of the attributes that describe a log group. In CloudWatch a log group is a group of log streams that share the same retention, monitoring, and access control settings.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.log_type: Option<String>
The type of log.
log_group_name: Option<String>
The name of the log group.
Implementations§
source§impl LogGroupSummary
impl LogGroupSummary
sourcepub fn builder() -> LogGroupSummaryBuilder
pub fn builder() -> LogGroupSummaryBuilder
Creates a new builder-style object to manufacture LogGroupSummary
.
Trait Implementations§
source§impl Clone for LogGroupSummary
impl Clone for LogGroupSummary
source§fn clone(&self) -> LogGroupSummary
fn clone(&self) -> LogGroupSummary
Returns a copy 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 LogGroupSummary
impl Debug for LogGroupSummary
source§impl PartialEq<LogGroupSummary> for LogGroupSummary
impl PartialEq<LogGroupSummary> for LogGroupSummary
source§fn eq(&self, other: &LogGroupSummary) -> bool
fn eq(&self, other: &LogGroupSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LogGroupSummary
Auto Trait Implementations§
impl RefUnwindSafe for LogGroupSummary
impl Send for LogGroupSummary
impl Sync for LogGroupSummary
impl Unpin for LogGroupSummary
impl UnwindSafe for LogGroupSummary
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