AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
Monitoring.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/MonitoringState.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
32 {
33 public:
34 AWS_EC2_API Monitoring() = default;
35 AWS_EC2_API Monitoring(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_EC2_API Monitoring& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
41
43
47 inline MonitoringState GetState() const { return m_state; }
48 inline bool StateHasBeenSet() const { return m_stateHasBeenSet; }
49 inline void SetState(MonitoringState value) { m_stateHasBeenSet = true; m_state = value; }
50 inline Monitoring& WithState(MonitoringState value) { SetState(value); return *this;}
52 private:
53
55 bool m_stateHasBeenSet = false;
56 };
57
58} // namespace Model
59} // namespace EC2
60} // namespace Aws
AWS_EC2_API Monitoring(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_EC2_API Monitoring & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_EC2_API Monitoring()=default
Monitoring & WithState(MonitoringState value)
Definition Monitoring.h:50
MonitoringState GetState() const
Definition Monitoring.h:47
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
void SetState(MonitoringState value)
Definition Monitoring.h:49
std::basic_ostream< char, std::char_traits< char > > OStream