/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a DHCP configuration option.See Also:
AWS
* API Reference
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::VectorThe values for the DHCP option.
*/ inline bool ValuesHasBeenSet() const { return m_valuesHasBeenSet; } /** *The values for the DHCP option.
*/ inline void SetValues(const Aws::VectorThe values for the DHCP option.
*/ inline void SetValues(Aws::VectorThe values for the DHCP option.
*/ inline DhcpConfiguration& WithValues(const Aws::VectorThe values for the DHCP option.
*/ inline DhcpConfiguration& WithValues(Aws::VectorThe 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