Class: Aws::AlexaForBusiness::Types::DisassociateSkillGroupFromRoomRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::DisassociateSkillGroupFromRoomRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass DisassociateSkillGroupFromRoomRequest 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 from which the skill group is to be disassociated.
-
#skill_group_arn ⇒ String
The ARN of the skill group to disassociate from a room.
Instance Attribute Details
#room_arn ⇒ String
The ARN of the room from which the skill group is to be disassociated. Required.
2439 2440 2441 2442 2443 2444 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 2439 class DisassociateSkillGroupFromRoomRequest < Struct.new( :skill_group_arn, :room_arn) SENSITIVE = [] include Aws::Structure end |
#skill_group_arn ⇒ String
The ARN of the skill group to disassociate from a room. Required.
2439 2440 2441 2442 2443 2444 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 2439 class DisassociateSkillGroupFromRoomRequest < Struct.new( :skill_group_arn, :room_arn) SENSITIVE = [] include Aws::Structure end |