AlexaForBusiness / Client / list_skills

list_skills#

AlexaForBusiness.Client.list_skills(**kwargs)#

Lists all enabled skills in a specific skill group.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = client.list_skills(
    SkillGroupArn='string',
    EnablementType='ENABLED'|'PENDING',
    SkillType='PUBLIC'|'PRIVATE'|'ALL',
    NextToken='string',
    MaxResults=123
)
Parameters:
  • SkillGroupArn (string) – The ARN of the skill group for which to list enabled skills.

  • EnablementType (string) – Whether the skill is enabled under the user’s account.

  • SkillType (string) – Whether the skill is publicly available or is a private skill.

  • NextToken (string) – An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.

  • MaxResults (integer) – The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.

Return type:

dict

Returns:

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.