AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
CreateDeploymentConfigResult.h
Go to the documentation of this file.
1
6#pragma once
9#include <utility>
10
11namespace Aws
12{
13template<typename RESULT_TYPE>
14class AmazonWebServiceResult;
15
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace CodeDeploy
24{
25namespace Model
26{
34 {
35 public:
39
40
44 inline const Aws::String& GetDeploymentConfigId() const{ return m_deploymentConfigId; }
45
49 inline void SetDeploymentConfigId(const Aws::String& value) { m_deploymentConfigId = value; }
50
54 inline void SetDeploymentConfigId(Aws::String&& value) { m_deploymentConfigId = std::move(value); }
55
59 inline void SetDeploymentConfigId(const char* value) { m_deploymentConfigId.assign(value); }
60
65
69 inline CreateDeploymentConfigResult& WithDeploymentConfigId(Aws::String&& value) { SetDeploymentConfigId(std::move(value)); return *this;}
70
74 inline CreateDeploymentConfigResult& WithDeploymentConfigId(const char* value) { SetDeploymentConfigId(value); return *this;}
75
76 private:
77
78 Aws::String m_deploymentConfigId;
79 };
80
81} // namespace Model
82} // namespace CodeDeploy
83} // namespace Aws
#define AWS_CODEDEPLOY_API
CreateDeploymentConfigResult & WithDeploymentConfigId(Aws::String &&value)
AWS_CODEDEPLOY_API CreateDeploymentConfigResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_CODEDEPLOY_API CreateDeploymentConfigResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
CreateDeploymentConfigResult & WithDeploymentConfigId(const Aws::String &value)
CreateDeploymentConfigResult & WithDeploymentConfigId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String