AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SpotMaintenanceStrategies.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/ec2/model/SpotCapacityRebalance.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace EC2
22{
23namespace Model
24{
25
33 {
34 public:
38
39 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
40 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
41
42
44
51 inline const SpotCapacityRebalance& GetCapacityRebalance() const{ return m_capacityRebalance; }
52 inline bool CapacityRebalanceHasBeenSet() const { return m_capacityRebalanceHasBeenSet; }
53 inline void SetCapacityRebalance(const SpotCapacityRebalance& value) { m_capacityRebalanceHasBeenSet = true; m_capacityRebalance = value; }
54 inline void SetCapacityRebalance(SpotCapacityRebalance&& value) { m_capacityRebalanceHasBeenSet = true; m_capacityRebalance = std::move(value); }
58 private:
59
60 SpotCapacityRebalance m_capacityRebalance;
61 bool m_capacityRebalanceHasBeenSet = false;
62 };
63
64} // namespace Model
65} // namespace EC2
66} // namespace Aws
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
void SetCapacityRebalance(SpotCapacityRebalance &&value)
SpotMaintenanceStrategies & WithCapacityRebalance(SpotCapacityRebalance &&value)
const SpotCapacityRebalance & GetCapacityRebalance() const
AWS_EC2_API SpotMaintenanceStrategies & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
SpotMaintenanceStrategies & WithCapacityRebalance(const SpotCapacityRebalance &value)
void SetCapacityRebalance(const SpotCapacityRebalance &value)
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_EC2_API SpotMaintenanceStrategies(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_ostream< char, std::char_traits< char > > OStream