AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
UpdateDeploymentGroupResult.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace CodeDeploy
25{
26namespace Model
27{
35 {
36 public:
40
41
49 inline const Aws::Vector<AutoScalingGroup>& GetHooksNotCleanedUp() const{ return m_hooksNotCleanedUp; }
50
58 inline void SetHooksNotCleanedUp(const Aws::Vector<AutoScalingGroup>& value) { m_hooksNotCleanedUp = value; }
59
67 inline void SetHooksNotCleanedUp(Aws::Vector<AutoScalingGroup>&& value) { m_hooksNotCleanedUp = std::move(value); }
68
77
86
94 inline UpdateDeploymentGroupResult& AddHooksNotCleanedUp(const AutoScalingGroup& value) { m_hooksNotCleanedUp.push_back(value); return *this; }
95
103 inline UpdateDeploymentGroupResult& AddHooksNotCleanedUp(AutoScalingGroup&& value) { m_hooksNotCleanedUp.push_back(std::move(value)); return *this; }
104
105 private:
106
107 Aws::Vector<AutoScalingGroup> m_hooksNotCleanedUp;
108 };
109
110} // namespace Model
111} // namespace CodeDeploy
112} // namespace Aws
#define AWS_CODEDEPLOY_API
UpdateDeploymentGroupResult & WithHooksNotCleanedUp(const Aws::Vector< AutoScalingGroup > &value)
UpdateDeploymentGroupResult & AddHooksNotCleanedUp(AutoScalingGroup &&value)
const Aws::Vector< AutoScalingGroup > & GetHooksNotCleanedUp() const
AWS_CODEDEPLOY_API UpdateDeploymentGroupResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateDeploymentGroupResult & WithHooksNotCleanedUp(Aws::Vector< AutoScalingGroup > &&value)
void SetHooksNotCleanedUp(const Aws::Vector< AutoScalingGroup > &value)
UpdateDeploymentGroupResult & AddHooksNotCleanedUp(const AutoScalingGroup &value)
AWS_CODEDEPLOY_API UpdateDeploymentGroupResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetHooksNotCleanedUp(Aws::Vector< AutoScalingGroup > &&value)
std::vector< T, Aws::Allocator< T > > Vector