In many case I need the JSON response AS IS (without marshaling).
A simple way to achieve this is to add an access to webresponse in IAmazonWebServiceResponse of unit AWS.Runtime.Model
IAmazonWebServiceResponse = interface
...
function GetWebResponse: IWebResponseData;
property WebResponse: IWebResponseData read GetWebResponse;
end;
Then Implement it in TAmazonWebServiceResponse
function TAmazonWebServiceResponse.GetWebResponse: IWebResponseData;
begin
Result := FWebResponse;
end;
In many case I need the JSON response AS IS (without marshaling).
A simple way to achieve this is to add an access to webresponse in IAmazonWebServiceResponse of unit AWS.Runtime.Model
Then Implement it in TAmazonWebServiceResponse