Interface CfnAssociationPropsMixin.SlackConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssociationPropsMixin.SlackConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAssociationPropsMixin
@Stability(Stable)
public static interface CfnAssociationPropsMixin.SlackConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for Slack workspace integration.
Defines the workspace ID, workspace name, and transmission targets that specify which Slack channels receive notifications.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.devopsagent.*;
SlackConfigurationProperty slackConfigurationProperty = SlackConfigurationProperty.builder()
.transmissionTarget(SlackTransmissionTargetProperty.builder()
.incidentResponseTarget(SlackChannelProperty.builder()
.channelId("channelId")
.channelName("channelName")
.build())
.build())
.workspaceId("workspaceId")
.workspaceName("workspaceName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssociationPropsMixin.SlackConfigurationPropertystatic final classAn implementation forCfnAssociationPropsMixin.SlackConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTransmissionTarget
Transmission targets for agent notifications.Returns union: either
IResolvableorCfnAssociationPropsMixin.SlackTransmissionTargetProperty- See Also:
-
getWorkspaceId
Associated Slack workspace ID.- See Also:
-
getWorkspaceName
Associated Slack workspace name.- See Also:
-
builder
-