Struct aws_sdk_sagemaker::operation::get_search_suggestions::builders::GetSearchSuggestionsFluentBuilder
source · pub struct GetSearchSuggestionsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetSearchSuggestions
.
An auto-complete API for the search functionality in the SageMaker console. It returns suggestions of possible matches for the property name to use in Search
queries. Provides suggestions for HyperParameters
, Tags
, and Metrics
.
Implementations§
source§impl GetSearchSuggestionsFluentBuilder
impl GetSearchSuggestionsFluentBuilder
sourcepub fn as_input(&self) -> &GetSearchSuggestionsInputBuilder
pub fn as_input(&self) -> &GetSearchSuggestionsInputBuilder
Access the GetSearchSuggestions as a reference.
sourcepub async fn send(
self
) -> Result<GetSearchSuggestionsOutput, SdkError<GetSearchSuggestionsError, HttpResponse>>
pub async fn send( self ) -> Result<GetSearchSuggestionsOutput, SdkError<GetSearchSuggestionsError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<GetSearchSuggestionsOutput, GetSearchSuggestionsError, Self>
pub fn customize( self ) -> CustomizableOperation<GetSearchSuggestionsOutput, GetSearchSuggestionsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn resource(self, input: ResourceType) -> Self
pub fn resource(self, input: ResourceType) -> Self
The name of the SageMaker resource to search for.
sourcepub fn set_resource(self, input: Option<ResourceType>) -> Self
pub fn set_resource(self, input: Option<ResourceType>) -> Self
The name of the SageMaker resource to search for.
sourcepub fn get_resource(&self) -> &Option<ResourceType>
pub fn get_resource(&self) -> &Option<ResourceType>
The name of the SageMaker resource to search for.
sourcepub fn suggestion_query(self, input: SuggestionQuery) -> Self
pub fn suggestion_query(self, input: SuggestionQuery) -> Self
Limits the property names that are included in the response.
sourcepub fn set_suggestion_query(self, input: Option<SuggestionQuery>) -> Self
pub fn set_suggestion_query(self, input: Option<SuggestionQuery>) -> Self
Limits the property names that are included in the response.
sourcepub fn get_suggestion_query(&self) -> &Option<SuggestionQuery>
pub fn get_suggestion_query(&self) -> &Option<SuggestionQuery>
Limits the property names that are included in the response.
Trait Implementations§
source§impl Clone for GetSearchSuggestionsFluentBuilder
impl Clone for GetSearchSuggestionsFluentBuilder
source§fn clone(&self) -> GetSearchSuggestionsFluentBuilder
fn clone(&self) -> GetSearchSuggestionsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for GetSearchSuggestionsFluentBuilder
impl !RefUnwindSafe for GetSearchSuggestionsFluentBuilder
impl Send for GetSearchSuggestionsFluentBuilder
impl Sync for GetSearchSuggestionsFluentBuilder
impl Unpin for GetSearchSuggestionsFluentBuilder
impl !UnwindSafe for GetSearchSuggestionsFluentBuilder
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> 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