Struct aws_sdk_iot::types::builders::CloudwatchMetricActionBuilder
source · #[non_exhaustive]pub struct CloudwatchMetricActionBuilder { /* private fields */ }Expand description
A builder for CloudwatchMetricAction.
Implementations§
source§impl CloudwatchMetricActionBuilder
impl CloudwatchMetricActionBuilder
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The IAM role that allows access to the CloudWatch metric.
This field is required.sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The IAM role that allows access to the CloudWatch metric.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The IAM role that allows access to the CloudWatch metric.
sourcepub fn metric_namespace(self, input: impl Into<String>) -> Self
pub fn metric_namespace(self, input: impl Into<String>) -> Self
The CloudWatch metric namespace name.
This field is required.sourcepub fn set_metric_namespace(self, input: Option<String>) -> Self
pub fn set_metric_namespace(self, input: Option<String>) -> Self
The CloudWatch metric namespace name.
sourcepub fn get_metric_namespace(&self) -> &Option<String>
pub fn get_metric_namespace(&self) -> &Option<String>
The CloudWatch metric namespace name.
sourcepub fn metric_name(self, input: impl Into<String>) -> Self
pub fn metric_name(self, input: impl Into<String>) -> Self
The CloudWatch metric name.
This field is required.sourcepub fn set_metric_name(self, input: Option<String>) -> Self
pub fn set_metric_name(self, input: Option<String>) -> Self
The CloudWatch metric name.
sourcepub fn get_metric_name(&self) -> &Option<String>
pub fn get_metric_name(&self) -> &Option<String>
The CloudWatch metric name.
sourcepub fn metric_value(self, input: impl Into<String>) -> Self
pub fn metric_value(self, input: impl Into<String>) -> Self
The CloudWatch metric value.
This field is required.sourcepub fn set_metric_value(self, input: Option<String>) -> Self
pub fn set_metric_value(self, input: Option<String>) -> Self
The CloudWatch metric value.
sourcepub fn get_metric_value(&self) -> &Option<String>
pub fn get_metric_value(&self) -> &Option<String>
The CloudWatch metric value.
sourcepub fn metric_unit(self, input: impl Into<String>) -> Self
pub fn metric_unit(self, input: impl Into<String>) -> Self
The metric unit supported by CloudWatch.
This field is required.sourcepub fn set_metric_unit(self, input: Option<String>) -> Self
pub fn set_metric_unit(self, input: Option<String>) -> Self
The metric unit supported by CloudWatch.
sourcepub fn get_metric_unit(&self) -> &Option<String>
pub fn get_metric_unit(&self) -> &Option<String>
The metric unit supported by CloudWatch.
sourcepub fn metric_timestamp(self, input: impl Into<String>) -> Self
pub fn metric_timestamp(self, input: impl Into<String>) -> Self
An optional Unix timestamp.
sourcepub fn set_metric_timestamp(self, input: Option<String>) -> Self
pub fn set_metric_timestamp(self, input: Option<String>) -> Self
An optional Unix timestamp.
sourcepub fn get_metric_timestamp(&self) -> &Option<String>
pub fn get_metric_timestamp(&self) -> &Option<String>
An optional Unix timestamp.
sourcepub fn build(self) -> Result<CloudwatchMetricAction, BuildError>
pub fn build(self) -> Result<CloudwatchMetricAction, BuildError>
Consumes the builder and constructs a CloudwatchMetricAction.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for CloudwatchMetricActionBuilder
impl Clone for CloudwatchMetricActionBuilder
source§fn clone(&self) -> CloudwatchMetricActionBuilder
fn clone(&self) -> CloudwatchMetricActionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CloudwatchMetricActionBuilder
impl Default for CloudwatchMetricActionBuilder
source§fn default() -> CloudwatchMetricActionBuilder
fn default() -> CloudwatchMetricActionBuilder
source§impl PartialEq for CloudwatchMetricActionBuilder
impl PartialEq for CloudwatchMetricActionBuilder
source§fn eq(&self, other: &CloudwatchMetricActionBuilder) -> bool
fn eq(&self, other: &CloudwatchMetricActionBuilder) -> bool
self and other values to be equal, and is used
by ==.