/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes the Elastic Fabric Adapters for the instance type.

See * Also:

AWS API * Reference

*/ class EfaInfo { public: AWS_EC2_API EfaInfo(); AWS_EC2_API EfaInfo(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API EfaInfo& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The maximum number of Elastic Fabric Adapters for the instance type.

*/ inline int GetMaximumEfaInterfaces() const{ return m_maximumEfaInterfaces; } /** *

The maximum number of Elastic Fabric Adapters for the instance type.

*/ inline bool MaximumEfaInterfacesHasBeenSet() const { return m_maximumEfaInterfacesHasBeenSet; } /** *

The maximum number of Elastic Fabric Adapters for the instance type.

*/ inline void SetMaximumEfaInterfaces(int value) { m_maximumEfaInterfacesHasBeenSet = true; m_maximumEfaInterfaces = value; } /** *

The maximum number of Elastic Fabric Adapters for the instance type.

*/ inline EfaInfo& WithMaximumEfaInterfaces(int value) { SetMaximumEfaInterfaces(value); return *this;} private: int m_maximumEfaInterfaces; bool m_maximumEfaInterfacesHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws