Class: Aws::IoT::Types::ListThingsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ListThingsResponse
- Defined in:
- gems/aws-sdk-iot/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.
12649 12650 12651 12652 12653 12654 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12649 class ListThingsResponse < Struct.new( :things, :next_token) SENSITIVE = [] include Aws::Structure end |
#things ⇒ Array<Types::ThingAttribute>
The things.
12649 12650 12651 12652 12653 12654 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 12649 class ListThingsResponse < Struct.new( :things, :next_token) SENSITIVE = [] include Aws::Structure end |