Class: Aws::IoTThingsGraph::Types::SearchThingsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::SearchThingsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotthingsgraph/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entity_id ⇒ String
The ID of the entity to which the things are associated.
-
#max_results ⇒ Integer
The maximum number of results to return in the response.
-
#namespace_version ⇒ Integer
The version of the user’s namespace.
-
#next_token ⇒ String
The string that specifies the next page of results.
Instance Attribute Details
#entity_id ⇒ 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`
1250 1251 1252 1253 1254 1255 1256 1257 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1250 class SearchThingsRequest < Struct.new( :entity_id, :next_token, :max_results, :namespace_version) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in the response.
1250 1251 1252 1253 1254 1255 1256 1257 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1250 class SearchThingsRequest < Struct.new( :entity_id, :next_token, :max_results, :namespace_version) SENSITIVE = [] include Aws::Structure end |
#namespace_version ⇒ Integer
The version of the user’s namespace. Defaults to the latest version of the user’s namespace.
1250 1251 1252 1253 1254 1255 1256 1257 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1250 class SearchThingsRequest < Struct.new( :entity_id, :next_token, :max_results, :namespace_version) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The string that specifies the next page of results. Use this when you’re paginating results.
1250 1251 1252 1253 1254 1255 1256 1257 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1250 class SearchThingsRequest < Struct.new( :entity_id, :next_token, :max_results, :namespace_version) SENSITIVE = [] include Aws::Structure end |