list_skills
(**kwargs)¶Lists all enabled skills in a specific skill group.
See also: AWS API Documentation
Request Syntax
response = client.list_skills(
SkillGroupArn='string',
EnablementType='ENABLED'|'PENDING',
SkillType='PUBLIC'|'PRIVATE'|'ALL',
NextToken='string',
MaxResults=123
)
MaxResults
.MaxResults
value, a token is included in the response so that the remaining results can be retrieved.dict
Response Syntax
{
'SkillSummaries': [
{
'SkillId': 'string',
'SkillName': 'string',
'SupportsLinking': True|False,
'EnablementType': 'ENABLED'|'PENDING',
'SkillType': 'PUBLIC'|'PRIVATE'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
SkillSummaries (list) --
The list of enabled skills requested. Required.
(dict) --
The summary of skills.
SkillId (string) --
The ARN of the skill summary.
SkillName (string) --
The name of the skill.
SupportsLinking (boolean) --
Linking support for a skill.
EnablementType (string) --
Whether the skill is enabled under the user's account, or if it requires linking to be used.
SkillType (string) --
Whether the skill is publicly available or is a private skill.
NextToken (string) --
The token returned to indicate that there is more data available.