Class: Aws::AlexaForBusiness::Types::AssociateDeviceWithRoomRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::AssociateDeviceWithRoomRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass AssociateDeviceWithRoomRequest data as a hash:
{
device_arn: "Arn",
room_arn: "Arn",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#device_arn ⇒ String
The ARN of the device to associate to a room.
-
#room_arn ⇒ String
The ARN of the room with which to associate the device.
Instance Attribute Details
#device_arn ⇒ String
The ARN of the device to associate to a room. Required.
173 174 175 176 177 178 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 173 class AssociateDeviceWithRoomRequest < Struct.new( :device_arn, :room_arn) SENSITIVE = [] include Aws::Structure end |
#room_arn ⇒ String
The ARN of the room with which to associate the device. Required.
173 174 175 176 177 178 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 173 class AssociateDeviceWithRoomRequest < Struct.new( :device_arn, :room_arn) SENSITIVE = [] include Aws::Structure end |