Struct aws_sdk_iot::client::fluent_builders::UpdateFleetMetric
source · pub struct UpdateFleetMetric { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateFleetMetric
.
Updates the data for a fleet metric.
Requires permission to access the UpdateFleetMetric action.
Implementations§
source§impl UpdateFleetMetric
impl UpdateFleetMetric
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateFleetMetric, AwsResponseRetryClassifier>, SdkError<UpdateFleetMetricError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateFleetMetric, AwsResponseRetryClassifier>, SdkError<UpdateFleetMetricError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateFleetMetricOutput, SdkError<UpdateFleetMetricError>>
pub async fn send(
self
) -> Result<UpdateFleetMetricOutput, SdkError<UpdateFleetMetricError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn metric_name(self, input: impl Into<String>) -> Self
pub fn metric_name(self, input: impl Into<String>) -> Self
The name of the fleet metric to update.
sourcepub fn set_metric_name(self, input: Option<String>) -> Self
pub fn set_metric_name(self, input: Option<String>) -> Self
The name of the fleet metric to update.
sourcepub fn query_string(self, input: impl Into<String>) -> Self
pub fn query_string(self, input: impl Into<String>) -> Self
The search query string.
sourcepub fn set_query_string(self, input: Option<String>) -> Self
pub fn set_query_string(self, input: Option<String>) -> Self
The search query string.
sourcepub fn aggregation_type(self, input: AggregationType) -> Self
pub fn aggregation_type(self, input: AggregationType) -> Self
The type of the aggregation query.
sourcepub fn set_aggregation_type(self, input: Option<AggregationType>) -> Self
pub fn set_aggregation_type(self, input: Option<AggregationType>) -> Self
The type of the aggregation query.
sourcepub fn period(self, input: i32) -> Self
pub fn period(self, input: i32) -> Self
The time in seconds between fleet metric emissions. Range [60(1 min), 86400(1 day)] and must be multiple of 60.
sourcepub fn set_period(self, input: Option<i32>) -> Self
pub fn set_period(self, input: Option<i32>) -> Self
The time in seconds between fleet metric emissions. Range [60(1 min), 86400(1 day)] and must be multiple of 60.
sourcepub fn aggregation_field(self, input: impl Into<String>) -> Self
pub fn aggregation_field(self, input: impl Into<String>) -> Self
The field to aggregate.
sourcepub fn set_aggregation_field(self, input: Option<String>) -> Self
pub fn set_aggregation_field(self, input: Option<String>) -> Self
The field to aggregate.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the fleet metric.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the fleet metric.
sourcepub fn query_version(self, input: impl Into<String>) -> Self
pub fn query_version(self, input: impl Into<String>) -> Self
The version of the query.
sourcepub fn set_query_version(self, input: Option<String>) -> Self
pub fn set_query_version(self, input: Option<String>) -> Self
The version of the query.
sourcepub fn index_name(self, input: impl Into<String>) -> Self
pub fn index_name(self, input: impl Into<String>) -> Self
The name of the index to search.
sourcepub fn set_index_name(self, input: Option<String>) -> Self
pub fn set_index_name(self, input: Option<String>) -> Self
The name of the index to search.
sourcepub fn unit(self, input: FleetMetricUnit) -> Self
pub fn unit(self, input: FleetMetricUnit) -> Self
Used to support unit transformation such as milliseconds to seconds. The unit must be supported by CW metric.
sourcepub fn set_unit(self, input: Option<FleetMetricUnit>) -> Self
pub fn set_unit(self, input: Option<FleetMetricUnit>) -> Self
Used to support unit transformation such as milliseconds to seconds. The unit must be supported by CW metric.
sourcepub fn expected_version(self, input: i64) -> Self
pub fn expected_version(self, input: i64) -> Self
The expected version of the fleet metric record in the registry.
sourcepub fn set_expected_version(self, input: Option<i64>) -> Self
pub fn set_expected_version(self, input: Option<i64>) -> Self
The expected version of the fleet metric record in the registry.
Trait Implementations§
source§impl Clone for UpdateFleetMetric
impl Clone for UpdateFleetMetric
source§fn clone(&self) -> UpdateFleetMetric
fn clone(&self) -> UpdateFleetMetric
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more