Class CfnAssociation.SlackConfigurationProperty
Slack workspace integration configuration.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DevOpsAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAssociation.SlackConfigurationProperty : CfnAssociation.ISlackConfigurationProperty
Syntax (vb)
Public Class CfnAssociation.SlackConfigurationProperty Implements CfnAssociation.ISlackConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DevOpsAgent;
var slackConfigurationProperty = new SlackConfigurationProperty {
TransmissionTarget = new SlackTransmissionTargetProperty {
IncidentResponseTarget = new SlackChannelProperty {
ChannelId = "channelId",
// the properties below are optional
ChannelName = "channelName"
}
},
WorkspaceId = "workspaceId",
WorkspaceName = "workspaceName"
};
Synopsis
Constructors
| SlackConfigurationProperty() | Slack workspace integration configuration. |
Properties
| TransmissionTarget | Transmission targets for agent notifications. |
| WorkspaceId | Associated Slack workspace ID. |
| WorkspaceName | Associated Slack workspace name. |
Constructors
SlackConfigurationProperty()
Slack workspace integration configuration.
public SlackConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DevOpsAgent;
var slackConfigurationProperty = new SlackConfigurationProperty {
TransmissionTarget = new SlackTransmissionTargetProperty {
IncidentResponseTarget = new SlackChannelProperty {
ChannelId = "channelId",
// the properties below are optional
ChannelName = "channelName"
}
},
WorkspaceId = "workspaceId",
WorkspaceName = "workspaceName"
};
Properties
TransmissionTarget
Transmission targets for agent notifications.
public object TransmissionTarget { get; set; }
Property Value
Remarks
WorkspaceId
Associated Slack workspace ID.
public string WorkspaceId { get; set; }
Property Value
Remarks
WorkspaceName
Associated Slack workspace name.
public string WorkspaceName { get; set; }