AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SlotMigration.h
1
6#pragma once
7#include <aws/elasticache/ElastiCache_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9
10namespace Aws
11{
12namespace Utils
13{
14namespace Xml
15{
16 class XmlNode;
17} // namespace Xml
18} // namespace Utils
19namespace ElastiCache
20{
21namespace Model
22{
23
31 {
32 public:
33 AWS_ELASTICACHE_API SlotMigration();
34 AWS_ELASTICACHE_API SlotMigration(const Aws::Utils::Xml::XmlNode& xmlNode);
35 AWS_ELASTICACHE_API SlotMigration& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
36
37 AWS_ELASTICACHE_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
38 AWS_ELASTICACHE_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
39
40
42
45 inline double GetProgressPercentage() const{ return m_progressPercentage; }
46 inline bool ProgressPercentageHasBeenSet() const { return m_progressPercentageHasBeenSet; }
47 inline void SetProgressPercentage(double value) { m_progressPercentageHasBeenSet = true; m_progressPercentage = value; }
48 inline SlotMigration& WithProgressPercentage(double value) { SetProgressPercentage(value); return *this;}
50 private:
51
52 double m_progressPercentage;
53 bool m_progressPercentageHasBeenSet = false;
54 };
55
56} // namespace Model
57} // namespace ElastiCache
58} // namespace Aws
AWS_ELASTICACHE_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_ELASTICACHE_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_ELASTICACHE_API SlotMigration(const Aws::Utils::Xml::XmlNode &xmlNode)
SlotMigration & WithProgressPercentage(double value)
AWS_ELASTICACHE_API SlotMigration & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_ostream< char, std::char_traits< char > > OStream