AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
InstanceRefreshProgressDetails.h
1
6#pragma once
7#include <aws/autoscaling/AutoScaling_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/autoscaling/model/InstanceRefreshLivePoolProgress.h>
10#include <aws/autoscaling/model/InstanceRefreshWarmPoolProgress.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Xml
18{
19 class XmlNode;
20} // namespace Xml
21} // namespace Utils
22namespace AutoScaling
23{
24namespace Model
25{
26
36 {
37 public:
38 AWS_AUTOSCALING_API InstanceRefreshProgressDetails();
39 AWS_AUTOSCALING_API InstanceRefreshProgressDetails(const Aws::Utils::Xml::XmlNode& xmlNode);
41
42 AWS_AUTOSCALING_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
43 AWS_AUTOSCALING_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
44
45
47
51 inline const InstanceRefreshLivePoolProgress& GetLivePoolProgress() const{ return m_livePoolProgress; }
52 inline bool LivePoolProgressHasBeenSet() const { return m_livePoolProgressHasBeenSet; }
53 inline void SetLivePoolProgress(const InstanceRefreshLivePoolProgress& value) { m_livePoolProgressHasBeenSet = true; m_livePoolProgress = value; }
54 inline void SetLivePoolProgress(InstanceRefreshLivePoolProgress&& value) { m_livePoolProgressHasBeenSet = true; m_livePoolProgress = std::move(value); }
58
60
63 inline const InstanceRefreshWarmPoolProgress& GetWarmPoolProgress() const{ return m_warmPoolProgress; }
64 inline bool WarmPoolProgressHasBeenSet() const { return m_warmPoolProgressHasBeenSet; }
65 inline void SetWarmPoolProgress(const InstanceRefreshWarmPoolProgress& value) { m_warmPoolProgressHasBeenSet = true; m_warmPoolProgress = value; }
66 inline void SetWarmPoolProgress(InstanceRefreshWarmPoolProgress&& value) { m_warmPoolProgressHasBeenSet = true; m_warmPoolProgress = std::move(value); }
70 private:
71
72 InstanceRefreshLivePoolProgress m_livePoolProgress;
73 bool m_livePoolProgressHasBeenSet = false;
74
75 InstanceRefreshWarmPoolProgress m_warmPoolProgress;
76 bool m_warmPoolProgressHasBeenSet = false;
77 };
78
79} // namespace Model
80} // namespace AutoScaling
81} // namespace Aws
const InstanceRefreshWarmPoolProgress & GetWarmPoolProgress() const
AWS_AUTOSCALING_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
InstanceRefreshProgressDetails & WithLivePoolProgress(const InstanceRefreshLivePoolProgress &value)
AWS_AUTOSCALING_API void OutputToStream(Aws::OStream &oStream, const char *location) const
const InstanceRefreshLivePoolProgress & GetLivePoolProgress() const
AWS_AUTOSCALING_API InstanceRefreshProgressDetails(const Aws::Utils::Xml::XmlNode &xmlNode)
InstanceRefreshProgressDetails & WithWarmPoolProgress(const InstanceRefreshWarmPoolProgress &value)
void SetWarmPoolProgress(InstanceRefreshWarmPoolProgress &&value)
void SetLivePoolProgress(InstanceRefreshLivePoolProgress &&value)
InstanceRefreshProgressDetails & WithLivePoolProgress(InstanceRefreshLivePoolProgress &&value)
void SetWarmPoolProgress(const InstanceRefreshWarmPoolProgress &value)
InstanceRefreshProgressDetails & WithWarmPoolProgress(InstanceRefreshWarmPoolProgress &&value)
AWS_AUTOSCALING_API InstanceRefreshProgressDetails & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetLivePoolProgress(const InstanceRefreshLivePoolProgress &value)
std::basic_ostream< char, std::char_traits< char > > OStream