interface MathProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnPipelinePropsMixin.MathProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnPipelinePropsMixin_MathProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnPipelinePropsMixin.MathProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnPipelinePropsMixin.MathProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnPipelinePropsMixin » MathProperty |
An activity that computes an arithmetic expression using the message's attributes.
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 mathProperty: iotanalytics_mixins.CfnPipelinePropsMixin.MathProperty = {
attribute: 'attribute',
math: 'math',
name: 'name',
next: 'next',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute? | string | The name of the attribute that contains the result of the math operation. |
| math? | string | An expression that uses one or more existing attributes and must return an integer value. |
| name? | string | The name of the 'math' activity. |
| next? | string | The next activity in the pipeline. |
attribute?
Type:
string
(optional)
The name of the attribute that contains the result of the math operation.
math?
Type:
string
(optional)
An expression that uses one or more existing attributes and must return an integer value.
name?
Type:
string
(optional)
The name of the 'math' activity.
next?
Type:
string
(optional)
The next activity in the pipeline.

.NET
Go
Java
Python
TypeScript