Show / Hide Table of Contents

Class CfnAssociation.SlackConfigurationProperty

Slack workspace integration configuration.

Inheritance
object
CfnAssociation.SlackConfigurationProperty
Implements
CfnAssociation.ISlackConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html#cfn-devopsagent-association-slackconfiguration-transmissiontarget

Type union: either IResolvable or CfnAssociation.ISlackTransmissionTargetProperty

WorkspaceId

Associated Slack workspace ID.

public string WorkspaceId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html#cfn-devopsagent-association-slackconfiguration-workspaceid

WorkspaceName

Associated Slack workspace name.

public string WorkspaceName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html#cfn-devopsagent-association-slackconfiguration-workspacename

Implements

CfnAssociation.ISlackConfigurationProperty
Back to top Generated by DocFX