#[non_exhaustive]pub struct GetSearchSuggestionsInput {
pub resource: Option<ResourceType>,
pub suggestion_query: Option<SuggestionQuery>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.resource: Option<ResourceType>
The name of the SageMaker resource to search for.
suggestion_query: Option<SuggestionQuery>
Limits the property names that are included in the response.
Implementations§
source§impl GetSearchSuggestionsInput
impl GetSearchSuggestionsInput
sourcepub fn resource(&self) -> Option<&ResourceType>
pub fn resource(&self) -> Option<&ResourceType>
The name of the SageMaker resource to search for.
sourcepub fn suggestion_query(&self) -> Option<&SuggestionQuery>
pub fn suggestion_query(&self) -> Option<&SuggestionQuery>
Limits the property names that are included in the response.
source§impl GetSearchSuggestionsInput
impl GetSearchSuggestionsInput
sourcepub fn builder() -> GetSearchSuggestionsInputBuilder
pub fn builder() -> GetSearchSuggestionsInputBuilder
Creates a new builder-style object to manufacture GetSearchSuggestionsInput
.
Trait Implementations§
source§impl Clone for GetSearchSuggestionsInput
impl Clone for GetSearchSuggestionsInput
source§fn clone(&self) -> GetSearchSuggestionsInput
fn clone(&self) -> GetSearchSuggestionsInput
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 GetSearchSuggestionsInput
impl Debug for GetSearchSuggestionsInput
source§impl PartialEq<GetSearchSuggestionsInput> for GetSearchSuggestionsInput
impl PartialEq<GetSearchSuggestionsInput> for GetSearchSuggestionsInput
source§fn eq(&self, other: &GetSearchSuggestionsInput) -> bool
fn eq(&self, other: &GetSearchSuggestionsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetSearchSuggestionsInput
Auto Trait Implementations§
impl RefUnwindSafe for GetSearchSuggestionsInput
impl Send for GetSearchSuggestionsInput
impl Sync for GetSearchSuggestionsInput
impl Unpin for GetSearchSuggestionsInput
impl UnwindSafe for GetSearchSuggestionsInput
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