AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetHITRequest.h
1
6#pragma once
7#include <aws/mturk-requester/MTurk_EXPORTS.h>
8#include <aws/mturk-requester/MTurkRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace MTurk
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_MTURK_API GetHITRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetHIT"; }
31
32 AWS_MTURK_API Aws::String SerializePayload() const override;
33
35
36
38
41 inline const Aws::String& GetHITId() const { return m_hITId; }
42 inline bool HITIdHasBeenSet() const { return m_hITIdHasBeenSet; }
43 template<typename HITIdT = Aws::String>
44 void SetHITId(HITIdT&& value) { m_hITIdHasBeenSet = true; m_hITId = std::forward<HITIdT>(value); }
45 template<typename HITIdT = Aws::String>
46 GetHITRequest& WithHITId(HITIdT&& value) { SetHITId(std::forward<HITIdT>(value)); return *this;}
48 private:
49
50 Aws::String m_hITId;
51 bool m_hITIdHasBeenSet = false;
52 };
53
54} // namespace Model
55} // namespace MTurk
56} // namespace Aws
AWS_MTURK_API Aws::String SerializePayload() const override
AWS_MTURK_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
void SetHITId(HITIdT &&value)
virtual const char * GetServiceRequestName() const override
const Aws::String & GetHITId() const
AWS_MTURK_API GetHITRequest()=default
GetHITRequest & WithHITId(HITIdT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String