Interface TransformationConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TransformationConfiguration.Builder,TransformationConfiguration>,SdkBuilder<TransformationConfiguration.Builder,TransformationConfiguration>,SdkPojo
- Enclosing class:
- TransformationConfiguration
@Mutable @NotThreadSafe public static interface TransformationConfiguration.Builder extends SdkPojo, CopyableBuilder<TransformationConfiguration.Builder,TransformationConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description TransformationConfiguration.Buildermode(String mode)The mode of the transformation.TransformationConfiguration.Buildermode(QueryTransformationMode mode)The mode of the transformation.default TransformationConfiguration.BuildertextToSqlConfiguration(Consumer<TextToSqlConfiguration.Builder> textToSqlConfiguration)Specifies configurations for transforming text to SQL.TransformationConfiguration.BuildertextToSqlConfiguration(TextToSqlConfiguration textToSqlConfiguration)Specifies configurations for transforming text to SQL.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
mode
TransformationConfiguration.Builder mode(String mode)
The mode of the transformation.
- Parameters:
mode- The mode of the transformation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryTransformationMode,QueryTransformationMode
-
mode
TransformationConfiguration.Builder mode(QueryTransformationMode mode)
The mode of the transformation.
- Parameters:
mode- The mode of the transformation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryTransformationMode,QueryTransformationMode
-
textToSqlConfiguration
TransformationConfiguration.Builder textToSqlConfiguration(TextToSqlConfiguration textToSqlConfiguration)
Specifies configurations for transforming text to SQL.
- Parameters:
textToSqlConfiguration- Specifies configurations for transforming text to SQL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
textToSqlConfiguration
default TransformationConfiguration.Builder textToSqlConfiguration(Consumer<TextToSqlConfiguration.Builder> textToSqlConfiguration)
Specifies configurations for transforming text to SQL.
This is a convenience method that creates an instance of theTextToSqlConfiguration.Builderavoiding the need to create one manually viaTextToSqlConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totextToSqlConfiguration(TextToSqlConfiguration).- Parameters:
textToSqlConfiguration- a consumer that will call methods onTextToSqlConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
textToSqlConfiguration(TextToSqlConfiguration)
-
-