Class: Aws::IoTTwinMaker::Types::EntityPropertyReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTTwinMaker::Types::EntityPropertyReference
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iottwinmaker/types.rb
Overview
Note:
When making an API call, you may pass EntityPropertyReference data as a hash:
{
component_name: "Name",
entity_id: "EntityId",
external_id_property: {
"String" => "String",
},
property_name: "Name", # required
}
An object that uniquely identifies an entity property.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_name ⇒ String
The name of the component.
-
#entity_id ⇒ String
The ID of the entity.
-
#external_id_property ⇒ Hash<String,String>
A mapping of external IDs to property names.
-
#property_name ⇒ String
The name of the property.
Instance Attribute Details
#component_name ⇒ String
The name of the component.
1346 1347 1348 1349 1350 1351 1352 1353 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1346 class EntityPropertyReference < Struct.new( :component_name, :entity_id, :external_id_property, :property_name) SENSITIVE = [] include Aws::Structure end |
#entity_id ⇒ String
The ID of the entity.
1346 1347 1348 1349 1350 1351 1352 1353 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1346 class EntityPropertyReference < Struct.new( :component_name, :entity_id, :external_id_property, :property_name) SENSITIVE = [] include Aws::Structure end |
#external_id_property ⇒ Hash<String,String>
A mapping of external IDs to property names. External IDs uniquely identify properties from external data stores.
1346 1347 1348 1349 1350 1351 1352 1353 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1346 class EntityPropertyReference < Struct.new( :component_name, :entity_id, :external_id_property, :property_name) SENSITIVE = [] include Aws::Structure end |
#property_name ⇒ String
The name of the property.
1346 1347 1348 1349 1350 1351 1352 1353 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1346 class EntityPropertyReference < Struct.new( :component_name, :entity_id, :external_id_property, :property_name) SENSITIVE = [] include Aws::Structure end |