AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetOperationDetailRequest.h
1
6#pragma once
7#include <aws/route53domains/Route53Domains_EXPORTS.h>
8#include <aws/route53domains/Route53DomainsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Route53Domains
15{
16namespace Model
17{
18
27 {
28 public:
29 AWS_ROUTE53DOMAINS_API GetOperationDetailRequest();
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "GetOperationDetail"; }
36
37 AWS_ROUTE53DOMAINS_API Aws::String SerializePayload() const override;
38
39 AWS_ROUTE53DOMAINS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
40
41
43
47 inline const Aws::String& GetOperationId() const{ return m_operationId; }
48 inline bool OperationIdHasBeenSet() const { return m_operationIdHasBeenSet; }
49 inline void SetOperationId(const Aws::String& value) { m_operationIdHasBeenSet = true; m_operationId = value; }
50 inline void SetOperationId(Aws::String&& value) { m_operationIdHasBeenSet = true; m_operationId = std::move(value); }
51 inline void SetOperationId(const char* value) { m_operationIdHasBeenSet = true; m_operationId.assign(value); }
52 inline GetOperationDetailRequest& WithOperationId(const Aws::String& value) { SetOperationId(value); return *this;}
53 inline GetOperationDetailRequest& WithOperationId(Aws::String&& value) { SetOperationId(std::move(value)); return *this;}
54 inline GetOperationDetailRequest& WithOperationId(const char* value) { SetOperationId(value); return *this;}
56 private:
57
58 Aws::String m_operationId;
59 bool m_operationIdHasBeenSet = false;
60 };
61
62} // namespace Model
63} // namespace Route53Domains
64} // namespace Aws
GetOperationDetailRequest & WithOperationId(const char *value)
AWS_ROUTE53DOMAINS_API Aws::String SerializePayload() const override
GetOperationDetailRequest & WithOperationId(const Aws::String &value)
AWS_ROUTE53DOMAINS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetOperationDetailRequest & WithOperationId(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String