Interface CfnAssociation.SlackConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssociation.SlackConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAssociation

@Stability(Stable) public static interface CfnAssociation.SlackConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Slack workspace integration configuration.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.devopsagent.*;
 SlackConfigurationProperty slackConfigurationProperty = SlackConfigurationProperty.builder()
         .transmissionTarget(SlackTransmissionTargetProperty.builder()
                 .incidentResponseTarget(SlackChannelProperty.builder()
                         .channelId("channelId")
                         // the properties below are optional
                         .channelName("channelName")
                         .build())
                 .build())
         .workspaceId("workspaceId")
         .workspaceName("workspaceName")
         .build();
 

See Also: