Class: Aws::IoTTwinMaker::Types::PropertyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTTwinMaker::Types::PropertyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iottwinmaker/types.rb
Overview
Note:
When making an API call, you may pass PropertyRequest data as a hash:
{
definition: {
configuration: {
"Name" => "Value",
},
data_type: {
allowed_values: [
{
boolean_value: false,
double_value: 1.0,
expression: "Expression",
integer_value: 1,
list_value: {
# recursive DataValueList
},
long_value: 1,
map_value: {
"String" => {
# recursive DataValue
},
},
relationship_value: {
target_component_name: "Name",
target_entity_id: "EntityId",
},
string_value: "String",
},
],
nested_type: {
# recursive DataType
},
relationship: {
relationship_type: "String",
target_component_type_id: "ComponentTypeId",
},
type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
unit_of_measure: "String",
},
default_value: {
boolean_value: false,
double_value: 1.0,
expression: "Expression",
integer_value: 1,
list_value: [
{
# recursive DataValue
},
],
long_value: 1,
map_value: {
"String" => {
# recursive DataValue
},
},
relationship_value: {
target_component_name: "Name",
target_entity_id: "EntityId",
},
string_value: "String",
},
is_external_id: false,
is_required_in_entity: false,
is_stored_externally: false,
is_time_series: false,
},
update_type: "UPDATE", # accepts UPDATE, DELETE
value: {
boolean_value: false,
double_value: 1.0,
expression: "Expression",
integer_value: 1,
list_value: [
{
# recursive DataValue
},
],
long_value: 1,
map_value: {
"String" => {
# recursive DataValue
},
},
relationship_value: {
target_component_name: "Name",
target_entity_id: "EntityId",
},
string_value: "String",
},
}
An object that sets information about a property.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#definition ⇒ Types::PropertyDefinitionRequest
An object that specifies information about a property.
-
#update_type ⇒ String
The update type of the update property request.
-
#value ⇒ Types::DataValue
The value of the property.
Instance Attribute Details
#definition ⇒ Types::PropertyDefinitionRequest
An object that specifies information about a property.
2727 2728 2729 2730 2731 2732 2733 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2727 class PropertyRequest < Struct.new( :definition, :update_type, :value) SENSITIVE = [] include Aws::Structure end |
#update_type ⇒ String
The update type of the update property request.
2727 2728 2729 2730 2731 2732 2733 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2727 class PropertyRequest < Struct.new( :definition, :update_type, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::DataValue
The value of the property.
2727 2728 2729 2730 2731 2732 2733 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2727 class PropertyRequest < Struct.new( :definition, :update_type, :value) SENSITIVE = [] include Aws::Structure end |