#[non_exhaustive]pub struct UpdateFleetMetricInputBuilder { /* private fields */ }Expand description
A builder for UpdateFleetMetricInput.
Implementations§
source§impl UpdateFleetMetricInputBuilder
impl UpdateFleetMetricInputBuilder
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.
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 name of the fleet metric to update.
sourcepub fn get_metric_name(&self) -> &Option<String>
pub fn get_metric_name(&self) -> &Option<String>
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 get_query_string(&self) -> &Option<String>
pub fn get_query_string(&self) -> &Option<String>
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 get_aggregation_type(&self) -> &Option<AggregationType>
pub fn get_aggregation_type(&self) -> &Option<AggregationType>
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 get_period(&self) -> &Option<i32>
pub fn get_period(&self) -> &Option<i32>
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 get_aggregation_field(&self) -> &Option<String>
pub fn get_aggregation_field(&self) -> &Option<String>
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 get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
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 get_query_version(&self) -> &Option<String>
pub fn get_query_version(&self) -> &Option<String>
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.
This field is required.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 get_index_name(&self) -> &Option<String>
pub fn get_index_name(&self) -> &Option<String>
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 get_unit(&self) -> &Option<FleetMetricUnit>
pub fn get_unit(&self) -> &Option<FleetMetricUnit>
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.
sourcepub fn get_expected_version(&self) -> &Option<i64>
pub fn get_expected_version(&self) -> &Option<i64>
The expected version of the fleet metric record in the registry.
sourcepub fn build(self) -> Result<UpdateFleetMetricInput, BuildError>
pub fn build(self) -> Result<UpdateFleetMetricInput, BuildError>
Consumes the builder and constructs a UpdateFleetMetricInput.
source§impl UpdateFleetMetricInputBuilder
impl UpdateFleetMetricInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateFleetMetricOutput, SdkError<UpdateFleetMetricError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateFleetMetricOutput, SdkError<UpdateFleetMetricError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateFleetMetricInputBuilder
impl Clone for UpdateFleetMetricInputBuilder
source§fn clone(&self) -> UpdateFleetMetricInputBuilder
fn clone(&self) -> UpdateFleetMetricInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateFleetMetricInputBuilder
impl Default for UpdateFleetMetricInputBuilder
source§fn default() -> UpdateFleetMetricInputBuilder
fn default() -> UpdateFleetMetricInputBuilder
source§impl PartialEq for UpdateFleetMetricInputBuilder
impl PartialEq for UpdateFleetMetricInputBuilder
source§fn eq(&self, other: &UpdateFleetMetricInputBuilder) -> bool
fn eq(&self, other: &UpdateFleetMetricInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateFleetMetricInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateFleetMetricInputBuilder
impl RefUnwindSafe for UpdateFleetMetricInputBuilder
impl Send for UpdateFleetMetricInputBuilder
impl Sync for UpdateFleetMetricInputBuilder
impl Unpin for UpdateFleetMetricInputBuilder
impl UnwindSafe for UpdateFleetMetricInputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more