Interface Transform.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Transform.Builder,Transform>,SdkBuilder<Transform.Builder,Transform>,SdkPojo
- Enclosing class:
- Transform
public static interface Transform.Builder extends SdkPojo, CopyableBuilder<Transform.Builder,Transform>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Transform.Builderexpression(String expression)The mathematical expression that defines the transformation function.default Transform.BuilderprocessingConfig(Consumer<TransformProcessingConfig.Builder> processingConfig)The processing configuration for the given transform property.Transform.BuilderprocessingConfig(TransformProcessingConfig processingConfig)The processing configuration for the given transform property.Transform.Buildervariables(Collection<ExpressionVariable> variables)The list of variables used in the expression.Transform.Buildervariables(Consumer<ExpressionVariable.Builder>... variables)The list of variables used in the expression.Transform.Buildervariables(ExpressionVariable... variables)The list of variables used in the expression.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
expression
Transform.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 IoT SiteWise User Guide.
- Parameters:
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 IoT SiteWise User Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
variables
Transform.Builder variables(Collection<ExpressionVariable> variables)
The list of variables used in the expression.
- Parameters:
variables- The list of variables used in the expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
variables
Transform.Builder variables(ExpressionVariable... variables)
The list of variables used in the expression.
- Parameters:
variables- The list of variables used in the expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
variables
Transform.Builder variables(Consumer<ExpressionVariable.Builder>... variables)
The list of variables used in the expression.
This is a convenience method that creates an instance of theExpressionVariable.Builderavoiding the need to create one manually viaExpressionVariable.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#variables(List.) - Parameters:
variables- a consumer that will call methods onExpressionVariable.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#variables(java.util.Collection)
-
processingConfig
Transform.Builder processingConfig(TransformProcessingConfig processingConfig)
The processing configuration for the given transform property. You can configure transforms to be kept at the edge or forwarded to the Amazon Web Services Cloud. You can also configure transforms to be computed at the edge or in the cloud.
- Parameters:
processingConfig- The processing configuration for the given transform property. You can configure transforms to be kept at the edge or forwarded to the Amazon Web Services Cloud. You can also configure transforms to be computed at the edge or in the cloud.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
processingConfig
default Transform.Builder processingConfig(Consumer<TransformProcessingConfig.Builder> processingConfig)
The processing configuration for the given transform property. You can configure transforms to be kept at the edge or forwarded to the Amazon Web Services Cloud. You can also configure transforms to be computed at the edge or in the cloud.
This is a convenience method that creates an instance of theTransformProcessingConfig.Builderavoiding the need to create one manually viaTransformProcessingConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toprocessingConfig(TransformProcessingConfig).- Parameters:
processingConfig- a consumer that will call methods onTransformProcessingConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
processingConfig(TransformProcessingConfig)
-
-