Skip to content

List Microsoft Teams Channel Configurations

chatbot_list_microsoft_teams_channel_configurations R Documentation

Lists all AWS Chatbot Microsoft Teams channel configurations in an AWS account

Description

Lists all AWS Chatbot Microsoft Teams channel configurations in an AWS account.

Usage

chatbot_list_microsoft_teams_channel_configurations(MaxResults,
  NextToken, TeamId)

Arguments

MaxResults

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.

NextToken

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.

TeamId

The ID of the Microsoft Teams authorized with AWS Chatbot.

To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console. For more information, see Step 1: Configure a Microsoft Teams client in the AWS Chatbot Administrator Guide.

Value

A list with the following syntax:

list(
  NextToken = "string",
  TeamChannelConfigurations = list(
    list(
      ChannelId = "string",
      ChannelName = "string",
      TeamId = "string",
      TeamName = "string",
      TenantId = "string",
      ChatConfigurationArn = "string",
      IamRoleArn = "string",
      SnsTopicArns = list(
        "string"
      ),
      ConfigurationName = "string",
      LoggingLevel = "string",
      GuardrailPolicyArns = list(
        "string"
      ),
      UserAuthorizationRequired = TRUE|FALSE,
      Tags = list(
        list(
          TagKey = "string",
          TagValue = "string"
        )
      ),
      State = "string",
      StateReason = "string"
    )
  )
)

Request syntax

svc$list_microsoft_teams_channel_configurations(
  MaxResults = 123,
  NextToken = "string",
  TeamId = "string"
)