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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssociation.SlackConfigurationPropertystatic final classAn implementation forCfnAssociation.SlackConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Transmission targets for agent notifications.Associated Slack workspace ID.Associated Slack workspace name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTransmissionTarget
Transmission targets for agent notifications.Returns union: either
IResolvableorCfnAssociation.SlackTransmissionTargetProperty- See Also:
-
getWorkspaceId
Associated Slack workspace ID.- See Also:
-
getWorkspaceName
Associated Slack workspace name.- See Also:
-
builder
-