AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ManagedExecution.h
1
6#pragma once
7#include <aws/cloudformation/CloudFormation_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 CloudFormation
20{
21namespace Model
22{
23
31 {
32 public:
33 AWS_CLOUDFORMATION_API ManagedExecution();
34 AWS_CLOUDFORMATION_API ManagedExecution(const Aws::Utils::Xml::XmlNode& xmlNode);
35 AWS_CLOUDFORMATION_API ManagedExecution& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
36
37 AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
38 AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
39
40
42
52 inline bool GetActive() const{ return m_active; }
53 inline bool ActiveHasBeenSet() const { return m_activeHasBeenSet; }
54 inline void SetActive(bool value) { m_activeHasBeenSet = true; m_active = value; }
55 inline ManagedExecution& WithActive(bool value) { SetActive(value); return *this;}
57 private:
58
59 bool m_active;
60 bool m_activeHasBeenSet = false;
61 };
62
63} // namespace Model
64} // namespace CloudFormation
65} // namespace Aws
AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
ManagedExecution & WithActive(bool value)
AWS_CLOUDFORMATION_API ManagedExecution(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_CLOUDFORMATION_API ManagedExecution & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_ostream< char, std::char_traits< char > > OStream