Interface CfnProfilingGroup.ChannelProperty

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

@Stability(Stable) public static interface CfnProfilingGroup.ChannelProperty extends software.amazon.jsii.JsiiSerializable
Notification medium for users to get alerted for events that occur in application profile.

We support SNS topic as a notification channel.

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.codeguruprofiler.*;
 ChannelProperty channelProperty = ChannelProperty.builder()
         .channelUri("channelUri")
         // the properties below are optional
         .channelId("channelId")
         .build();
 

See Also: