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/DnsServersOptionsModifyStructure.h

143 lines
5.9 KiB
C
Raw Normal View History

/**
* 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>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>Information about the DNS server to be used.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DnsServersOptionsModifyStructure">AWS
* API Reference</a></p>
*/
class AWS_EC2_API DnsServersOptionsModifyStructure
{
public:
DnsServersOptionsModifyStructure();
DnsServersOptionsModifyStructure(const Aws::Utils::Xml::XmlNode& xmlNode);
DnsServersOptionsModifyStructure& 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 IPv4 address range, in CIDR notation, of the DNS servers to be used. You
* can specify up to two DNS servers. Ensure that the DNS servers can be reached by
* the clients. The specified values overwrite the existing values.</p>
*/
inline const Aws::Vector<Aws::String>& GetCustomDnsServers() const{ return m_customDnsServers; }
/**
* <p>The IPv4 address range, in CIDR notation, of the DNS servers to be used. You
* can specify up to two DNS servers. Ensure that the DNS servers can be reached by
* the clients. The specified values overwrite the existing values.</p>
*/
inline bool CustomDnsServersHasBeenSet() const { return m_customDnsServersHasBeenSet; }
/**
* <p>The IPv4 address range, in CIDR notation, of the DNS servers to be used. You
* can specify up to two DNS servers. Ensure that the DNS servers can be reached by
* the clients. The specified values overwrite the existing values.</p>
*/
inline void SetCustomDnsServers(const Aws::Vector<Aws::String>& value) { m_customDnsServersHasBeenSet = true; m_customDnsServers = value; }
/**
* <p>The IPv4 address range, in CIDR notation, of the DNS servers to be used. You
* can specify up to two DNS servers. Ensure that the DNS servers can be reached by
* the clients. The specified values overwrite the existing values.</p>
*/
inline void SetCustomDnsServers(Aws::Vector<Aws::String>&& value) { m_customDnsServersHasBeenSet = true; m_customDnsServers = std::move(value); }
/**
* <p>The IPv4 address range, in CIDR notation, of the DNS servers to be used. You
* can specify up to two DNS servers. Ensure that the DNS servers can be reached by
* the clients. The specified values overwrite the existing values.</p>
*/
inline DnsServersOptionsModifyStructure& WithCustomDnsServers(const Aws::Vector<Aws::String>& value) { SetCustomDnsServers(value); return *this;}
/**
* <p>The IPv4 address range, in CIDR notation, of the DNS servers to be used. You
* can specify up to two DNS servers. Ensure that the DNS servers can be reached by
* the clients. The specified values overwrite the existing values.</p>
*/
inline DnsServersOptionsModifyStructure& WithCustomDnsServers(Aws::Vector<Aws::String>&& value) { SetCustomDnsServers(std::move(value)); return *this;}
/**
* <p>The IPv4 address range, in CIDR notation, of the DNS servers to be used. You
* can specify up to two DNS servers. Ensure that the DNS servers can be reached by
* the clients. The specified values overwrite the existing values.</p>
*/
inline DnsServersOptionsModifyStructure& AddCustomDnsServers(const Aws::String& value) { m_customDnsServersHasBeenSet = true; m_customDnsServers.push_back(value); return *this; }
/**
* <p>The IPv4 address range, in CIDR notation, of the DNS servers to be used. You
* can specify up to two DNS servers. Ensure that the DNS servers can be reached by
* the clients. The specified values overwrite the existing values.</p>
*/
inline DnsServersOptionsModifyStructure& AddCustomDnsServers(Aws::String&& value) { m_customDnsServersHasBeenSet = true; m_customDnsServers.push_back(std::move(value)); return *this; }
/**
* <p>The IPv4 address range, in CIDR notation, of the DNS servers to be used. You
* can specify up to two DNS servers. Ensure that the DNS servers can be reached by
* the clients. The specified values overwrite the existing values.</p>
*/
inline DnsServersOptionsModifyStructure& AddCustomDnsServers(const char* value) { m_customDnsServersHasBeenSet = true; m_customDnsServers.push_back(value); return *this; }
/**
* <p>Indicates whether DNS servers should be used. Specify <code>False</code> to
* delete the existing DNS servers.</p>
*/
inline bool GetEnabled() const{ return m_enabled; }
/**
* <p>Indicates whether DNS servers should be used. Specify <code>False</code> to
* delete the existing DNS servers.</p>
*/
inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; }
/**
* <p>Indicates whether DNS servers should be used. Specify <code>False</code> to
* delete the existing DNS servers.</p>
*/
inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; }
/**
* <p>Indicates whether DNS servers should be used. Specify <code>False</code> to
* delete the existing DNS servers.</p>
*/
inline DnsServersOptionsModifyStructure& WithEnabled(bool value) { SetEnabled(value); return *this;}
private:
Aws::Vector<Aws::String> m_customDnsServers;
bool m_customDnsServersHasBeenSet;
bool m_enabled;
bool m_enabledHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws