#[non_exhaustive]pub struct MetricsConfigurationBuilder { /* private fields */ }
Expand description
A builder for MetricsConfiguration
.
Implementations§
source§impl MetricsConfigurationBuilder
impl MetricsConfigurationBuilder
sourcepub fn cloud_metric_enabled(self, input: bool) -> Self
pub fn cloud_metric_enabled(self, input: bool) -> Self
A Boolean that specifies whether cloud metrics are collected.
sourcepub fn set_cloud_metric_enabled(self, input: Option<bool>) -> Self
pub fn set_cloud_metric_enabled(self, input: Option<bool>) -> Self
A Boolean that specifies whether cloud metrics are collected.
sourcepub fn get_cloud_metric_enabled(&self) -> &Option<bool>
pub fn get_cloud_metric_enabled(&self) -> &Option<bool>
A Boolean that specifies whether cloud metrics are collected.
sourcepub fn metric_rule_role_arn(self, input: impl Into<String>) -> Self
pub fn metric_rule_role_arn(self, input: impl Into<String>) -> Self
The ARN of the role that is used to collect cloud metrics.
sourcepub fn set_metric_rule_role_arn(self, input: Option<String>) -> Self
pub fn set_metric_rule_role_arn(self, input: Option<String>) -> Self
The ARN of the role that is used to collect cloud metrics.
sourcepub fn get_metric_rule_role_arn(&self) -> &Option<String>
pub fn get_metric_rule_role_arn(&self) -> &Option<String>
The ARN of the role that is used to collect cloud metrics.
sourcepub fn build(self) -> MetricsConfiguration
pub fn build(self) -> MetricsConfiguration
Consumes the builder and constructs a MetricsConfiguration
.
Trait Implementations§
source§impl Clone for MetricsConfigurationBuilder
impl Clone for MetricsConfigurationBuilder
source§fn clone(&self) -> MetricsConfigurationBuilder
fn clone(&self) -> MetricsConfigurationBuilder
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 MetricsConfigurationBuilder
impl Debug for MetricsConfigurationBuilder
source§impl Default for MetricsConfigurationBuilder
impl Default for MetricsConfigurationBuilder
source§fn default() -> MetricsConfigurationBuilder
fn default() -> MetricsConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for MetricsConfigurationBuilder
impl PartialEq for MetricsConfigurationBuilder
source§fn eq(&self, other: &MetricsConfigurationBuilder) -> bool
fn eq(&self, other: &MetricsConfigurationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MetricsConfigurationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for MetricsConfigurationBuilder
impl Send for MetricsConfigurationBuilder
impl Sync for MetricsConfigurationBuilder
impl Unpin for MetricsConfigurationBuilder
impl UnwindSafe for MetricsConfigurationBuilder
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
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>
Creates a shared type from an unshared type.