Struct aws_sdk_iot::operation::list_things::builders::ListThingsInputBuilder
source · #[non_exhaustive]pub struct ListThingsInputBuilder { /* private fields */ }Expand description
A builder for ListThingsInput.
Implementations§
source§impl ListThingsInputBuilder
impl ListThingsInputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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 set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
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, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in this operation.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return in this operation.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to return in this operation.
sourcepub fn attribute_name(self, input: impl Into<String>) -> Self
pub fn attribute_name(self, input: impl Into<String>) -> Self
The attribute name used to search for things.
sourcepub fn set_attribute_name(self, input: Option<String>) -> Self
pub fn set_attribute_name(self, input: Option<String>) -> Self
The attribute name used to search for things.
sourcepub fn get_attribute_name(&self) -> &Option<String>
pub fn get_attribute_name(&self) -> &Option<String>
The attribute name used to search for things.
sourcepub fn attribute_value(self, input: impl Into<String>) -> Self
pub fn attribute_value(self, input: impl Into<String>) -> Self
The attribute value used to search for things.
sourcepub fn set_attribute_value(self, input: Option<String>) -> Self
pub fn set_attribute_value(self, input: Option<String>) -> Self
The attribute value used to search for things.
sourcepub fn get_attribute_value(&self) -> &Option<String>
pub fn get_attribute_value(&self) -> &Option<String>
The attribute value used to search for things.
sourcepub fn thing_type_name(self, input: impl Into<String>) -> Self
pub fn thing_type_name(self, input: impl Into<String>) -> Self
The name of the thing type used to search for things.
sourcepub fn set_thing_type_name(self, input: Option<String>) -> Self
pub fn set_thing_type_name(self, input: Option<String>) -> Self
The name of the thing type used to search for things.
sourcepub fn get_thing_type_name(&self) -> &Option<String>
pub fn get_thing_type_name(&self) -> &Option<String>
The name of the thing type used to search for things.
sourcepub fn use_prefix_attribute_value(self, input: bool) -> Self
pub fn use_prefix_attribute_value(self, input: bool) -> Self
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.
sourcepub fn set_use_prefix_attribute_value(self, input: Option<bool>) -> Self
pub fn set_use_prefix_attribute_value(self, input: Option<bool>) -> Self
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.
sourcepub fn get_use_prefix_attribute_value(&self) -> &Option<bool>
pub fn get_use_prefix_attribute_value(&self) -> &Option<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.
sourcepub fn build(self) -> Result<ListThingsInput, BuildError>
pub fn build(self) -> Result<ListThingsInput, BuildError>
Consumes the builder and constructs a ListThingsInput.
source§impl ListThingsInputBuilder
impl ListThingsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListThingsOutput, SdkError<ListThingsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListThingsOutput, SdkError<ListThingsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListThingsInputBuilder
impl Clone for ListThingsInputBuilder
source§fn clone(&self) -> ListThingsInputBuilder
fn clone(&self) -> ListThingsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListThingsInputBuilder
impl Debug for ListThingsInputBuilder
source§impl Default for ListThingsInputBuilder
impl Default for ListThingsInputBuilder
source§fn default() -> ListThingsInputBuilder
fn default() -> ListThingsInputBuilder
source§impl PartialEq for ListThingsInputBuilder
impl PartialEq for ListThingsInputBuilder
source§fn eq(&self, other: &ListThingsInputBuilder) -> bool
fn eq(&self, other: &ListThingsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.