Show / Hide Table of Contents

Class CfnPipeline

A CloudFormation AWS::IoTAnalytics::Pipeline.

Inheritance
System.Object
Construct
CfnElement
CfnRefElement
CfnResource
CfnPipeline
Implements
IConstruct
Constructs.IConstruct
IDependable
IInspectable
Inherited Members
CfnResource.IsCfnResource(IConstruct)
CfnResource.AddDeletionOverride(String)
CfnResource.AddDependsOn(CfnResource)
CfnResource.AddMetadata(String, Object)
CfnResource.AddOverride(String, Object)
CfnResource.AddPropertyDeletionOverride(String)
CfnResource.AddPropertyOverride(String, Object)
CfnResource.ApplyRemovalPolicy(Nullable<RemovalPolicy>, IRemovalPolicyOptions)
CfnResource.GetAtt(String)
CfnResource.GetMetadata(String)
CfnResource.ShouldSynthesize()
CfnResource.ToString()
CfnResource.ValidateProperties(Object)
CfnResource.CfnOptions
CfnResource.CfnResourceType
CfnResource.UpdatedProperites
CfnRefElement.Ref
CfnElement.IsCfnElement(Object)
CfnElement.OverrideLogicalId(String)
CfnElement.CreationStack
CfnElement.LogicalId
CfnElement.Stack
Construct.IsConstruct(Object)
Construct.OnPrepare()
Construct.OnSynthesize(ISynthesisSession)
Construct.OnValidate()
Construct.Prepare()
Construct.Synthesize(ISynthesisSession)
Construct.Validate()
Construct.Node
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public class CfnPipeline : CfnResource, IConstruct, IConstruct, IDependable, IInspectable
Syntax (vb)
Public Class CfnPipeline
    Inherits CfnResource
    Implements IConstruct, IConstruct, IDependable, IInspectable
Remarks

The AWS::IoTAnalytics::Pipeline resource consumes messages from one or more channels and allows you to process the messages before storing them in a data store. You must specify both a channel and a datastore activity and, optionally, as many as 23 additional activities in the pipelineActivities array. For more information, see How to Use AWS IoT Analytics in the AWS IoT Analytics User Guide .

CloudformationResource: AWS::IoTAnalytics::Pipeline

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTAnalytics;

CfnPipeline cfnPipeline = new CfnPipeline(this, "MyCfnPipeline", new CfnPipelineProps {
    PipelineActivities = new [] { new ActivityProperty {
        AddAttributes = new AddAttributesProperty {
            Attributes = new Dictionary<string, string> {
                { "attributesKey", "attributes" }
            },
            Name = "name",

            // the properties below are optional
            Next = "next"
        },
        Channel = new ChannelProperty {
            ChannelName = "channelName",
            Name = "name",

            // the properties below are optional
            Next = "next"
        },
        Datastore = new DatastoreProperty {
            DatastoreName = "datastoreName",
            Name = "name"
        },
        DeviceRegistryEnrich = new DeviceRegistryEnrichProperty {
            Attribute = "attribute",
            Name = "name",
            RoleArn = "roleArn",
            ThingName = "thingName",

            // the properties below are optional
            Next = "next"
        },
        DeviceShadowEnrich = new DeviceShadowEnrichProperty {
            Attribute = "attribute",
            Name = "name",
            RoleArn = "roleArn",
            ThingName = "thingName",

            // the properties below are optional
            Next = "next"
        },
        Filter = new FilterProperty {
            Filter = "filter",
            Name = "name",

            // the properties below are optional
            Next = "next"
        },
        Lambda = new LambdaProperty {
            BatchSize = 123,
            LambdaName = "lambdaName",
            Name = "name",

            // the properties below are optional
            Next = "next"
        },
        Math = new MathProperty {
            Attribute = "attribute",
            Math = "math",
            Name = "name",

            // the properties below are optional
            Next = "next"
        },
        RemoveAttributes = new RemoveAttributesProperty {
            Attributes = new [] { "attributes" },
            Name = "name",

            // the properties below are optional
            Next = "next"
        },
        SelectAttributes = new SelectAttributesProperty {
            Attributes = new [] { "attributes" },
            Name = "name",

            // the properties below are optional
            Next = "next"
        }
    } },

    // the properties below are optional
    PipelineName = "pipelineName",
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
});

Synopsis

Constructors

CfnPipeline(Construct, String, ICfnPipelineProps)

Create a new AWS::IoTAnalytics::Pipeline.

CfnPipeline(ByRefValue)

Used by jsii to construct an instance of this class from a Javascript-owned object reference

CfnPipeline(DeputyBase.DeputyProps)

Used by jsii to construct an instance of this class from DeputyProps

Properties

AttrId
CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

CfnProperties
PipelineActivities

A list of "PipelineActivity" objects.

PipelineName

The name of the pipeline.

Tags

Metadata which can be used to manage the pipeline.

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

RenderProperties(IDictionary<String, Object>)

Constructors

CfnPipeline(Construct, String, ICfnPipelineProps)

Create a new AWS::IoTAnalytics::Pipeline.

public CfnPipeline(Construct scope, string id, ICfnPipelineProps props)
Parameters
scope Construct
  • scope in which this resource is defined.
id System.String
  • scoped id of the resource.
props ICfnPipelineProps
  • resource properties.

CfnPipeline(ByRefValue)

Used by jsii to construct an instance of this class from a Javascript-owned object reference

protected CfnPipeline(ByRefValue reference)
Parameters
reference Amazon.JSII.Runtime.Deputy.ByRefValue

The Javascript-owned object reference

CfnPipeline(DeputyBase.DeputyProps)

Used by jsii to construct an instance of this class from DeputyProps

protected CfnPipeline(DeputyBase.DeputyProps props)
Parameters
props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps

The deputy props

Properties

AttrId

public virtual string AttrId { get; }
Property Value

System.String

Remarks

CloudformationAttribute: Id

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value

System.String

CfnProperties

protected override IDictionary<string, object> CfnProperties { get; }
Property Value

System.Collections.Generic.IDictionary<System.String, System.Object>

Overrides
CfnResource.CfnProperties

PipelineActivities

A list of "PipelineActivity" objects.

public virtual object PipelineActivities { get; set; }
Property Value

System.Object

Remarks

Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.

The list can be 2-25 PipelineActivity objects and must contain both a channel and a datastore activity. Each entry in the list must contain only one activity, for example:

pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html#cfn-iotanalytics-pipeline-pipelineactivities

PipelineName

The name of the pipeline.

public virtual string PipelineName { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html#cfn-iotanalytics-pipeline-pipelinename

Tags

Metadata which can be used to manage the pipeline.

public virtual TagManager Tags { get; }
Property Value

TagManager

Remarks

For more information, see Tag .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-pipeline.html#cfn-iotanalytics-pipeline-tags

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

public virtual void Inspect(TreeInspector inspector)
Parameters
inspector TreeInspector
  • tree inspector to collect and process attributes.

RenderProperties(IDictionary<String, Object>)

protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
props System.Collections.Generic.IDictionary<System.String, System.Object>
Returns

System.Collections.Generic.IDictionary<System.String, System.Object>

Overrides
CfnResource.RenderProperties(IDictionary<String, Object>)

Implements

IConstruct
Constructs.IConstruct
IDependable
IInspectable
Back to top Generated by DocFX