Class JsonContent
- java.lang.Object
- 
- software.amazon.awssdk.protocols.json.JsonContent
 
- 
 public class JsonContent extends Object Simple struct like class to hold both the raw json string content and it's parsed JsonNode
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JsonContentcreateJsonContent(SdkHttpFullResponse httpResponse, software.amazon.awssdk.thirdparty.jackson.core.JsonFactory jsonFactory)Static factory method to create a JsonContent object from the contents of the HttpResponse providedJsonNodegetJsonNode()byte[]getRawContent()
 
- 
- 
- 
Method Detail- 
createJsonContentpublic static JsonContent createJsonContent(SdkHttpFullResponse httpResponse, software.amazon.awssdk.thirdparty.jackson.core.JsonFactory jsonFactory) Static factory method to create a JsonContent object from the contents of the HttpResponse provided
 - 
getRawContentpublic byte[] getRawContent() 
 - 
getJsonNodepublic JsonNode getJsonNode() 
 
- 
 
-