Class SlackChannelConfigurationReference
A reference to a SlackChannelConfiguration resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SupportApp
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SlackChannelConfigurationReference : ISlackChannelConfigurationReference
Syntax (vb)
Public Class SlackChannelConfigurationReference Implements ISlackChannelConfigurationReference
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.SupportApp;
var slackChannelConfigurationReference = new SlackChannelConfigurationReference {
ChannelId = "channelId",
TeamId = "teamId"
};
Synopsis
Constructors
SlackChannelConfigurationReference() | A reference to a SlackChannelConfiguration resource. |
Properties
ChannelId | The ChannelId of the SlackChannelConfiguration resource. |
TeamId | The TeamId of the SlackChannelConfiguration resource. |
Constructors
SlackChannelConfigurationReference()
A reference to a SlackChannelConfiguration resource.
public SlackChannelConfigurationReference()
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.SupportApp;
var slackChannelConfigurationReference = new SlackChannelConfigurationReference {
ChannelId = "channelId",
TeamId = "teamId"
};
Properties
ChannelId
The ChannelId of the SlackChannelConfiguration resource.
public string ChannelId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
TeamId
The TeamId of the SlackChannelConfiguration resource.
public string TeamId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated