/**
* 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 type of limit that you specified in the
* request and the current value for that limit.See Also:
AWS
* API Reference
The limit that you requested. Valid values include the following:
MAX_HEALTH_CHECKS_BY_OWNER: The maximum number of health checks * that you can create using the current account.
* MAX_HOSTED_ZONES_BY_OWNER: The maximum number of hosted zones that you * can create using the current account.
* MAX_REUSABLE_DELEGATION_SETS_BY_OWNER: The maximum number of reusable * delegation sets that you can create using the current account.
MAX_TRAFFIC_POLICIES_BY_OWNER: The maximum number of traffic policies * that you can create using the current account.
* MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER: The maximum number of traffic * policy instances that you can create using the current account. (Traffic policy * instances are referred to as traffic flow policy records in the Amazon Route 53 * console.)
The limit that you requested. Valid values include the following:
MAX_HEALTH_CHECKS_BY_OWNER: The maximum number of health checks * that you can create using the current account.
* MAX_HOSTED_ZONES_BY_OWNER: The maximum number of hosted zones that you * can create using the current account.
* MAX_REUSABLE_DELEGATION_SETS_BY_OWNER: The maximum number of reusable * delegation sets that you can create using the current account.
MAX_TRAFFIC_POLICIES_BY_OWNER: The maximum number of traffic policies * that you can create using the current account.
* MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER: The maximum number of traffic * policy instances that you can create using the current account. (Traffic policy * instances are referred to as traffic flow policy records in the Amazon Route 53 * console.)
The limit that you requested. Valid values include the following:
MAX_HEALTH_CHECKS_BY_OWNER: The maximum number of health checks * that you can create using the current account.
* MAX_HOSTED_ZONES_BY_OWNER: The maximum number of hosted zones that you * can create using the current account.
* MAX_REUSABLE_DELEGATION_SETS_BY_OWNER: The maximum number of reusable * delegation sets that you can create using the current account.
MAX_TRAFFIC_POLICIES_BY_OWNER: The maximum number of traffic policies * that you can create using the current account.
* MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER: The maximum number of traffic * policy instances that you can create using the current account. (Traffic policy * instances are referred to as traffic flow policy records in the Amazon Route 53 * console.)
The limit that you requested. Valid values include the following:
MAX_HEALTH_CHECKS_BY_OWNER: The maximum number of health checks * that you can create using the current account.
* MAX_HOSTED_ZONES_BY_OWNER: The maximum number of hosted zones that you * can create using the current account.
* MAX_REUSABLE_DELEGATION_SETS_BY_OWNER: The maximum number of reusable * delegation sets that you can create using the current account.
MAX_TRAFFIC_POLICIES_BY_OWNER: The maximum number of traffic policies * that you can create using the current account.
* MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER: The maximum number of traffic * policy instances that you can create using the current account. (Traffic policy * instances are referred to as traffic flow policy records in the Amazon Route 53 * console.)
The limit that you requested. Valid values include the following:
MAX_HEALTH_CHECKS_BY_OWNER: The maximum number of health checks * that you can create using the current account.
* MAX_HOSTED_ZONES_BY_OWNER: The maximum number of hosted zones that you * can create using the current account.
* MAX_REUSABLE_DELEGATION_SETS_BY_OWNER: The maximum number of reusable * delegation sets that you can create using the current account.
MAX_TRAFFIC_POLICIES_BY_OWNER: The maximum number of traffic policies * that you can create using the current account.
* MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER: The maximum number of traffic * policy instances that you can create using the current account. (Traffic policy * instances are referred to as traffic flow policy records in the Amazon Route 53 * console.)
The limit that you requested. Valid values include the following:
MAX_HEALTH_CHECKS_BY_OWNER: The maximum number of health checks * that you can create using the current account.
* MAX_HOSTED_ZONES_BY_OWNER: The maximum number of hosted zones that you * can create using the current account.
* MAX_REUSABLE_DELEGATION_SETS_BY_OWNER: The maximum number of reusable * delegation sets that you can create using the current account.
MAX_TRAFFIC_POLICIES_BY_OWNER: The maximum number of traffic policies * that you can create using the current account.
* MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER: The maximum number of traffic * policy instances that you can create using the current account. (Traffic policy * instances are referred to as traffic flow policy records in the Amazon Route 53 * console.)
The current value for the limit that is specified by Type.
*/ inline long long GetValue() const{ return m_value; } /** *The current value for the limit that is specified by Type.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The current value for the limit that is specified by Type.
*/ inline void SetValue(long long value) { m_valueHasBeenSet = true; m_value = value; } /** *The current value for the limit that is specified by Type.
*/ inline AccountLimit& WithValue(long long value) { SetValue(value); return *this;} private: AccountLimitType m_type; bool m_typeHasBeenSet = false; long long m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace Route53 } // namespace Aws