interface ChannelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodeGuruProfiler.CfnProfilingGroup.ChannelProperty |
Java | software.amazon.awscdk.services.codeguruprofiler.CfnProfilingGroup.ChannelProperty |
Python | aws_cdk.aws_codeguruprofiler.CfnProfilingGroup.ChannelProperty |
TypeScript | @aws-cdk/aws-codeguruprofiler » CfnProfilingGroup » ChannelProperty |
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 * as codeguruprofiler from '@aws-cdk/aws-codeguruprofiler';
const channelProperty: codeguruprofiler.CfnProfilingGroup.ChannelProperty = {
channelUri: 'channelUri',
// the properties below are optional
channelId: 'channelId',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The channel URI. |
| channel | string | The channel ID. |
channelUri
Type:
string
The channel URI.
channelId?
Type:
string
(optional)
The channel ID.

.NET
Java
Python
TypeScript