Class: Aws::Chatbot::Types::SlackWorkspace
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chatbot::Types::SlackWorkspace
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chatbot/types.rb
Overview
A Slack workspace.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#slack_team_id ⇒ String
The ID of the Slack workspace authorized with AWS Chatbot.
-
#slack_team_name ⇒ String
The name of the Slack workspace.
-
#state ⇒ String
Either ‘ENABLED` or `DISABLED`.
-
#state_reason ⇒ String
Provided if State is ‘DISABLED`.
Instance Attribute Details
#slack_team_id ⇒ String
The ID of the Slack workspace authorized with AWS Chatbot.
1504 1505 1506 1507 1508 1509 1510 1511 |
# File 'lib/aws-sdk-chatbot/types.rb', line 1504 class SlackWorkspace < Struct.new( :slack_team_id, :slack_team_name, :state, :state_reason) SENSITIVE = [] include Aws::Structure end |
#slack_team_name ⇒ String
The name of the Slack workspace.
1504 1505 1506 1507 1508 1509 1510 1511 |
# File 'lib/aws-sdk-chatbot/types.rb', line 1504 class SlackWorkspace < Struct.new( :slack_team_id, :slack_team_name, :state, :state_reason) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
Either ‘ENABLED` or `DISABLED`. The resource returns `DISABLED` if the organization’s AWS Chatbot policy has explicitly denied that configuration. For example, if Amazon Chime is disabled.
1504 1505 1506 1507 1508 1509 1510 1511 |
# File 'lib/aws-sdk-chatbot/types.rb', line 1504 class SlackWorkspace < Struct.new( :slack_team_id, :slack_team_name, :state, :state_reason) SENSITIVE = [] include Aws::Structure end |
#state_reason ⇒ String
Provided if State is ‘DISABLED`. Provides context as to why the resource is disabled.
1504 1505 1506 1507 1508 1509 1510 1511 |
# File 'lib/aws-sdk-chatbot/types.rb', line 1504 class SlackWorkspace < Struct.new( :slack_team_id, :slack_team_name, :state, :state_reason) SENSITIVE = [] include Aws::Structure end |