Struct aws_sdk_iotthingsgraph::input::SearchEntitiesInput
source · [−]#[non_exhaustive]pub struct SearchEntitiesInput { /* private fields */ }
Implementations
sourceimpl SearchEntitiesInput
impl SearchEntitiesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchEntities, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchEntities, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<SearchEntities
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SearchEntitiesInput
.
sourceimpl SearchEntitiesInput
impl SearchEntitiesInput
sourcepub fn entity_types(&self) -> Option<&[EntityType]>
pub fn entity_types(&self) -> Option<&[EntityType]>
The entity types for which to search.
sourcepub fn filters(&self) -> Option<&[EntityFilter]>
pub fn filters(&self) -> Option<&[EntityFilter]>
Optional filter to apply to the search. Valid filters are NAME
NAMESPACE
, SEMANTIC_TYPE_PATH
and REFERENCED_ENTITY_ID
. REFERENCED_ENTITY_ID
filters on entities that are used by the entity in the result set. For example, you can filter on the ID of a property that is used in a state.
Multiple filters function as OR criteria in the query. Multiple values passed inside the filter function as AND criteria.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The string that specifies the next page of results. Use this when you're paginating results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in the response.
sourcepub fn namespace_version(&self) -> Option<i64>
pub fn namespace_version(&self) -> Option<i64>
The version of the user's namespace. Defaults to the latest version of the user's namespace.
Trait Implementations
sourceimpl Clone for SearchEntitiesInput
impl Clone for SearchEntitiesInput
sourcefn clone(&self) -> SearchEntitiesInput
fn clone(&self) -> SearchEntitiesInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SearchEntitiesInput
impl Debug for SearchEntitiesInput
sourceimpl PartialEq<SearchEntitiesInput> for SearchEntitiesInput
impl PartialEq<SearchEntitiesInput> for SearchEntitiesInput
sourcefn eq(&self, other: &SearchEntitiesInput) -> bool
fn eq(&self, other: &SearchEntitiesInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for SearchEntitiesInput
Auto Trait Implementations
impl RefUnwindSafe for SearchEntitiesInput
impl Send for SearchEntitiesInput
impl Sync for SearchEntitiesInput
impl Unpin for SearchEntitiesInput
impl UnwindSafe for SearchEntitiesInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more