Class: Aws::IoT::Types::ListThingsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ListThingsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The output from the ListThings operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token to use to get the next set of results.
-
#things ⇒ Array<Types::ThingAttribute>
The things.
Instance Attribute Details
#next_token ⇒ String
The token to use to get the next set of results. Will not be returned if operation has returned all results.
11905 11906 11907 11908 11909 11910 |
# File 'lib/aws-sdk-iot/types.rb', line 11905 class ListThingsResponse < Struct.new( :things, :next_token) SENSITIVE = [] include Aws::Structure end |
#things ⇒ Array<Types::ThingAttribute>
The things.
11905 11906 11907 11908 11909 11910 |
# File 'lib/aws-sdk-iot/types.rb', line 11905 class ListThingsResponse < Struct.new( :things, :next_token) SENSITIVE = [] include Aws::Structure end |