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

A specification for an Elastic Graphics accelerator.

See Also:

* AWS * API Reference

*/ class ElasticGpuSpecification { public: AWS_EC2_API ElasticGpuSpecification(); AWS_EC2_API ElasticGpuSpecification(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API ElasticGpuSpecification& 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 type of Elastic Graphics accelerator. For more information about the * values to specify for Type, see Elastic * Graphics Basics, specifically the Elastic Graphics accelerator column, in * the Amazon Elastic Compute Cloud User Guide for Windows Instances.

*/ inline const Aws::String& GetType() const{ return m_type; } /** *

The type of Elastic Graphics accelerator. For more information about the * values to specify for Type, see Elastic * Graphics Basics, specifically the Elastic Graphics accelerator column, in * the Amazon Elastic Compute Cloud User Guide for Windows Instances.

*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *

The type of Elastic Graphics accelerator. For more information about the * values to specify for Type, see Elastic * Graphics Basics, specifically the Elastic Graphics accelerator column, in * the Amazon Elastic Compute Cloud User Guide for Windows Instances.

*/ inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; } /** *

The type of Elastic Graphics accelerator. For more information about the * values to specify for Type, see Elastic * Graphics Basics, specifically the Elastic Graphics accelerator column, in * the Amazon Elastic Compute Cloud User Guide for Windows Instances.

*/ inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *

The type of Elastic Graphics accelerator. For more information about the * values to specify for Type, see Elastic * Graphics Basics, specifically the Elastic Graphics accelerator column, in * the Amazon Elastic Compute Cloud User Guide for Windows Instances.

*/ inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); } /** *

The type of Elastic Graphics accelerator. For more information about the * values to specify for Type, see Elastic * Graphics Basics, specifically the Elastic Graphics accelerator column, in * the Amazon Elastic Compute Cloud User Guide for Windows Instances.

*/ inline ElasticGpuSpecification& WithType(const Aws::String& value) { SetType(value); return *this;} /** *

The type of Elastic Graphics accelerator. For more information about the * values to specify for Type, see Elastic * Graphics Basics, specifically the Elastic Graphics accelerator column, in * the Amazon Elastic Compute Cloud User Guide for Windows Instances.

*/ inline ElasticGpuSpecification& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;} /** *

The type of Elastic Graphics accelerator. For more information about the * values to specify for Type, see Elastic * Graphics Basics, specifically the Elastic Graphics accelerator column, in * the Amazon Elastic Compute Cloud User Guide for Windows Instances.

*/ inline ElasticGpuSpecification& WithType(const char* value) { SetType(value); return *this;} private: Aws::String m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws