File size: 2,077 Bytes
bfd87b5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/core/Core_EXPORTS.h>
#include <aws/core/AmazonWebServiceRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/UnreferencedParam.h>
#include <aws/core/http/HttpTypes.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
namespace Aws
{
static const char JSON_CONTENT_TYPE[] = "application/json";
static const char AMZN_JSON_CONTENT_TYPE_1_0[] = "application/x-amz-json-1.0";
static const char AMZN_JSON_CONTENT_TYPE_1_1[] = "application/x-amz-json-1.1";
static const char FORM_CONTENT_TYPE[] = "application/x-www-form-urlencoded";
static const char AMZN_XML_CONTENT_TYPE[] = "application/xml";
static const char AMZN_EVENTSTREAM_CONTENT_TYPE[] = "application/vnd.amazon.eventstream";
/**
* High-level abstraction over AWS requests. GetBody() calls SerializePayload() and uses a stringbuf under the hood.
* This is for payloads such as query, xml, or json
*/
class AWS_CORE_API AmazonSerializableWebServiceRequest : public AmazonWebServiceRequest
{
public:
AmazonSerializableWebServiceRequest()
{
//prevent unreferenced var warnings
//for these values.
AWS_UNREFERENCED_PARAM(JSON_CONTENT_TYPE);
AWS_UNREFERENCED_PARAM(AMZN_JSON_CONTENT_TYPE_1_0);
AWS_UNREFERENCED_PARAM(AMZN_JSON_CONTENT_TYPE_1_1);
AWS_UNREFERENCED_PARAM(FORM_CONTENT_TYPE);
AWS_UNREFERENCED_PARAM(AMZN_XML_CONTENT_TYPE);
}
virtual ~AmazonSerializableWebServiceRequest() {}
/**
* Convert payload into String.
*/
virtual Aws::String SerializePayload() const = 0;
/**
* Loads serialized payload into string buf and returns the stream
*/
std::shared_ptr<Aws::IOStream> GetBody() const override;
};
} // namespace Aws
|