public static interface Transform.Builder extends SdkPojo, CopyableBuilder<Transform.Builder,Transform>
| Modifier and Type | Method and Description |
|---|---|
Transform.Builder |
expression(String expression)
The mathematical expression that defines the transformation function.
|
Transform.Builder |
variables(Collection<ExpressionVariable> variables)
The list of variables used in the expression.
|
Transform.Builder |
variables(Consumer<ExpressionVariable.Builder>... variables)
The list of variables used in the expression.
|
Transform.Builder |
variables(ExpressionVariable... variables)
The list of variables used in the expression.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildTransform.Builder expression(String expression)
The mathematical expression that defines the transformation function. You can specify up to 10 variables per expression. You can specify up to 10 functions per expression.
For more information, see Quotas in the AWS IoT SiteWise User Guide.
expression - The mathematical expression that defines the transformation function. You can specify up to 10
variables per expression. You can specify up to 10 functions per expression.
For more information, see Quotas in the AWS IoT SiteWise User Guide.
Transform.Builder variables(Collection<ExpressionVariable> variables)
The list of variables used in the expression.
variables - The list of variables used in the expression.Transform.Builder variables(ExpressionVariable... variables)
The list of variables used in the expression.
variables - The list of variables used in the expression.Transform.Builder variables(Consumer<ExpressionVariable.Builder>... variables)
The list of variables used in the expression.
This is a convenience that creates an instance of theList.Builder avoiding the
need to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately
and its result is passed to #variables(List) .variables - a consumer that will call methods on List.Builder #variables(List) Copyright © 2021. All rights reserved.