Class S3ControlRemoveAccountIdHostPrefixProcessor
- java.lang.Object
-
- software.amazon.awssdk.codegen.customization.processors.S3ControlRemoveAccountIdHostPrefixProcessor
-
- All Implemented Interfaces:
CodegenCustomizationProcessor
public class S3ControlRemoveAccountIdHostPrefixProcessor extends Object implements CodegenCustomizationProcessor
With Endpoints 2.0, the endpoint rule set is responsible for adding the prefix, so we remove it from the model to avoid errors in constructing the endpoint.
-
-
Constructor Summary
Constructors Constructor Description S3ControlRemoveAccountIdHostPrefixProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidpostprocess(IntermediateModel intermediateModel)Apply the customization after the intermediate model is builtvoidpreprocess(ServiceModel serviceModel)Apply the customization by directly modifying the service model, before the intermediate model is built.
-
-
-
Method Detail
-
preprocess
public void preprocess(ServiceModel serviceModel)
Description copied from interface:CodegenCustomizationProcessorApply the customization by directly modifying the service model, before the intermediate model is built.- Specified by:
preprocessin interfaceCodegenCustomizationProcessor
-
postprocess
public void postprocess(IntermediateModel intermediateModel)
Description copied from interface:CodegenCustomizationProcessorApply the customization after the intermediate model is built- Specified by:
postprocessin interfaceCodegenCustomizationProcessor
-
-