#[non_exhaustive]pub struct CloudWatchMonitoringConfiguration {
pub log_group_name: Option<String>,
pub log_stream_name_prefix: Option<String>,
}Expand description
A configuration for CloudWatch monitoring. You can configure your jobs to send log information to CloudWatch Logs.
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_group_name: Option<String>The name of the log group for log publishing.
log_stream_name_prefix: Option<String>The specified name prefix for log streams.
Implementations§
source§impl CloudWatchMonitoringConfiguration
impl CloudWatchMonitoringConfiguration
sourcepub fn log_group_name(&self) -> Option<&str>
pub fn log_group_name(&self) -> Option<&str>
The name of the log group for log publishing.
sourcepub fn log_stream_name_prefix(&self) -> Option<&str>
pub fn log_stream_name_prefix(&self) -> Option<&str>
The specified name prefix for log streams.
source§impl CloudWatchMonitoringConfiguration
impl CloudWatchMonitoringConfiguration
sourcepub fn builder() -> CloudWatchMonitoringConfigurationBuilder
pub fn builder() -> CloudWatchMonitoringConfigurationBuilder
Creates a new builder-style object to manufacture CloudWatchMonitoringConfiguration.
Trait Implementations§
source§impl Clone for CloudWatchMonitoringConfiguration
impl Clone for CloudWatchMonitoringConfiguration
source§fn clone(&self) -> CloudWatchMonitoringConfiguration
fn clone(&self) -> CloudWatchMonitoringConfiguration
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 PartialEq<CloudWatchMonitoringConfiguration> for CloudWatchMonitoringConfiguration
impl PartialEq<CloudWatchMonitoringConfiguration> for CloudWatchMonitoringConfiguration
source§fn eq(&self, other: &CloudWatchMonitoringConfiguration) -> bool
fn eq(&self, other: &CloudWatchMonitoringConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CloudWatchMonitoringConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for CloudWatchMonitoringConfiguration
impl Send for CloudWatchMonitoringConfiguration
impl Sync for CloudWatchMonitoringConfiguration
impl Unpin for CloudWatchMonitoringConfiguration
impl UnwindSafe for CloudWatchMonitoringConfiguration
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