This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-autoscaling/include/aws/autoscaling/model/DescribeAccountLimitsResult.h

136 lines
4.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/autoscaling/AutoScaling_EXPORTS.h>
#include <aws/autoscaling/model/ResponseMetadata.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Xml
{
class XmlDocument;
} // namespace Xml
} // namespace Utils
namespace AutoScaling
{
namespace Model
{
class AWS_AUTOSCALING_API DescribeAccountLimitsResult
{
public:
DescribeAccountLimitsResult();
DescribeAccountLimitsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
DescribeAccountLimitsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
/**
* <p>The maximum number of groups allowed for your AWS account. The default is 200
* groups per AWS Region.</p>
*/
inline int GetMaxNumberOfAutoScalingGroups() const{ return m_maxNumberOfAutoScalingGroups; }
/**
* <p>The maximum number of groups allowed for your AWS account. The default is 200
* groups per AWS Region.</p>
*/
inline void SetMaxNumberOfAutoScalingGroups(int value) { m_maxNumberOfAutoScalingGroups = value; }
/**
* <p>The maximum number of groups allowed for your AWS account. The default is 200
* groups per AWS Region.</p>
*/
inline DescribeAccountLimitsResult& WithMaxNumberOfAutoScalingGroups(int value) { SetMaxNumberOfAutoScalingGroups(value); return *this;}
/**
* <p>The maximum number of launch configurations allowed for your AWS account. The
* default is 200 launch configurations per AWS Region.</p>
*/
inline int GetMaxNumberOfLaunchConfigurations() const{ return m_maxNumberOfLaunchConfigurations; }
/**
* <p>The maximum number of launch configurations allowed for your AWS account. The
* default is 200 launch configurations per AWS Region.</p>
*/
inline void SetMaxNumberOfLaunchConfigurations(int value) { m_maxNumberOfLaunchConfigurations = value; }
/**
* <p>The maximum number of launch configurations allowed for your AWS account. The
* default is 200 launch configurations per AWS Region.</p>
*/
inline DescribeAccountLimitsResult& WithMaxNumberOfLaunchConfigurations(int value) { SetMaxNumberOfLaunchConfigurations(value); return *this;}
/**
* <p>The current number of groups for your AWS account.</p>
*/
inline int GetNumberOfAutoScalingGroups() const{ return m_numberOfAutoScalingGroups; }
/**
* <p>The current number of groups for your AWS account.</p>
*/
inline void SetNumberOfAutoScalingGroups(int value) { m_numberOfAutoScalingGroups = value; }
/**
* <p>The current number of groups for your AWS account.</p>
*/
inline DescribeAccountLimitsResult& WithNumberOfAutoScalingGroups(int value) { SetNumberOfAutoScalingGroups(value); return *this;}
/**
* <p>The current number of launch configurations for your AWS account.</p>
*/
inline int GetNumberOfLaunchConfigurations() const{ return m_numberOfLaunchConfigurations; }
/**
* <p>The current number of launch configurations for your AWS account.</p>
*/
inline void SetNumberOfLaunchConfigurations(int value) { m_numberOfLaunchConfigurations = value; }
/**
* <p>The current number of launch configurations for your AWS account.</p>
*/
inline DescribeAccountLimitsResult& WithNumberOfLaunchConfigurations(int value) { SetNumberOfLaunchConfigurations(value); return *this;}
inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
inline DescribeAccountLimitsResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;}
inline DescribeAccountLimitsResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
private:
int m_maxNumberOfAutoScalingGroups;
int m_maxNumberOfLaunchConfigurations;
int m_numberOfAutoScalingGroups;
int m_numberOfLaunchConfigurations;
ResponseMetadata m_responseMetadata;
};
} // namespace Model
} // namespace AutoScaling
} // namespace Aws