pub struct AwsCloudWatchConfig {
pub enabled: bool,
pub namespace: String,
pub log_group: String,
}Expand description
AWS CloudWatch configuration.
Fields§
§enabled: boolEnable CloudWatch integration.
namespace: StringCloudWatch namespace for metrics.
log_group: StringCloudWatch log group.
Trait Implementations§
Source§impl Clone for AwsCloudWatchConfig
impl Clone for AwsCloudWatchConfig
Source§fn clone(&self) -> AwsCloudWatchConfig
fn clone(&self) -> AwsCloudWatchConfig
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 AwsCloudWatchConfig
impl Debug for AwsCloudWatchConfig
Source§impl Default for AwsCloudWatchConfig
impl Default for AwsCloudWatchConfig
Source§impl<'de> Deserialize<'de> for AwsCloudWatchConfig
impl<'de> Deserialize<'de> for AwsCloudWatchConfig
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
Auto Trait Implementations§
impl Freeze for AwsCloudWatchConfig
impl RefUnwindSafe for AwsCloudWatchConfig
impl Send for AwsCloudWatchConfig
impl Sync for AwsCloudWatchConfig
impl Unpin for AwsCloudWatchConfig
impl UnwindSafe for AwsCloudWatchConfig
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