Show / Hide Table of Contents

Class CfnPipeline.MathProperty

An activity that computes an arithmetic expression using the message's attributes.

Inheritance
System.Object
CfnPipeline.MathProperty
Implements
CfnPipeline.IMathProperty
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public class MathProperty : Object, CfnPipeline.IMathProperty
Syntax (vb)
Public Class MathProperty
    Inherits Object
    Implements CfnPipeline.IMathProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-math.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;

MathProperty mathProperty = new MathProperty {
    Attribute = "attribute",
    Math = "math",
    Name = "name",

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

Synopsis

Constructors

MathProperty()

Properties

Attribute

The name of the attribute that contains the result of the math operation.

Math

An expression that uses one or more existing attributes and must return an integer value.

Name

The name of the 'math' activity.

Next

The next activity in the pipeline.

Constructors

MathProperty()

public MathProperty()

Properties

Attribute

The name of the attribute that contains the result of the math operation.

public string Attribute { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-math.html#cfn-iotanalytics-pipeline-math-attribute

Math

An expression that uses one or more existing attributes and must return an integer value.

public string Math { get; set; }
Property Value

System.String

Remarks

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

Name

The name of the 'math' activity.

public string Name { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-math.html#cfn-iotanalytics-pipeline-math-name

Next

The next activity in the pipeline.

public string Next { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-math.html#cfn-iotanalytics-pipeline-math-next

Implements

CfnPipeline.IMathProperty
Back to top Generated by DocFX