Class: Aws::IoT::Types::ListThingTypesRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

The input for the ListThingTypes operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of results to return in this operation.

Returns:

  • (Integer)


11250
11251
11252
11253
11254
11255
11256
# File 'lib/aws-sdk-iot/types.rb', line 11250

class ListThingTypesRequest < Struct.new(
  :next_token,
  :max_results,
  :thing_type_name)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

To retrieve the next set of results, the ‘nextToken` value from a previous response; otherwise null to receive the first set of results.

Returns:

  • (String)


11250
11251
11252
11253
11254
11255
11256
# File 'lib/aws-sdk-iot/types.rb', line 11250

class ListThingTypesRequest < Struct.new(
  :next_token,
  :max_results,
  :thing_type_name)
  SENSITIVE = []
  include Aws::Structure
end

#thing_type_nameString

The name of the thing type.

Returns:

  • (String)


11250
11251
11252
11253
11254
11255
11256
# File 'lib/aws-sdk-iot/types.rb', line 11250

class ListThingTypesRequest < Struct.new(
  :next_token,
  :max_results,
  :thing_type_name)
  SENSITIVE = []
  include Aws::Structure
end