Interface StructuredJsonFactory
-
- All Known Implementing Classes:
BaseAwsStructuredJsonFactory
public interface StructuredJsonFactory
Common interface for creating generators (writers) and protocol handlers for JSON like protocols.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StructuredJsonGenerator
createWriter(String contentType)
Returns theStructuredJsonGenerator
to be used for marshalling the request.ErrorCodeParser
getErrorCodeParser(String customErrorCodeFieldName)
software.amazon.awssdk.thirdparty.jackson.core.JsonFactory
getJsonFactory()
-
-
-
Method Detail
-
createWriter
StructuredJsonGenerator createWriter(String contentType)
Returns theStructuredJsonGenerator
to be used for marshalling the request.- Parameters:
contentType
- Content type to send for requests.
-
getJsonFactory
software.amazon.awssdk.thirdparty.jackson.core.JsonFactory getJsonFactory()
-
getErrorCodeParser
ErrorCodeParser getErrorCodeParser(String customErrorCodeFieldName)
-
-