Skip to content

List Slack Workspace Configurations

supportapp_list_slack_workspace_configurations R Documentation

Lists the Slack workspace configurations for an Amazon Web Services account

Description

Lists the Slack workspace configurations for an Amazon Web Services account.

Usage

supportapp_list_slack_workspace_configurations(nextToken)

Arguments

nextToken

If the results of a search are large, the API only returns a portion of the results and includes a nextToken pagination token in the response. To retrieve the next batch of results, reissue the search request and include the returned token. When the API returns the last set of results, the response doesn't include a pagination token value.

Value

A list with the following syntax:

list(
  nextToken = "string",
  slackWorkspaceConfigurations = list(
    list(
      allowOrganizationMemberAccount = TRUE|FALSE,
      teamId = "string",
      teamName = "string"
    )
  )
)

Request syntax

svc$list_slack_workspace_configurations(
  nextToken = "string"
)