Class: Aws::Chatbot::Types::ListTeamsChannelConfigurationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chatbot::Types::ListTeamsChannelConfigurationsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chatbot/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to include in the response.
-
#next_token ⇒ String
An optional token returned from a prior request.
-
#team_id ⇒ String
The ID of the Microsoft Teams authorized with AWS Chatbot.
Instance Attribute Details
#max_results ⇒ 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.
1651 1652 1653 1654 1655 1656 1657 |
# File 'lib/aws-sdk-chatbot/types.rb', line 1651 class ListTeamsChannelConfigurationsRequest < Struct.new( :max_results, :next_token, :team_id) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ 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.
1651 1652 1653 1654 1655 1656 1657 |
# File 'lib/aws-sdk-chatbot/types.rb', line 1651 class ListTeamsChannelConfigurationsRequest < Struct.new( :max_results, :next_token, :team_id) SENSITIVE = [] include Aws::Structure end |
#team_id ⇒ String
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][1
-
in the <i> AWS
Chatbot Administrator Guide</i>.
[1]: docs.aws.amazon.com/chatbot/latest/adminguide/teams-setup.html#teams-client-setup
1651 1652 1653 1654 1655 1656 1657 |
# File 'lib/aws-sdk-chatbot/types.rb', line 1651 class ListTeamsChannelConfigurationsRequest < Struct.new( :max_results, :next_token, :team_id) SENSITIVE = [] include Aws::Structure end |