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-ec2/include/aws/ec2/model/InstanceCapacity.h

148 lines
4.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ec2/EC2_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>Information about the number of instances that can be launched onto the
* Dedicated Host.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceCapacity">AWS
* API Reference</a></p>
*/
class AWS_EC2_API InstanceCapacity
{
public:
InstanceCapacity();
InstanceCapacity(const Aws::Utils::Xml::XmlNode& xmlNode);
InstanceCapacity& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>The number of instances that can be launched onto the Dedicated Host based on
* the host's available capacity.</p>
*/
inline int GetAvailableCapacity() const{ return m_availableCapacity; }
/**
* <p>The number of instances that can be launched onto the Dedicated Host based on
* the host's available capacity.</p>
*/
inline bool AvailableCapacityHasBeenSet() const { return m_availableCapacityHasBeenSet; }
/**
* <p>The number of instances that can be launched onto the Dedicated Host based on
* the host's available capacity.</p>
*/
inline void SetAvailableCapacity(int value) { m_availableCapacityHasBeenSet = true; m_availableCapacity = value; }
/**
* <p>The number of instances that can be launched onto the Dedicated Host based on
* the host's available capacity.</p>
*/
inline InstanceCapacity& WithAvailableCapacity(int value) { SetAvailableCapacity(value); return *this;}
/**
* <p>The instance type supported by the Dedicated Host.</p>
*/
inline const Aws::String& GetInstanceType() const{ return m_instanceType; }
/**
* <p>The instance type supported by the Dedicated Host.</p>
*/
inline bool InstanceTypeHasBeenSet() const { return m_instanceTypeHasBeenSet; }
/**
* <p>The instance type supported by the Dedicated Host.</p>
*/
inline void SetInstanceType(const Aws::String& value) { m_instanceTypeHasBeenSet = true; m_instanceType = value; }
/**
* <p>The instance type supported by the Dedicated Host.</p>
*/
inline void SetInstanceType(Aws::String&& value) { m_instanceTypeHasBeenSet = true; m_instanceType = std::move(value); }
/**
* <p>The instance type supported by the Dedicated Host.</p>
*/
inline void SetInstanceType(const char* value) { m_instanceTypeHasBeenSet = true; m_instanceType.assign(value); }
/**
* <p>The instance type supported by the Dedicated Host.</p>
*/
inline InstanceCapacity& WithInstanceType(const Aws::String& value) { SetInstanceType(value); return *this;}
/**
* <p>The instance type supported by the Dedicated Host.</p>
*/
inline InstanceCapacity& WithInstanceType(Aws::String&& value) { SetInstanceType(std::move(value)); return *this;}
/**
* <p>The instance type supported by the Dedicated Host.</p>
*/
inline InstanceCapacity& WithInstanceType(const char* value) { SetInstanceType(value); return *this;}
/**
* <p>The total number of instances that can be launched onto the Dedicated Host if
* there are no instances running on it.</p>
*/
inline int GetTotalCapacity() const{ return m_totalCapacity; }
/**
* <p>The total number of instances that can be launched onto the Dedicated Host if
* there are no instances running on it.</p>
*/
inline bool TotalCapacityHasBeenSet() const { return m_totalCapacityHasBeenSet; }
/**
* <p>The total number of instances that can be launched onto the Dedicated Host if
* there are no instances running on it.</p>
*/
inline void SetTotalCapacity(int value) { m_totalCapacityHasBeenSet = true; m_totalCapacity = value; }
/**
* <p>The total number of instances that can be launched onto the Dedicated Host if
* there are no instances running on it.</p>
*/
inline InstanceCapacity& WithTotalCapacity(int value) { SetTotalCapacity(value); return *this;}
private:
int m_availableCapacity;
bool m_availableCapacityHasBeenSet;
Aws::String m_instanceType;
bool m_instanceTypeHasBeenSet;
int m_totalCapacity;
bool m_totalCapacityHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws