CfnSlackWorkspaceConfigurationProps
- class aws_cdk.aws_supportapp.CfnSlackWorkspaceConfigurationProps(*, team_id, version_id=None)
Bases:
object
Properties for defining a
CfnSlackWorkspaceConfiguration
.- Parameters:
team_id (
str
) – The team ID in Slack. This ID uniquely identifies a Slack workspace, such asT012ABCDEFG
.version_id (
Optional
[str
]) – An identifier used to update an existing Slack workspace configuration in AWS CloudFormation , such as100
.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_supportapp as supportapp cfn_slack_workspace_configuration_props = supportapp.CfnSlackWorkspaceConfigurationProps( team_id="teamId", # the properties below are optional version_id="versionId" )
Attributes
- team_id
The team ID in Slack.
This ID uniquely identifies a Slack workspace, such as
T012ABCDEFG
.
- version_id
An identifier used to update an existing Slack workspace configuration in AWS CloudFormation , such as
100
.