pub struct MetricsConfiguration {
pub cloud_metric_enabled: Option<bool>,
pub metric_rule_role_arn: Option<String>,
}Expand description
An object that specifies whether cloud metrics are collected in a deployment and, if so, what role is used to collect metrics.
Fields§
§cloud_metric_enabled: Option<bool>A Boolean that specifies whether cloud metrics are collected.
metric_rule_role_arn: Option<String>The ARN of the role that is used to collect cloud metrics.
Trait Implementations§
Source§impl Clone for MetricsConfiguration
impl Clone for MetricsConfiguration
Source§fn clone(&self) -> MetricsConfiguration
fn clone(&self) -> MetricsConfiguration
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 MetricsConfiguration
impl Debug for MetricsConfiguration
Source§impl Default for MetricsConfiguration
impl Default for MetricsConfiguration
Source§fn default() -> MetricsConfiguration
fn default() -> MetricsConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetricsConfiguration
impl<'de> Deserialize<'de> for MetricsConfiguration
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
Source§impl PartialEq for MetricsConfiguration
impl PartialEq for MetricsConfiguration
Source§impl Serialize for MetricsConfiguration
impl Serialize for MetricsConfiguration
impl StructuralPartialEq for MetricsConfiguration
Auto Trait Implementations§
impl Freeze for MetricsConfiguration
impl RefUnwindSafe for MetricsConfiguration
impl Send for MetricsConfiguration
impl Sync for MetricsConfiguration
impl Unpin for MetricsConfiguration
impl UnwindSafe for MetricsConfiguration
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