aws-cdk-lib.aws_iotanalytics.CfnPipeline.ChannelProperty

interface ChannelProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTAnalytics.CfnPipeline.ChannelProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnPipeline_ChannelProperty
Javasoftware.amazon.awscdk.services.iotanalytics.CfnPipeline.ChannelProperty
Pythonaws_cdk.aws_iotanalytics.CfnPipeline.ChannelProperty
TypeScript aws-cdk-lib » aws_iotanalytics » CfnPipeline » 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 { aws_iotanalytics as iotanalytics } from 'aws-cdk-lib';
const channelProperty: iotanalytics.CfnPipeline.ChannelProperty = {
  channelName: 'channelName',
  name: 'name',

  // the properties below are optional
  next: 'next',
};

Properties

NameTypeDescription
channelNamestringThe name of the channel from which the messages are processed.
namestringThe name of the 'channel' activity.
next?stringThe next activity in the pipeline.

channelName

Type: string

The name of the channel from which the messages are processed.


name

Type: string

The name of the 'channel' activity.


next?

Type: string (optional)

The next activity in the pipeline.