This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ec2/include/aws/ec2/model/AttributeBooleanValue.h

74 lines
1.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ec2/EC2_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>Describes a value for a resource attribute that is a Boolean
* value.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttributeBooleanValue">AWS
* API Reference</a></p>
*/
class AWS_EC2_API AttributeBooleanValue
{
public:
AttributeBooleanValue();
AttributeBooleanValue(const Aws::Utils::Xml::XmlNode& xmlNode);
AttributeBooleanValue& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>The attribute value. The valid values are <code>true</code> or
* <code>false</code>.</p>
*/
inline bool GetValue() const{ return m_value; }
/**
* <p>The attribute value. The valid values are <code>true</code> or
* <code>false</code>.</p>
*/
inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
/**
* <p>The attribute value. The valid values are <code>true</code> or
* <code>false</code>.</p>
*/
inline void SetValue(bool value) { m_valueHasBeenSet = true; m_value = value; }
/**
* <p>The attribute value. The valid values are <code>true</code> or
* <code>false</code>.</p>
*/
inline AttributeBooleanValue& WithValue(bool value) { SetValue(value); return *this;}
private:
bool m_value;
bool m_valueHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws