/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes a DHCP configuration option.

See Also:

AWS * API Reference

*/ class DhcpConfiguration { public: AWS_EC2_API DhcpConfiguration(); AWS_EC2_API DhcpConfiguration(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API DhcpConfiguration& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The name of a DHCP option.

*/ inline const Aws::String& GetKey() const{ return m_key; } /** *

The name of a DHCP option.

*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *

The name of a DHCP option.

*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *

The name of a DHCP option.

*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *

The name of a DHCP option.

*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *

The name of a DHCP option.

*/ inline DhcpConfiguration& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *

The name of a DHCP option.

*/ inline DhcpConfiguration& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *

The name of a DHCP option.

*/ inline DhcpConfiguration& WithKey(const char* value) { SetKey(value); return *this;} /** *

The values for the DHCP option.

*/ inline const Aws::Vector& GetValues() const{ return m_values; } /** *

The values for the DHCP option.

*/ inline bool ValuesHasBeenSet() const { return m_valuesHasBeenSet; } /** *

The values for the DHCP option.

*/ inline void SetValues(const Aws::Vector& value) { m_valuesHasBeenSet = true; m_values = value; } /** *

The values for the DHCP option.

*/ inline void SetValues(Aws::Vector&& value) { m_valuesHasBeenSet = true; m_values = std::move(value); } /** *

The values for the DHCP option.

*/ inline DhcpConfiguration& WithValues(const Aws::Vector& value) { SetValues(value); return *this;} /** *

The values for the DHCP option.

*/ inline DhcpConfiguration& WithValues(Aws::Vector&& value) { SetValues(std::move(value)); return *this;} /** *

The values for the DHCP option.

*/ inline DhcpConfiguration& AddValues(const AttributeValue& value) { m_valuesHasBeenSet = true; m_values.push_back(value); return *this; } /** *

The values for the DHCP option.

*/ inline DhcpConfiguration& AddValues(AttributeValue&& value) { m_valuesHasBeenSet = true; m_values.push_back(std::move(value)); return *this; } private: Aws::String m_key; bool m_keyHasBeenSet = false; Aws::Vector m_values; bool m_valuesHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws