interface SlackChannelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins.CfnAssociationPropsMixin.SlackChannelProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsagent/mixins#CfnAssociationPropsMixin_SlackChannelProperty |
Java | software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.CfnAssociationPropsMixin.SlackChannelProperty |
Python | aws_cdk.mixins_preview.aws_devopsagent.mixins.CfnAssociationPropsMixin.SlackChannelProperty |
TypeScript | @aws-cdk/mixins-preview » aws_devopsagent » mixins » CfnAssociationPropsMixin » SlackChannelProperty |
Represents a Slack channel with its unique identifier and optional display name.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as devopsagent_mixins } from '@aws-cdk/mixins-preview/aws-devopsagent';
const slackChannelProperty: devopsagent_mixins.CfnAssociationPropsMixin.SlackChannelProperty = {
channelId: 'channelId',
channelName: 'channelName',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | Slack channel ID. |
| channel | string | Slack channel name. |
channelId?
Type:
string
(optional)
Slack channel ID.
channelName?
Type:
string
(optional)
Slack channel name.

.NET
Go
Java
Python
TypeScript