Class: Aws::IoTTwinMaker::Types::PropertyResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb

Overview

An object that contains information about a property response.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#are_all_property_values_returnedBoolean

This flag notes whether all values of a list or map type property are returned in the API response. The maximum number of values per property returned is 50.

Returns:

  • (Boolean)


3209
3210
3211
3212
3213
3214
3215
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 3209

class PropertyResponse < Struct.new(
  :definition,
  :value,
  :are_all_property_values_returned)
  SENSITIVE = []
  include Aws::Structure
end

#definitionTypes::PropertyDefinitionResponse

An object that specifies information about a property.



3209
3210
3211
3212
3213
3214
3215
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 3209

class PropertyResponse < Struct.new(
  :definition,
  :value,
  :are_all_property_values_returned)
  SENSITIVE = []
  include Aws::Structure
end

#valueTypes::DataValue

The value of the property.

Returns:



3209
3210
3211
3212
3213
3214
3215
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 3209

class PropertyResponse < Struct.new(
  :definition,
  :value,
  :are_all_property_values_returned)
  SENSITIVE = []
  include Aws::Structure
end