Class PreClientExecutionRequestCustomizer
- java.lang.Object
-
- software.amazon.awssdk.codegen.model.service.PreClientExecutionRequestCustomizer
-
public class PreClientExecutionRequestCustomizer extends Object
Represents a custom request transformer for API requests.This class allows for dynamic and specific transformation of API requests, ensuring that each request is appropriately transformed based on the transformation logic defined in the specified
getClassName()
andgetMethodName()
.Example:
{ "methodName": "dummyRequestModifier", "className": "software.amazon.awssdk.codegen.internal.UtilsTest" }
The class should have a public static method dummyRequestModifier that takes an input and returns an output of ApiRequest for which Customization is applied.
-
-
Constructor Summary
Constructors Constructor Description PreClientExecutionRequestCustomizer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClassName()
String
getMethodName()
void
setClassName(String className)
void
setMethodName(String methodName)
-