Interface CfnPipeline.MathProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipeline.MathProperty.Jsii$Proxy
- Enclosing class:
CfnPipeline
@Stability(Stable)
public static interface CfnPipeline.MathProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotanalytics.*; MathProperty mathProperty = MathProperty.builder() .attribute("attribute") .math("math") .name("name") // the properties below are optional .next("next") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipeline.MathProperty
static final class
An implementation forCfnPipeline.MathProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the attribute that contains the result of the math operation.getMath()
An expression that uses one or more existing attributes and must return an integer value.getName()
The name of the 'math' activity.default String
getNext()
The next activity in the pipeline.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttribute
The name of the attribute that contains the result of the math operation.- See Also:
-
getMath
An expression that uses one or more existing attributes and must return an integer value.- See Also:
-
getName
The name of the 'math' activity.- See Also:
-
getNext
The next activity in the pipeline.- See Also:
-
builder
- Returns:
- a
CfnPipeline.MathProperty.Builder
ofCfnPipeline.MathProperty
-