/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The AWS Elastic Beanstalk quota information for a single resource type in an
* AWS account. It reflects the resource's limits for this account.See
* Also:
AWS
* API Reference
The maximum number of instances of this Elastic Beanstalk resource type that * an AWS account can use.
*/ inline int GetMaximum() const{ return m_maximum; } /** *The maximum number of instances of this Elastic Beanstalk resource type that * an AWS account can use.
*/ inline bool MaximumHasBeenSet() const { return m_maximumHasBeenSet; } /** *The maximum number of instances of this Elastic Beanstalk resource type that * an AWS account can use.
*/ inline void SetMaximum(int value) { m_maximumHasBeenSet = true; m_maximum = value; } /** *The maximum number of instances of this Elastic Beanstalk resource type that * an AWS account can use.
*/ inline ResourceQuota& WithMaximum(int value) { SetMaximum(value); return *this;} private: int m_maximum; bool m_maximumHasBeenSet = false; }; } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws