Class: Aws::IoTWireless::Types::AssociateWirelessDeviceWithThingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::AssociateWirelessDeviceWithThingRequest
- Defined in:
- gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb
Overview
Note:
When making an API call, you may pass AssociateWirelessDeviceWithThingRequest data as a hash:
{
id: "WirelessDeviceId", # required
thing_arn: "ThingArn", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the resource to update.
-
#thing_arn ⇒ String
The ARN of the thing to associate with the wireless device.
Instance Attribute Details
#id ⇒ String
The ID of the resource to update.
244 245 246 247 248 249 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 244 class AssociateWirelessDeviceWithThingRequest < Struct.new( :id, :thing_arn) SENSITIVE = [] include Aws::Structure end |
#thing_arn ⇒ String
The ARN of the thing to associate with the wireless device.
244 245 246 247 248 249 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 244 class AssociateWirelessDeviceWithThingRequest < Struct.new( :id, :thing_arn) SENSITIVE = [] include Aws::Structure end |