Class: Aws::AlexaForBusiness::Types::AssociateSkillWithSkillGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::AssociateSkillWithSkillGroupRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass AssociateSkillWithSkillGroupRequest data as a hash:
{
skill_group_arn: "Arn",
skill_id: "SkillId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#skill_group_arn ⇒ String
The ARN of the skill group to associate the skill to.
-
#skill_id ⇒ String
The unique identifier of the skill.
Instance Attribute Details
#skill_group_arn ⇒ String
The ARN of the skill group to associate the skill to. Required.
232 233 234 235 236 237 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 232 class AssociateSkillWithSkillGroupRequest < Struct.new( :skill_group_arn, :skill_id) SENSITIVE = [] include Aws::Structure end |
#skill_id ⇒ String
The unique identifier of the skill.
232 233 234 235 236 237 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 232 class AssociateSkillWithSkillGroupRequest < Struct.new( :skill_group_arn, :skill_id) SENSITIVE = [] include Aws::Structure end |