AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DeleteDeploymentGroupResult.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
50 inline const Aws::Vector<AutoScalingGroup>& GetHooksNotCleanedUp() const{ return m_hooksNotCleanedUp; }
51
60 inline void SetHooksNotCleanedUp(const Aws::Vector<AutoScalingGroup>& value) { m_hooksNotCleanedUp = value; }
61
70 inline void SetHooksNotCleanedUp(Aws::Vector<AutoScalingGroup>&& value) { m_hooksNotCleanedUp = std::move(value); }
71
81
91
100 inline DeleteDeploymentGroupResult& AddHooksNotCleanedUp(const AutoScalingGroup& value) { m_hooksNotCleanedUp.push_back(value); return *this; }
101
110 inline DeleteDeploymentGroupResult& AddHooksNotCleanedUp(AutoScalingGroup&& value) { m_hooksNotCleanedUp.push_back(std::move(value)); return *this; }
111
112 private:
113
114 Aws::Vector<AutoScalingGroup> m_hooksNotCleanedUp;
115 };
116
117} // namespace Model
118} // namespace CodeDeploy
119} // namespace Aws
#define AWS_CODEDEPLOY_API
DeleteDeploymentGroupResult & WithHooksNotCleanedUp(const Aws::Vector< AutoScalingGroup > &value)
void SetHooksNotCleanedUp(Aws::Vector< AutoScalingGroup > &&value)
DeleteDeploymentGroupResult & WithHooksNotCleanedUp(Aws::Vector< AutoScalingGroup > &&value)
AWS_CODEDEPLOY_API DeleteDeploymentGroupResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetHooksNotCleanedUp(const Aws::Vector< AutoScalingGroup > &value)
DeleteDeploymentGroupResult & AddHooksNotCleanedUp(AutoScalingGroup &&value)
AWS_CODEDEPLOY_API DeleteDeploymentGroupResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DeleteDeploymentGroupResult & AddHooksNotCleanedUp(const AutoScalingGroup &value)
const Aws::Vector< AutoScalingGroup > & GetHooksNotCleanedUp() const
std::vector< T, Aws::Allocator< T > > Vector