Class: Aws::IoTThingsGraph::Types::AssociateEntityToThingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::AssociateEntityToThingRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotthingsgraph/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entity_id ⇒ String
The ID of the device to be associated with the thing.
-
#namespace_version ⇒ Integer
The version of the user’s namespace.
-
#thing_name ⇒ String
The name of the thing to which the entity is to be associated.
Instance Attribute Details
#entity_id ⇒ String
The ID of the device to be associated with the thing.
The ID should be in the following format.
‘urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME`
30 31 32 33 34 35 36 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 30 class AssociateEntityToThingRequest < Struct.new( :thing_name, :entity_id, :namespace_version) SENSITIVE = [] include Aws::Structure end |
#namespace_version ⇒ Integer
The version of the user’s namespace. Defaults to the latest version of the user’s namespace.
30 31 32 33 34 35 36 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 30 class AssociateEntityToThingRequest < Struct.new( :thing_name, :entity_id, :namespace_version) SENSITIVE = [] include Aws::Structure end |
#thing_name ⇒ String
The name of the thing to which the entity is to be associated.
30 31 32 33 34 35 36 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 30 class AssociateEntityToThingRequest < Struct.new( :thing_name, :entity_id, :namespace_version) SENSITIVE = [] include Aws::Structure end |