interface ChannelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnPipelinePropsMixin.ChannelProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnPipelinePropsMixin_ChannelProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnPipelinePropsMixin.ChannelProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnPipelinePropsMixin.ChannelProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnPipelinePropsMixin » ChannelProperty |
Determines the source of the messages to be processed.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const channelProperty: iotanalytics_mixins.CfnPipelinePropsMixin.ChannelProperty = {
channelName: 'channelName',
name: 'name',
next: 'next',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The name of the channel from which the messages are processed. |
| name? | string | The name of the 'channel' activity. |
| next? | string | The next activity in the pipeline. |
channelName?
Type:
string
(optional)
The name of the channel from which the messages are processed.
name?
Type:
string
(optional)
The name of the 'channel' activity.
next?
Type:
string
(optional)
The next activity in the pipeline.

.NET
Go
Java
Python
TypeScript