pub struct SearchEntitiesRequest {
pub entity_types: Vec<String>,
pub filters: Option<Vec<EntityFilter>>,
pub max_results: Option<i64>,
pub namespace_version: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§entity_types: Vec<String>
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.
max_results: Option<i64>
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.
next_token: Option<String>
The string that specifies the next page of results. Use this when you're paginating results.
Trait Implementations§
Source§impl Clone for SearchEntitiesRequest
impl Clone for SearchEntitiesRequest
Source§fn clone(&self) -> SearchEntitiesRequest
fn clone(&self) -> SearchEntitiesRequest
Returns a duplicate 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 SearchEntitiesRequest
impl Debug for SearchEntitiesRequest
Source§impl Default for SearchEntitiesRequest
impl Default for SearchEntitiesRequest
Source§fn default() -> SearchEntitiesRequest
fn default() -> SearchEntitiesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchEntitiesRequest
impl PartialEq for SearchEntitiesRequest
Source§impl Serialize for SearchEntitiesRequest
impl Serialize for SearchEntitiesRequest
impl StructuralPartialEq for SearchEntitiesRequest
Auto Trait Implementations§
impl Freeze for SearchEntitiesRequest
impl RefUnwindSafe for SearchEntitiesRequest
impl Send for SearchEntitiesRequest
impl Sync for SearchEntitiesRequest
impl Unpin for SearchEntitiesRequest
impl UnwindSafe for SearchEntitiesRequest
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