Class: Aws::AlexaForBusiness::Types::AssociateSkillGroupWithRoomRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::AssociateSkillGroupWithRoomRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass AssociateSkillGroupWithRoomRequest data as a hash:
{
skill_group_arn: "Arn",
room_arn: "Arn",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#room_arn ⇒ String
The ARN of the room with which to associate the skill group.
-
#skill_group_arn ⇒ String
The ARN of the skill group to associate with a room.
Instance Attribute Details
#room_arn ⇒ String
The ARN of the room with which to associate the skill group. Required.
203 204 205 206 207 208 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 203 class AssociateSkillGroupWithRoomRequest < Struct.new( :skill_group_arn, :room_arn) SENSITIVE = [] include Aws::Structure end |
#skill_group_arn ⇒ String
The ARN of the skill group to associate with a room. Required.
203 204 205 206 207 208 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 203 class AssociateSkillGroupWithRoomRequest < Struct.new( :skill_group_arn, :room_arn) SENSITIVE = [] include Aws::Structure end |