interface SlackChannelConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SupportApp.SlackChannelConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssupportapp#SlackChannelConfigurationReference |
Java | software.amazon.awscdk.services.supportapp.SlackChannelConfigurationReference |
Python | aws_cdk.aws_supportapp.SlackChannelConfigurationReference |
TypeScript | aws-cdk-lib » aws_supportapp » SlackChannelConfigurationReference |
A reference to a SlackChannelConfiguration resource.
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 slackChannelConfigurationReference: supportapp.SlackChannelConfigurationReference = {
channelId: 'channelId',
teamId: 'teamId',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The ChannelId of the SlackChannelConfiguration resource. |
| team | string | The TeamId of the SlackChannelConfiguration resource. |
channelId
Type:
string
The ChannelId of the SlackChannelConfiguration resource.
teamId
Type:
string
The TeamId of the SlackChannelConfiguration resource.

.NET
Go
Java
Python
TypeScript