interface SlackChannelConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SupportApp.SlackChannelConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssupportapp#SlackChannelConfigurationReference |
Java | software.amazon.awscdk.interfaces.supportapp.SlackChannelConfigurationReference |
Python | aws_cdk.interfaces.aws_supportapp.SlackChannelConfigurationReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_supportapp } from 'aws-cdk-lib/interfaces';
const slackChannelConfigurationReference: interfaces_aws_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