Interface CfnAssociation.SlackTransmissionTargetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssociation.SlackTransmissionTargetProperty.Jsii$Proxy
- Enclosing class:
CfnAssociation
@Stability(Stable)
public static interface CfnAssociation.SlackTransmissionTargetProperty
extends software.amazon.jsii.JsiiSerializable
Transmission targets for agent 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.services.devopsagent.*;
SlackTransmissionTargetProperty slackTransmissionTargetProperty = SlackTransmissionTargetProperty.builder()
.incidentResponseTarget(SlackChannelProperty.builder()
.channelId("channelId")
// the properties below are optional
.channelName("channelName")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssociation.SlackTransmissionTargetPropertystatic final classAn implementation forCfnAssociation.SlackTransmissionTargetProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIncidentResponseTarget
Slack channel configuration.Returns union: either
IResolvableorCfnAssociation.SlackChannelProperty- See Also:
-
builder
-