interface SlackChannelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.SlackChannelProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_SlackChannelProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.SlackChannelProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.SlackChannelProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » SlackChannelProperty |
Slack channel configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const slackChannelProperty: devopsagent.CfnAssociation.SlackChannelProperty = {
channelId: 'channelId',
// the properties below are optional
channelName: 'channelName',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | Slack channel ID. |
| channel | string | Slack channel name. |
channelId
Type:
string
Slack channel ID.
channelName?
Type:
string
(optional)
Slack channel name.

.NET
Go
Java
Python
TypeScript