/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a rendering engine.See Also:
AWS
* API Reference
The name of the rendering engine.
*/ inline const RenderingEngineType& GetName() const{ return m_name; } /** *The name of the rendering engine.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the rendering engine.
*/ inline void SetName(const RenderingEngineType& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the rendering engine.
*/ inline void SetName(RenderingEngineType&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the rendering engine.
*/ inline RenderingEngine& WithName(const RenderingEngineType& value) { SetName(value); return *this;} /** *The name of the rendering engine.
*/ inline RenderingEngine& WithName(RenderingEngineType&& value) { SetName(std::move(value)); return *this;} /** *The version of the rendering engine.
*/ inline const Aws::String& GetVersion() const{ return m_version; } /** *The version of the rendering engine.
*/ inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; } /** *The version of the rendering engine.
*/ inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; } /** *The version of the rendering engine.
*/ inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); } /** *The version of the rendering engine.
*/ inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); } /** *The version of the rendering engine.
*/ inline RenderingEngine& WithVersion(const Aws::String& value) { SetVersion(value); return *this;} /** *The version of the rendering engine.
*/ inline RenderingEngine& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;} /** *The version of the rendering engine.
*/ inline RenderingEngine& WithVersion(const char* value) { SetVersion(value); return *this;} private: RenderingEngineType m_name; bool m_nameHasBeenSet = false; Aws::String m_version; bool m_versionHasBeenSet = false; }; } // namespace Model } // namespace RoboMaker } // namespace Aws