Struct aws_sdk_iot::input::ListThingsInput
source · #[non_exhaustive]pub struct ListThingsInput { /* private fields */ }
Expand description
The input for the ListThings operation.
Implementations§
source§impl ListThingsInput
impl ListThingsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListThings, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListThings, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListThings
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListThingsInput
.
source§impl ListThingsInput
impl ListThingsInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
To retrieve the next set of results, the nextToken
value from a previous response; otherwise null to receive the first set of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in this operation.
sourcepub fn attribute_name(&self) -> Option<&str>
pub fn attribute_name(&self) -> Option<&str>
The attribute name used to search for things.
sourcepub fn attribute_value(&self) -> Option<&str>
pub fn attribute_value(&self) -> Option<&str>
The attribute value used to search for things.
sourcepub fn thing_type_name(&self) -> Option<&str>
pub fn thing_type_name(&self) -> Option<&str>
The name of the thing type used to search for things.
sourcepub fn use_prefix_attribute_value(&self) -> bool
pub fn use_prefix_attribute_value(&self) -> bool
When true
, the action returns the thing resources with attribute values that start with the attributeValue
provided.
When false
, or not present, the action returns only the thing resources with attribute values that match the entire attributeValue
provided.
Trait Implementations§
source§impl Clone for ListThingsInput
impl Clone for ListThingsInput
source§fn clone(&self) -> ListThingsInput
fn clone(&self) -> ListThingsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListThingsInput
impl Debug for ListThingsInput
source§impl PartialEq<ListThingsInput> for ListThingsInput
impl PartialEq<ListThingsInput> for ListThingsInput
source§fn eq(&self, other: &ListThingsInput) -> bool
fn eq(&self, other: &ListThingsInput) -> bool
self
and other
values to be equal, and is used
by ==
.