AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ExportApiResult.h
1
6#pragma once
7#include <aws/apigatewayv2/ApiGatewayV2_EXPORTS.h>
8#include <aws/core/utils/stream/ResponseStream.h>
9#include <aws/core/utils/Array.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace ApiGatewayV2
19{
20namespace Model
21{
23 {
24 public:
25 AWS_APIGATEWAYV2_API ExportApiResult();
26 //We have to define these because Microsoft doesn't auto generate them
27 AWS_APIGATEWAYV2_API ExportApiResult(ExportApiResult&&);
28 AWS_APIGATEWAYV2_API ExportApiResult& operator=(ExportApiResult&&);
29 //we delete these because Microsoft doesn't handle move generation correctly
30 //and we therefore don't trust them to get it right here either.
33
34
37
38
39
41
42 inline Aws::IOStream& GetBody() const { return m_body.GetUnderlyingStream(); }
43 inline void ReplaceBody(Aws::IOStream* body) { m_body = Aws::Utils::Stream::ResponseStream(body); }
44
46
48
49 inline const Aws::String& GetRequestId() const{ return m_requestId; }
50 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
51 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
52 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
53 inline ExportApiResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
54 inline ExportApiResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
55 inline ExportApiResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
57 private:
58
60
61 Aws::String m_requestId;
62 };
63
64} // namespace Model
65} // namespace ApiGatewayV2
66} // namespace Aws
ExportApiResult & operator=(const ExportApiResult &)=delete
ExportApiResult & WithRequestId(const Aws::String &value)
AWS_APIGATEWAYV2_API ExportApiResult(Aws::AmazonWebServiceResult< Aws::Utils::Stream::ResponseStream > &&result)
ExportApiResult & WithRequestId(const char *value)
AWS_APIGATEWAYV2_API ExportApiResult & operator=(ExportApiResult &&)
AWS_APIGATEWAYV2_API ExportApiResult & operator=(Aws::AmazonWebServiceResult< Aws::Utils::Stream::ResponseStream > &&result)
ExportApiResult(const ExportApiResult &)=delete
ExportApiResult & WithRequestId(Aws::String &&value)
void SetRequestId(const Aws::String &value)
const Aws::String & GetRequestId() const
AWS_APIGATEWAYV2_API ExportApiResult(ExportApiResult &&)
Aws::IOStream & GetUnderlyingStream() const
std::basic_iostream< char, std::char_traits< char > > IOStream
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String