#[non_exhaustive]pub struct GetPercentilesInputBuilder { /* private fields */ }Expand description
A builder for GetPercentilesInput.
Implementations§
source§impl GetPercentilesInputBuilder
impl GetPercentilesInputBuilder
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 get_index_name(&self) -> &Option<String>
pub fn get_index_name(&self) -> &Option<String>
The name of the index to search.
sourcepub fn query_string(self, input: impl Into<String>) -> Self
pub fn query_string(self, input: impl Into<String>) -> Self
The search query string.
This field is required.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_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 query_version(self, input: impl Into<String>) -> Self
pub fn query_version(self, input: impl Into<String>) -> Self
The query version.
sourcepub fn set_query_version(self, input: Option<String>) -> Self
pub fn set_query_version(self, input: Option<String>) -> Self
The query version.
sourcepub fn get_query_version(&self) -> &Option<String>
pub fn get_query_version(&self) -> &Option<String>
The query version.
sourcepub fn percents(self, input: f64) -> Self
pub fn percents(self, input: f64) -> Self
Appends an item to percents.
To override the contents of this collection use set_percents.
The percentile groups returned.
sourcepub fn set_percents(self, input: Option<Vec<f64>>) -> Self
pub fn set_percents(self, input: Option<Vec<f64>>) -> Self
The percentile groups returned.
sourcepub fn get_percents(&self) -> &Option<Vec<f64>>
pub fn get_percents(&self) -> &Option<Vec<f64>>
The percentile groups returned.
sourcepub fn build(self) -> Result<GetPercentilesInput, BuildError>
pub fn build(self) -> Result<GetPercentilesInput, BuildError>
Consumes the builder and constructs a GetPercentilesInput.
source§impl GetPercentilesInputBuilder
impl GetPercentilesInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetPercentilesOutput, SdkError<GetPercentilesError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetPercentilesOutput, SdkError<GetPercentilesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetPercentilesInputBuilder
impl Clone for GetPercentilesInputBuilder
source§fn clone(&self) -> GetPercentilesInputBuilder
fn clone(&self) -> GetPercentilesInputBuilder
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 GetPercentilesInputBuilder
impl Debug for GetPercentilesInputBuilder
source§impl Default for GetPercentilesInputBuilder
impl Default for GetPercentilesInputBuilder
source§fn default() -> GetPercentilesInputBuilder
fn default() -> GetPercentilesInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetPercentilesInputBuilder
impl PartialEq for GetPercentilesInputBuilder
source§fn eq(&self, other: &GetPercentilesInputBuilder) -> bool
fn eq(&self, other: &GetPercentilesInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetPercentilesInputBuilder
Auto Trait Implementations§
impl Freeze for GetPercentilesInputBuilder
impl RefUnwindSafe for GetPercentilesInputBuilder
impl Send for GetPercentilesInputBuilder
impl Sync for GetPercentilesInputBuilder
impl Unpin for GetPercentilesInputBuilder
impl UnwindSafe for GetPercentilesInputBuilder
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> 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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.