/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A complex type that contains the ID for the Route 53 hosted zone that AWS
* Cloud Map creates when you create a namespace.See Also:
AWS
* API Reference
The ID for the Route 53 hosted zone that AWS Cloud Map creates when you * create a namespace.
*/ inline const Aws::String& GetHostedZoneId() const{ return m_hostedZoneId; } /** *The ID for the Route 53 hosted zone that AWS Cloud Map creates when you * create a namespace.
*/ inline bool HostedZoneIdHasBeenSet() const { return m_hostedZoneIdHasBeenSet; } /** *The ID for the Route 53 hosted zone that AWS Cloud Map creates when you * create a namespace.
*/ inline void SetHostedZoneId(const Aws::String& value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId = value; } /** *The ID for the Route 53 hosted zone that AWS Cloud Map creates when you * create a namespace.
*/ inline void SetHostedZoneId(Aws::String&& value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId = std::move(value); } /** *The ID for the Route 53 hosted zone that AWS Cloud Map creates when you * create a namespace.
*/ inline void SetHostedZoneId(const char* value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId.assign(value); } /** *The ID for the Route 53 hosted zone that AWS Cloud Map creates when you * create a namespace.
*/ inline DnsProperties& WithHostedZoneId(const Aws::String& value) { SetHostedZoneId(value); return *this;} /** *The ID for the Route 53 hosted zone that AWS Cloud Map creates when you * create a namespace.
*/ inline DnsProperties& WithHostedZoneId(Aws::String&& value) { SetHostedZoneId(std::move(value)); return *this;} /** *The ID for the Route 53 hosted zone that AWS Cloud Map creates when you * create a namespace.
*/ inline DnsProperties& WithHostedZoneId(const char* value) { SetHostedZoneId(value); return *this;} private: Aws::String m_hostedZoneId; bool m_hostedZoneIdHasBeenSet; }; } // namespace Model } // namespace ServiceDiscovery } // namespace Aws