/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A complex type that contains information about the request to create a hosted
* zone.See Also:
AWS
* API Reference
The limit that you want to get. Valid values include the following:
MAX_RRSETS_BY_ZONE: The maximum number of records that you can * create in the specified hosted zone.
* MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you * can associate with the specified private hosted zone.
The limit that you want to get. Valid values include the following:
MAX_RRSETS_BY_ZONE: The maximum number of records that you can * create in the specified hosted zone.
* MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you * can associate with the specified private hosted zone.
The limit that you want to get. Valid values include the following:
MAX_RRSETS_BY_ZONE: The maximum number of records that you can * create in the specified hosted zone.
* MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you * can associate with the specified private hosted zone.
The limit that you want to get. Valid values include the following:
MAX_RRSETS_BY_ZONE: The maximum number of records that you can * create in the specified hosted zone.
* MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you * can associate with the specified private hosted zone.
The limit that you want to get. Valid values include the following:
MAX_RRSETS_BY_ZONE: The maximum number of records that you can * create in the specified hosted zone.
* MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you * can associate with the specified private hosted zone.
The limit that you want to get. Valid values include the following:
MAX_RRSETS_BY_ZONE: The maximum number of records that you can * create in the specified hosted zone.
* MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you * can associate with the specified private hosted zone.
The ID of the hosted zone that you want to get a limit for.
*/ inline const Aws::String& GetHostedZoneId() const{ return m_hostedZoneId; } /** *The ID of the hosted zone that you want to get a limit for.
*/ inline bool HostedZoneIdHasBeenSet() const { return m_hostedZoneIdHasBeenSet; } /** *The ID of the hosted zone that you want to get a limit for.
*/ inline void SetHostedZoneId(const Aws::String& value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId = value; } /** *The ID of the hosted zone that you want to get a limit for.
*/ inline void SetHostedZoneId(Aws::String&& value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId = std::move(value); } /** *The ID of the hosted zone that you want to get a limit for.
*/ inline void SetHostedZoneId(const char* value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId.assign(value); } /** *The ID of the hosted zone that you want to get a limit for.
*/ inline GetHostedZoneLimitRequest& WithHostedZoneId(const Aws::String& value) { SetHostedZoneId(value); return *this;} /** *The ID of the hosted zone that you want to get a limit for.
*/ inline GetHostedZoneLimitRequest& WithHostedZoneId(Aws::String&& value) { SetHostedZoneId(std::move(value)); return *this;} /** *The ID of the hosted zone that you want to get a limit for.
*/ inline GetHostedZoneLimitRequest& WithHostedZoneId(const char* value) { SetHostedZoneId(value); return *this;} private: HostedZoneLimitType m_type; bool m_typeHasBeenSet = false; Aws::String m_hostedZoneId; bool m_hostedZoneIdHasBeenSet = false; }; } // namespace Model } // namespace Route53 } // namespace Aws