AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetOperationRequest.h
1
6#pragma once
7#include <aws/ssm-sap/SsmSap_EXPORTS.h>
8#include <aws/ssm-sap/SsmSapRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SsmSap
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_SSMSAP_API GetOperationRequest();
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 "GetOperation"; }
31
32 AWS_SSMSAP_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetOperationId() const{ return m_operationId; }
40 inline bool OperationIdHasBeenSet() const { return m_operationIdHasBeenSet; }
41 inline void SetOperationId(const Aws::String& value) { m_operationIdHasBeenSet = true; m_operationId = value; }
42 inline void SetOperationId(Aws::String&& value) { m_operationIdHasBeenSet = true; m_operationId = std::move(value); }
43 inline void SetOperationId(const char* value) { m_operationIdHasBeenSet = true; m_operationId.assign(value); }
44 inline GetOperationRequest& WithOperationId(const Aws::String& value) { SetOperationId(value); return *this;}
45 inline GetOperationRequest& WithOperationId(Aws::String&& value) { SetOperationId(std::move(value)); return *this;}
46 inline GetOperationRequest& WithOperationId(const char* value) { SetOperationId(value); return *this;}
48 private:
49
50 Aws::String m_operationId;
51 bool m_operationIdHasBeenSet = false;
52 };
53
54} // namespace Model
55} // namespace SsmSap
56} // namespace Aws
GetOperationRequest & WithOperationId(const Aws::String &value)
AWS_SSMSAP_API Aws::String SerializePayload() const override
GetOperationRequest & WithOperationId(Aws::String &&value)
void SetOperationId(const Aws::String &value)
const Aws::String & GetOperationId() const
virtual const char * GetServiceRequestName() const override
GetOperationRequest & WithOperationId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String