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