Class: Aws::IoTTwinMaker::Types::PropertyResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTTwinMaker::Types::PropertyResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iottwinmaker/types.rb
Overview
An object that contains information about a property response.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#are_all_property_values_returned ⇒ Boolean
This flag notes whether all values of a list or map type property are returned in the API response.
-
#definition ⇒ Types::PropertyDefinitionResponse
An object that specifies information about a property.
-
#value ⇒ Types::DataValue
The value of the property.
Instance Attribute Details
#are_all_property_values_returned ⇒ Boolean
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.
3209 3210 3211 3212 3213 3214 3215 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3209 class PropertyResponse < Struct.new( :definition, :value, :are_all_property_values_returned) SENSITIVE = [] include Aws::Structure end |
#definition ⇒ Types::PropertyDefinitionResponse
An object that specifies information about a property.
3209 3210 3211 3212 3213 3214 3215 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3209 class PropertyResponse < Struct.new( :definition, :value, :are_all_property_values_returned) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::DataValue
The value of the property.
3209 3210 3211 3212 3213 3214 3215 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3209 class PropertyResponse < Struct.new( :definition, :value, :are_all_property_values_returned) SENSITIVE = [] include Aws::Structure end |