AWS SDK for C++

AWS SDK for C++ Version 1.11.695

Loading...
Searching...
No Matches
GetDbServerRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/odb/OdbRequest.h>
9#include <aws/odb/Odb_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace odb {
15namespace Model {
16
20 public:
21 AWS_ODB_API GetDbServerRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "GetDbServer"; }
28
29 AWS_ODB_API Aws::String SerializePayload() const override;
30
32
34
38 inline const Aws::String& GetCloudExadataInfrastructureId() const { return m_cloudExadataInfrastructureId; }
39 inline bool CloudExadataInfrastructureIdHasBeenSet() const { return m_cloudExadataInfrastructureIdHasBeenSet; }
40 template <typename CloudExadataInfrastructureIdT = Aws::String>
41 void SetCloudExadataInfrastructureId(CloudExadataInfrastructureIdT&& value) {
42 m_cloudExadataInfrastructureIdHasBeenSet = true;
43 m_cloudExadataInfrastructureId = std::forward<CloudExadataInfrastructureIdT>(value);
44 }
45 template <typename CloudExadataInfrastructureIdT = Aws::String>
46 GetDbServerRequest& WithCloudExadataInfrastructureId(CloudExadataInfrastructureIdT&& value) {
47 SetCloudExadataInfrastructureId(std::forward<CloudExadataInfrastructureIdT>(value));
48 return *this;
49 }
51
53
57 inline const Aws::String& GetDbServerId() const { return m_dbServerId; }
58 inline bool DbServerIdHasBeenSet() const { return m_dbServerIdHasBeenSet; }
59 template <typename DbServerIdT = Aws::String>
60 void SetDbServerId(DbServerIdT&& value) {
61 m_dbServerIdHasBeenSet = true;
62 m_dbServerId = std::forward<DbServerIdT>(value);
63 }
64 template <typename DbServerIdT = Aws::String>
65 GetDbServerRequest& WithDbServerId(DbServerIdT&& value) {
66 SetDbServerId(std::forward<DbServerIdT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_cloudExadataInfrastructureId;
72 bool m_cloudExadataInfrastructureIdHasBeenSet = false;
73
74 Aws::String m_dbServerId;
75 bool m_dbServerIdHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace odb
80} // namespace Aws
void SetCloudExadataInfrastructureId(CloudExadataInfrastructureIdT &&value)
void SetDbServerId(DbServerIdT &&value)
const Aws::String & GetCloudExadataInfrastructureId() const
const Aws::String & GetDbServerId() const
GetDbServerRequest & WithDbServerId(DbServerIdT &&value)
AWS_ODB_API Aws::String SerializePayload() const override
AWS_ODB_API GetDbServerRequest()=default
AWS_ODB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
virtual const char * GetServiceRequestName() const override
GetDbServerRequest & WithCloudExadataInfrastructureId(CloudExadataInfrastructureIdT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String