Class: Aws::IoT::Types::ListThingTypesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ListThingTypesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The output for the ListThingTypes operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token for the next set of results.
-
#thing_types ⇒ Array<Types::ThingTypeDefinition>
The thing types.
Instance Attribute Details
#next_token ⇒ String
The token for the next set of results. Will not be returned if operation has returned all results.
11761 11762 11763 11764 11765 11766 |
# File 'lib/aws-sdk-iot/types.rb', line 11761 class ListThingTypesResponse < Struct.new( :thing_types, :next_token) SENSITIVE = [] include Aws::Structure end |
#thing_types ⇒ Array<Types::ThingTypeDefinition>
The thing types.
11761 11762 11763 11764 11765 11766 |
# File 'lib/aws-sdk-iot/types.rb', line 11761 class ListThingTypesResponse < Struct.new( :thing_types, :next_token) SENSITIVE = [] include Aws::Structure end |