Struct aws_sdk_iotthingsgraph::input::SearchThingsInput [−][src]
#[non_exhaustive]pub struct SearchThingsInput {
pub entity_id: Option<String>,
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_id: Option<String>
The ID of the entity to which the things are associated.
The IDs should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME
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<SearchThings, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchThings, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<SearchThings
>
Creates a new builder-style object to manufacture SearchThingsInput
The ID of the entity to which the things are associated.
The IDs should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME
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 SearchThingsInput
impl Send for SearchThingsInput
impl Sync for SearchThingsInput
impl Unpin for SearchThingsInput
impl UnwindSafe for SearchThingsInput
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