Interface TextTransformation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TextTransformation.Builder,TextTransformation>,SdkBuilder<TextTransformation.Builder,TextTransformation>,SdkPojo
- Enclosing class:
- TextTransformation
public static interface TextTransformation.Builder extends SdkPojo, CopyableBuilder<TextTransformation.Builder,TextTransformation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TextTransformation.Builderpriority(Integer priority)Sets the relative processing order for multiple transformations.TextTransformation.Buildertype(String type)For detailed descriptions of each of the transformation types, see Text transformations in the WAF Developer Guide.TextTransformation.Buildertype(TextTransformationType type)For detailed descriptions of each of the transformation types, see Text transformations in the WAF Developer Guide.-
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
-
priority
TextTransformation.Builder priority(Integer priority)
Sets the relative processing order for multiple transformations. WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content. The priorities don't need to be consecutive, but they must all be different.
- Parameters:
priority- Sets the relative processing order for multiple transformations. WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content. The priorities don't need to be consecutive, but they must all be different.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
TextTransformation.Builder type(String type)
For detailed descriptions of each of the transformation types, see Text transformations in the WAF Developer Guide.
- Parameters:
type- For detailed descriptions of each of the transformation types, see Text transformations in the WAF Developer Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TextTransformationType,TextTransformationType
-
type
TextTransformation.Builder type(TextTransformationType type)
For detailed descriptions of each of the transformation types, see Text transformations in the WAF Developer Guide.
- Parameters:
type- For detailed descriptions of each of the transformation types, see Text transformations in the WAF Developer Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TextTransformationType,TextTransformationType
-
-