Struct aws_sdk_iotthingsgraph::input::SearchEntitiesInput [−][src]
#[non_exhaustive]pub struct SearchEntitiesInput {
pub entity_types: Option<Vec<EntityType>>,
pub filters: Option<Vec<EntityFilter>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub namespace_version: Option<i64>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.entity_types: Option<Vec<EntityType>>
The entity types for which to search.
filters: Option<Vec<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.
next_token: Option<String>
The string that specifies the next page of results. Use this when you're paginating results.
max_results: Option<i32>
The maximum number of results to return in the response.
namespace_version: Option<i64>
The version of the user's namespace. Defaults to the latest version of the user's namespace.
Implementations
pub 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
>
Creates a new builder-style object to manufacture SearchEntitiesInput
The entity types for which to search.
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.
The string that specifies the next page of results. Use this when you're paginating results.
The maximum number of results to return in the response.
The version of the user's namespace. Defaults to the latest version of the user's namespace.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more