Class: Aws::Chatbot::Types::ConfiguredTeam

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-chatbot/lib/aws-sdk-chatbot/types.rb

Overview

A Microsoft Teams team that has been authorized with AWS Chatbot.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#team_idString

The ID of the Microsoft Team 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 details, see steps 1-4 in Get started with Microsoft Teams in the AWS Chatbot Administrator Guide.

Returns:

  • (String)


110
111
112
113
114
115
116
# File 'gems/aws-sdk-chatbot/lib/aws-sdk-chatbot/types.rb', line 110

class ConfiguredTeam < Struct.new(
  :tenant_id,
  :team_id,
  :team_name)
  SENSITIVE = []
  include Aws::Structure
end

#team_nameString

The name of the Microsoft Teams Team.

Returns:

  • (String)


110
111
112
113
114
115
116
# File 'gems/aws-sdk-chatbot/lib/aws-sdk-chatbot/types.rb', line 110

class ConfiguredTeam < Struct.new(
  :tenant_id,
  :team_id,
  :team_name)
  SENSITIVE = []
  include Aws::Structure
end

#tenant_idString

The ID of the Microsoft Teams tenant.

Returns:

  • (String)


110
111
112
113
114
115
116
# File 'gems/aws-sdk-chatbot/lib/aws-sdk-chatbot/types.rb', line 110

class ConfiguredTeam < Struct.new(
  :tenant_id,
  :team_id,
  :team_name)
  SENSITIVE = []
  include Aws::Structure
end