SupportApp / Client / list_slack_workspace_configurations

list_slack_workspace_configurations#

SupportApp.Client.list_slack_workspace_configurations(**kwargs)#

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

See also: AWS API Documentation

Request Syntax

response = client.list_slack_workspace_configurations(
    nextToken='string'
)
Parameters:

nextToken (string) – 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.

Return type:

dict

Returns:

Response Syntax

{
    'nextToken': 'string',
    'slackWorkspaceConfigurations': [
        {
            'allowOrganizationMemberAccount': True|False,
            'teamId': 'string',
            'teamName': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    • nextToken (string) –

      The point where pagination should resume when the response returns only partial results.

    • slackWorkspaceConfigurations (list) –

      The configurations for a Slack workspace.

      • (dict) –

        The configuration for a Slack workspace that you added to an Amazon Web Services account.

        • allowOrganizationMemberAccount (boolean) –

          Whether to allow member accounts to authorize Slack workspaces. Member accounts must be part of an organization in Organizations.

        • teamId (string) –

          The team ID in Slack. This ID uniquely identifies a Slack workspace, such as T012ABCDEFG.

        • teamName (string) –

          The name of the Slack workspace.

Exceptions