You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AlexaForBusiness::Types::ListSkillsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListSkillsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  skill_group_arn: "Arn",
  enablement_type: "ENABLED", # accepts ENABLED, PENDING
  skill_type: "PUBLIC", # accepts PUBLIC, PRIVATE, ALL
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#enablement_typeString

Whether the skill is enabled under the user\'s account.

Possible values:

  • ENABLED
  • PENDING

Returns:

  • (String)

    Whether the skill is enabled under the user\'s account.

#max_resultsInteger

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.

Returns:

  • (Integer)

    The maximum number of results to include in the response.

#next_tokenString

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.

Returns:

  • (String)

    An optional token returned from a prior request.

#skill_group_arnString

The ARN of the skill group for which to list enabled skills.

Returns:

  • (String)

    The ARN of the skill group for which to list enabled skills.

#skill_typeString

Whether the skill is publicly available or is a private skill.

Possible values:

  • PUBLIC
  • PRIVATE
  • ALL

Returns:

  • (String)

    Whether the skill is publicly available or is a private skill.