/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include DNS properties for the private DNS namespace.See Also:
AWS
* API Reference
DNS properties for the private DNS namespace.
*/ inline const PrivateDnsPropertiesMutable& GetDnsProperties() const{ return m_dnsProperties; } /** *DNS properties for the private DNS namespace.
*/ inline bool DnsPropertiesHasBeenSet() const { return m_dnsPropertiesHasBeenSet; } /** *DNS properties for the private DNS namespace.
*/ inline void SetDnsProperties(const PrivateDnsPropertiesMutable& value) { m_dnsPropertiesHasBeenSet = true; m_dnsProperties = value; } /** *DNS properties for the private DNS namespace.
*/ inline void SetDnsProperties(PrivateDnsPropertiesMutable&& value) { m_dnsPropertiesHasBeenSet = true; m_dnsProperties = std::move(value); } /** *DNS properties for the private DNS namespace.
*/ inline PrivateDnsNamespaceProperties& WithDnsProperties(const PrivateDnsPropertiesMutable& value) { SetDnsProperties(value); return *this;} /** *DNS properties for the private DNS namespace.
*/ inline PrivateDnsNamespaceProperties& WithDnsProperties(PrivateDnsPropertiesMutable&& value) { SetDnsProperties(std::move(value)); return *this;} private: PrivateDnsPropertiesMutable m_dnsProperties; bool m_dnsPropertiesHasBeenSet = false; }; } // namespace Model } // namespace ServiceDiscovery } // namespace Aws