interface CfnSlackWorkspaceConfigurationProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.SupportApp.CfnSlackWorkspaceConfigurationProps | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssupportapp#CfnSlackWorkspaceConfigurationProps | 
  Java | software.amazon.awscdk.services.supportapp.CfnSlackWorkspaceConfigurationProps | 
  Python | aws_cdk.aws_supportapp.CfnSlackWorkspaceConfigurationProps | 
  TypeScript  | aws-cdk-lib » aws_supportapp » CfnSlackWorkspaceConfigurationProps | 
Properties for defining a CfnSlackWorkspaceConfiguration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_supportapp as supportapp } from 'aws-cdk-lib';
const cfnSlackWorkspaceConfigurationProps: supportapp.CfnSlackWorkspaceConfigurationProps = {
  teamId: 'teamId',
  // the properties below are optional
  versionId: 'versionId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| team | string | The team ID in Slack. | 
| version | string | An identifier used to update an existing Slack workspace configuration in AWS CloudFormation , such as 100 . | 
teamId
Type:
string
The team ID in Slack.
This ID uniquely identifies a Slack workspace, such as T012ABCDEFG .
versionId?
Type:
string
(optional)
An identifier used to update an existing Slack workspace configuration in AWS CloudFormation , such as 100 .

 .NET
 Go
 Java
 Python
 TypeScript