Class: Aws::IoT::Types::ListThingsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ListThingsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The input for the ListThings operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_name ⇒ String
The attribute name used to search for things.
-
#attribute_value ⇒ String
The attribute value used to search for things.
-
#max_results ⇒ Integer
The maximum number of results to return in this operation.
-
#next_token ⇒ String
To retrieve the next set of results, the ‘nextToken` value from a previous response; otherwise null to receive the first set of results.
-
#thing_type_name ⇒ String
The name of the thing type used to search for things.
-
#use_prefix_attribute_value ⇒ Boolean
When ‘true`, the action returns the thing resources with attribute values that start with the `attributeValue` provided.
Instance Attribute Details
#attribute_name ⇒ String
The attribute name used to search for things.
11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 |
# File 'lib/aws-sdk-iot/types.rb', line 11883 class ListThingsRequest < Struct.new( :next_token, :max_results, :attribute_name, :attribute_value, :thing_type_name, :use_prefix_attribute_value) SENSITIVE = [] include Aws::Structure end |
#attribute_value ⇒ String
The attribute value used to search for things.
11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 |
# File 'lib/aws-sdk-iot/types.rb', line 11883 class ListThingsRequest < Struct.new( :next_token, :max_results, :attribute_name, :attribute_value, :thing_type_name, :use_prefix_attribute_value) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in this operation.
11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 |
# File 'lib/aws-sdk-iot/types.rb', line 11883 class ListThingsRequest < Struct.new( :next_token, :max_results, :attribute_name, :attribute_value, :thing_type_name, :use_prefix_attribute_value) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
To retrieve the next set of results, the ‘nextToken` value from a previous response; otherwise null to receive the first set of results.
11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 |
# File 'lib/aws-sdk-iot/types.rb', line 11883 class ListThingsRequest < Struct.new( :next_token, :max_results, :attribute_name, :attribute_value, :thing_type_name, :use_prefix_attribute_value) SENSITIVE = [] include Aws::Structure end |
#thing_type_name ⇒ String
The name of the thing type used to search for things.
11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 |
# File 'lib/aws-sdk-iot/types.rb', line 11883 class ListThingsRequest < Struct.new( :next_token, :max_results, :attribute_name, :attribute_value, :thing_type_name, :use_prefix_attribute_value) SENSITIVE = [] include Aws::Structure end |
#use_prefix_attribute_value ⇒ Boolean
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.
11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 |
# File 'lib/aws-sdk-iot/types.rb', line 11883 class ListThingsRequest < Struct.new( :next_token, :max_results, :attribute_name, :attribute_value, :thing_type_name, :use_prefix_attribute_value) SENSITIVE = [] include Aws::Structure end |