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

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

Overview

Note:

When making an API call, you may pass ListThingTypesRequest data as a hash:

{
  next_token: "NextToken",
  max_results: 1,
  thing_type_name: "ThingTypeName",
}

The input for the ListThingTypes operation.

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of results to return in this operation.

Returns:

  • (Integer)


7477
7478
7479
7480
7481
7482
# File 'lib/aws-sdk-iot/types.rb', line 7477

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

#next_tokenString

The token to retrieve the next set of results.

Returns:

  • (String)


7477
7478
7479
7480
7481
7482
# File 'lib/aws-sdk-iot/types.rb', line 7477

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

#thing_type_nameString

The name of the thing type.

Returns:

  • (String)


7477
7478
7479
7480
7481
7482
# File 'lib/aws-sdk-iot/types.rb', line 7477

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