Class: Aws::IoT::Types::ListThingPrincipalsResponse

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

Overview

The output from the ListThingPrincipals operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

The token to use to get the next set of results, or null if there are no additional results.

Returns:

  • (String)


11141
11142
11143
11144
11145
11146
# File 'lib/aws-sdk-iot/types.rb', line 11141

class ListThingPrincipalsResponse < Struct.new(
  :principals,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#principalsArray<String>

The principals associated with the thing.

Returns:

  • (Array<String>)


11141
11142
11143
11144
11145
11146
# File 'lib/aws-sdk-iot/types.rb', line 11141

class ListThingPrincipalsResponse < Struct.new(
  :principals,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end